Geoff

Results 38 comments of Geoff

I found a similar issue in the Ilich CF module, but the opposite way around. I suspect they may use similar parsing logic under the hood so it might be...

Hi @AdrianStaskiewicz , My guess is you're not converting to an proper LatLong in the mouse event. Without seeing code I can't be sure. It needs to be done like...

Sorry, I'd forgotten about the addMouseEventHandler method. In that case I suspect there is a problem with the delegates converting the original javascript event over to the java event. Try...

I have experienced this in the past, but I just tried to recreate it by rapidly zooming and panning and couldn't. This was on both the supplied demo app and...

This looks like a JavaFX problem. Similar things have shown up http://stackoverflow.com/questions/23467797/javafx-nullpointerexception-when-rendering-big-image for example, and the suggestion is setting the VM arguments as in the original post. A bit of...

Thanks @johnmc5810 I've just committed a change to MapOptions to add this in. Looking at the docs there are still a few parameters in MapOptions that we haven't included yet.

Are you able to get com.dlsc.gmapsfx.MainApp to run? It's been a while since I looked in here but the usual cause of issues like that was not waiting until the...

@PSchmitzMo Are you using the core html file or one in your own jar? In a sample app I created to test images I'm able to load different images using...

map.addUIEventHandler(myMarker, UIEventType.click, (JSObject obj) -> { myInfoWindow.open(myMap); }); Should do what you want. Not sure what happens if it's already open when you click on the marker.

Hi Chris, I've just grabbed a clean copy and put some System.outs into the idle event, and a listener on the bounds property with similar outputs within MainApp.java, and it...