|
Java API for KMLDirect DownloadJAK at Google CodeThe emphasis of Java API for KML is on KML and, therefore, virtual globes - especially Google Earth. The Java API for KML is hosted at Google Code because it is advertised as a site for developers interested in Google-related open source development. Java API for KML can be found at http://code.google.com/p/javaapiforkml/ Figure 1: JAK at Google Code.JAK at maven2-repository.dev.java.netAlternatively in the official dev.java.net Maven 2 repository: Listing 1: JAK at maven2-repository.dev.java.net <dependencies> ... <!-- The Java API for KML --> <dependency> <groupId>de.micromata.jak</groupId> <artifactId>JavaAPIforKml</artifactId> <version>2.2.0-SNAPSHOT</version> </dependency> <!-- The XJC Plugin (optional) --> <!-- It is able to create the API (only needed if OGC's KML schema changes) --> <dependency> <groupId>de.micromata.jak</groupId> <artifactId>XJCPluginJavaApiforKml</artifactId> <version>1.0-SNAPSHOT</version> </dependency> ... </dependencies> <repositories> ... <repository> <id>maven2-repository.dev.java.net</id> <name>Java.net Maven 2 Repository</name> <url>http://download.java.net/maven/2</url> <layout>default</layout> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> |
Navigate space
Java API for KML | @Google |










is the OpenSource platform of 
Comments (3)
Dec 25, 2009
Anonymous says:
Where is the Javadoc ?Where is the Javadoc ?
Mar 11
Anonymous says:
funny enough, you can create it by yourself!funny enough, you can create it by yourself!
Mar 11
Anonymous says:
Thanks a lot for this very nice piece of work, I was actually wondering how to s...Thanks a lot for this very nice piece of work, I was actually wondering how to solve the kml parsing, so this is simply great!