> marker.setLatLng(someValue,someValue); > > fall out with errors in main.js , can anyone advice, how to move > marker other way ?
Why not use the way provided, just use it properly? http://code.google.com/apis/maps/documentation/reference.html#GMarker setLatLng() expects a GLatLng object, not two strings or numbers somemarker.setLatLng(new GLatLng(48.19983, 4.142315)); You probably want to take care to see that GLatLng gets two numbers, not strings. cheers, Ross K --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" 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-API?hl=en -~----------~----~----~----~------~----~------~--~---
