The code
$.each(myObject, function(){
var options = {
position: new google.maps.LatLng
(this.latitude, this.longitude),
draggable: true,
bouncy: false,
title: this.title,
map: map
};
var marker = new google.maps.Marker(options);
});
works without any problem in firefox 3.5
Be careful with the equal sign in "title = this.title", it should be
"title: this.title".
--
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.