BeneBarros Active Member Licensed User Longtime User May 5, 2017 #1 I have an application that was working perfect with the jGooglesMaps version 1.28 library. I downloaded version 1.61, now I'm having errors in LatLng.Position is write only. Help. Attachments Version 1.28.jpg 39.9 KB · Views: 265 Version 1.61.jpg 30.9 KB · Views: 260
I have an application that was working perfect with the jGooglesMaps version 1.28 library. I downloaded version 1.61, now I'm having errors in LatLng.Position is write only. Help.
EnriqueGonzalez Well-Known Member Licensed User Longtime User May 5, 2017 #2 Look at this post: https://www.b4x.com/android/forum/threads/googlemaps-marker-without-remove-function.78777/ You may use gmap.addmarker to set the latlong position Upvote 0
Look at this post: https://www.b4x.com/android/forum/threads/googlemaps-marker-without-remove-function.78777/ You may use gmap.addmarker to set the latlong position
BeneBarros Active Member Licensed User Longtime User May 5, 2017 #3 Enrique Gonzalez R said: Look at this post: https://www.b4x.com/android/forum/threads/googlemaps-marker-without-remove-function.78777/ You may use gmap.addmarker to set the latlong position Click to expand... It's more complicated ... I'll create a list that stores the positions of all the marks added. Thank you. Upvote 0
Enrique Gonzalez R said: Look at this post: https://www.b4x.com/android/forum/threads/googlemaps-marker-without-remove-function.78777/ You may use gmap.addmarker to set the latlong position Click to expand... It's more complicated ... I'll create a list that stores the positions of all the marks added. Thank you.
DonManfred Expert Licensed User Longtime User May 6, 2017 #4 BeneBarros said: It's more complicated ... I'll create a list that stores the positions of all the marks added. Click to expand... It is not complicated. You just need to use a List (or Map) to hold all Markers you added. Upvote 0
BeneBarros said: It's more complicated ... I'll create a list that stores the positions of all the marks added. Click to expand... It is not complicated. You just need to use a List (or Map) to hold all Markers you added.
BeneBarros Active Member Licensed User Longtime User May 6, 2017 #5 DonManfred said: It is not complicated. You just need to use a List (or Map) to hold all Markers you added. Click to expand... OK. I already did this and it worked well ... Great. Thank you for your help. Upvote 0
DonManfred said: It is not complicated. You just need to use a List (or Map) to hold all Markers you added. Click to expand... OK. I already did this and it worked well ... Great. Thank you for your help.