You can download GMapsFX-1.1.1.jar in this page.
The Apache Software License, Version 2.0
GMapsFX-1.1.1.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.lynden/GMapsFX/pom.properties META-INF/maven/com.lynden/GMapsFX/pom.xml com.lynden.gmapsfx.ArrayTester.class com.lynden.gmapsfx.GoogleMapView.class com.lynden.gmapsfx.MainApp.class com.lynden.gmapsfx.MapComponentInitializedListener.class com.lynden.gmapsfx.MapNotInitializedException.class com.lynden.gmapsfx.MapReadyListener.class com.lynden.gmapsfx.elevation.ElevationResult.class com.lynden.gmapsfx.elevation.ElevationService.class com.lynden.gmapsfx.elevation.ElevationServiceCallback.class com.lynden.gmapsfx.elevation.ElevationStatus.class com.lynden.gmapsfx.elevation.LocationElevationRequest.class com.lynden.gmapsfx.elevation.PathElevationRequest.class com.lynden.gmapsfx.javascript.IJavascriptRuntime.class com.lynden.gmapsfx.javascript.IWebEngine.class com.lynden.gmapsfx.javascript.JavaFxWebEngine.class com.lynden.gmapsfx.javascript.JavascriptArray.class com.lynden.gmapsfx.javascript.JavascriptEnum.class com.lynden.gmapsfx.javascript.JavascriptObject.class com.lynden.gmapsfx.javascript.JavascriptRuntime.class com.lynden.gmapsfx.javascript.NullJavascriptRuntime.class com.lynden.gmapsfx.javascript.event.EventHandlers.class com.lynden.gmapsfx.javascript.event.GFXEventHandler.class com.lynden.gmapsfx.javascript.event.MapStateEventType.class com.lynden.gmapsfx.javascript.event.StateEventHandler.class com.lynden.gmapsfx.javascript.event.UIEventHandler.class com.lynden.gmapsfx.javascript.event.UIEventType.class com.lynden.gmapsfx.javascript.object.Animation.class com.lynden.gmapsfx.javascript.object.GMapObjectType.class com.lynden.gmapsfx.javascript.object.GMapPoint.class com.lynden.gmapsfx.javascript.object.GoogleMap.class com.lynden.gmapsfx.javascript.object.InfoWindow.class com.lynden.gmapsfx.javascript.object.InfoWindowOptions.class com.lynden.gmapsfx.javascript.object.LatLong.class com.lynden.gmapsfx.javascript.object.LatLongBounds.class com.lynden.gmapsfx.javascript.object.MVCArray.class com.lynden.gmapsfx.javascript.object.MapOptions.class com.lynden.gmapsfx.javascript.object.MapShape.class com.lynden.gmapsfx.javascript.object.MapTypeIdEnum.class com.lynden.gmapsfx.javascript.object.Marker.class com.lynden.gmapsfx.javascript.object.MarkerOptions.class com.lynden.gmapsfx.javascript.object.Polyline.class com.lynden.gmapsfx.javascript.object.PolylineOptions.class com.lynden.gmapsfx.javascript.object.Projection.class com.lynden.gmapsfx.javascript.object.Size.class com.lynden.gmapsfx.shapes.ArcBuilder.class com.lynden.gmapsfx.shapes.Circle.class com.lynden.gmapsfx.shapes.CircleOptions.class com.lynden.gmapsfx.shapes.FillableMapShapeOptions.class com.lynden.gmapsfx.shapes.MapShapeOptions.class com.lynden.gmapsfx.shapes.Polygon.class com.lynden.gmapsfx.shapes.PolygonOptions.class com.lynden.gmapsfx.shapes.Polyline.class com.lynden.gmapsfx.shapes.PolylineOptions.class com.lynden.gmapsfx.shapes.Rectangle.class com.lynden.gmapsfx.shapes.RectangleOptions.class com.lynden.gmapsfx.shapes.StrokePosition.class com.lynden.gmapsfx.zoom.MaxZoomResult.class com.lynden.gmapsfx.zoom.MaxZoomService.class com.lynden.gmapsfx.zoom.MaxZoomServiceCallback.class com.lynden.gmapsfx.zoom.MaxZoomStatus.class html/arrays.html html/maps-debug.html html/maps.html html/v3_epoly.js
GMapsFX-1.1.1.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.lynden</groupId> <artifactId>GMapsFX</artifactId> <name>${project.artifactId}</name> <description>A Java API for using Google Maps within a JavaFX application.</description> <url>http://rterp.github.io/GMapsFX/</url> <version>1.1.1</version> <packaging>jar</packaging> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Rob Terpilowski</name> <email>robt@lynden.com</email> <organization>Lynden, Inc.</organization> <organizationUrl>http://www.lynden.com</organizationUrl> </developer> <developer> <name>Geoff Capper</name> </developer> </developers> <scm> <connection>scm:git:git@github.com:rterp/GMapsFX.git</connection> <developerConnection>scm:git:git@github.com:rterp/GMapsFX.git</developerConnection> <url>git@github.com:rterp/GMapsFX.git</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <mainClass>com.lynden.gmapsfx.MainApp</mainClass> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8.1</version> <configuration> <use>false</use> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.6</version> <executions> <execution> <id>unpack-dependencies</id> <phase>package</phase> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <excludeScope>system</excludeScope> <excludeGroupIds>junit,org.mockito,org.hamcrest</excludeGroupIds> <outputDirectory>${project.build.directory}/classes</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>com.lynden.gmapsfx.MainApp</mainClass> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.16</version> <configuration> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> </dependencies> </project>
<dependency> <groupId>com.lynden</groupId> <artifactId>GMapsFX</artifactId> <version>1.1.1</version> </dependency>
If you think the following GMapsFX-1.1.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download GMapsFX-1.1.1.jar file