On 30 December 2011 11:49, Adam <[email protected]> wrote: > > I'm getting the below error and can't seem to figure it out, is it the > format that position is in is incorrect!?
The documentation says position LatLng Marker position. Required. So it needs to be a LatLng, not a couple of numbers. http://code.google.com/apis/maps/documentation/javascript/reference.html#LatLng var marker = new google.maps.Marker({ position: new google.maps.LatLng(53.558584,-7.987061), map: map }); -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
