On Feb 16, 9:27 am, Rick Donohoe <[email protected]> wrote: > Yes it is, to be exact: > > function addMarker(location) { > marker = new google.maps.Marker({ > position: location, > map: map > }); > markersArray.push(marker); > } > > I remember seeing the coding I could do with somewhere, im just unsure of > how to do actually convert the string to pairs of which I could pass back > through the addMarker(-LatLng Pair-) method. > > I asssume its take String. > Create a temporary String up to the "," point.
Be sure to convert the resulting latitude and longitude into numbers (parseFloat will work). -- Larry > Pass this through addMarker(temporary String). > Repeat until ive reached the last "," point. > > Does this sound/look right, and if so any tips or reference to manipulating > the String like this? > > Did you have any opinions on the map occasionaly not loading part Larry? > > Thanks for your time so far, > Rick -- 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.
