GMapsFX icon indicating copy to clipboard operation
GMapsFX copied to clipboard

Java API for using Google Maps within a JavaFX application.

Results 66 GMapsFX issues
Sort by recently updated
recently updated
newest added

The code is rather easy: in the UI code I create an empty container for the map (`mapCard`) and I use the controller to create the map and add Data...

No maps are rendered when using JavaFX 18.0.1 with its upgraded WebKit version.

Its working fine. Then if i have to restart the application and after doing this a few times it stops showing anything but a blank page. Of course without any...

Hi, I've been trying to follow the LatLong Example but I keep hitting the following issue > java.lang.NullPointerException: Cannot invoke "com.dlsc.gmapsfx.javascript.IWebEngine.executeScript(String)" because "com.dlsc.gmapsfx.javascript.JavascriptRuntime.engine" is null Could I get some guidance...

I want to open a InfoWindow when clicking on a polyline: ` map.addUIEventHandler(polygon, UIEventType.click, (JSObject obj) -> { System.out.println("Polygon click"); InfoWindowOptions infoWindowOptions = new InfoWindowOptions(); infoWindowOptions.position(new LatLong( 31.33255233509554 , 121.6711721454525...

I have a 4K monitor and as soon as I set the zoom level in windows above 100% the polyline will make strange jumps and the line is not connected...

I get this error and I only see a blank page. Also it gives me a: INFO com.lynden.gmapsfx.GoogleMapView - Alert: Hide directions called I'm using JAVAFX11 Library on Eclipse, I've...

I am running into a very strange issue where saved markers are appearing as they should, but when I add a new marker into the marker list, the new marker...

I have been struggling with this for days now. I successfully upgraded to Java 10 using GMapsFX 2.12.0. When I upgrade to Java 11, the application immediately exits. I have...

if i initialize your GoogleMapPane (registering listeners etc) before i do any other work, everything works perfect. in detail: if (Platform.isFxApplicationThread()) { initWebView.run(); } is blocking the javaFX thread and...