google maps move marker with lat/lng from ajax success returned data

The google.maps.LatLng constructor takes two numbers for arguments. This won’t work:

var newLatLang = new google.maps.LatLng(newCoords);

You need to convert newCoords into two numbers.

Convert String to latlng google maps

Convert “[52.43242, 4.43242]” to google LatLng

How do I get a pin on Google Maps using location from a variable?

Leave a Comment