Thank you very much. I hadn't even thought of culture being an issue with the decimals. I guess if it were a date or currancy it would have been more obvious. Thanks again.
On Jan 31, 2010 7:56 PM, "Ben Appleton" <[email protected]> wrote: On form submit your page loads an inline script like: function addMarkers_ctl00_ContentPlaceHolder1_ecpMap(map) { var latlng = new google.maps.LatLng(34,0998, -118,4128); map.center = latlng; map.zoom = 10; addEcpMarker(...); addEcpMarker(...); ... The bug is that your server has localized the arguments to LatLng, inserting commas rather than periods: 34,0998, -118,4128. On Sun, Jan 31, 2010 at 2:32 AM, Matt Boothby <[email protected]> wrote: > > > > http://ecplocator.transitions.com > >> > >> On Jan 29, 2010 11:12 PM, "Ben Appleton" <apple...@googl... > -- > > > You received this message because you are subscribed to the Google Groups > "Google Maps JavaScript ... > -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScr... -- 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.
