5
I have a map where there are already loads of Markers. In this map I need to fetch all markers, and show a list with markers visible to the user, to make a small list of data similar to this example.
How can I upload all markers created on the map to a javascript variable?
Ps.- I am working on outsystems, and do not give me the possibility to install third party Apis beyond Google Maps.
I’m not a google-maps expert @Cesarmiguel, but I’ve used Places API maps for detailed information on a particular location.
– BrTkCa
@Lucascosta I am working on outsystems, do not give me the possibility to use other API’s besides google maps. Thanks anyway
– CesarMiguel
The Places API is from Google and used together with Google Maps, use the same database..
– BrTkCa
Put your code that mounts the Map there.
– Diego Souza
What listing do pins appear on the map? Have you been able to insert markers on the map?
– Miguel
@Gumball the map is created by an outsystems component, where I send only the addresses and the component creates the respective markers
– CesarMiguel
@Miguel the pins are the markers. Yes, the map already has the pins, I just really want to get them in javascript
– CesarMiguel
Ha ok, I understand but how are you inserting them? No longer have the location since the beginning? Or they come from the client side dynamically?
– Miguel
@Miguel, it’s like I told Gumball. I’m inserting markers from an Outysystems component, where I just send the address and do it all myself. Basically now I want to search all markers already created in a javascript map. It’s like a map with markers coming from the client side
– CesarMiguel
Okay, so if I understand correctly, you need to put an ajax in there to send all the markers to the server and put them in a file or a database... If you only want each other’s coordinates, one
– Miguel