Please guys help!
I created a table named “guidePages” that contains bussiness pages. And they have a property called location, that has inside map points.
I were collecting the locations from google maps, copying the coordinates from @ to comma, but the location were shown in the middle of the sea, keeping sort of a distance proportion one from each other.
Then I incstintively switched the order of the coordinates, and now they are near to the real places, but not exactly, they have sort of an offset… what is happening?
Is there any way to get more accuracy in the location coordinates beyond copying them from the google maps url?
And another question about it… is there a way to put titles on the markers?
Thank you very much!
Hello, @Sebastian_Cuello.
We use the WKT system. First, the longitude is displayed, then the latitude (in Google maps, the opposite is true).
If you copy the coordinates from the URL of the address, they will not be accurate. Right-click on a point (on Google map) and click on the coordinates. Then they will be copied in their entirety.
From url:
From interface:
After copying from url I got this:
50.4505319, 30.5250247
After copying with last screenshot I got this:
50.45053193172637, 30.52502473383686
I did not quite understand where exactly you want to add the title for the point. Explain in more detail.
Regards, Nikita.
Oh… that’s awesome! You are so right!
Thank you.
I want to put titles over the points in the map. Let’s say I would want to entitle the locations. I see that the map shows an empty block when I click on them. If the locations are highlighted by google they have titles, but those that come from backendless don’t… Is it possible to add titles to them?
Thank you again
What map are you talking about?
The map component in my backendless app, of course.
We are investigating this question
Hello @Sebastian_Cuello,
you can provide a title to the info window as follows:
(Provide a title
property along with lat
and lng
).
Regards,
Stanislaw