Hello, i`ve made map with markers, coordinates and description are
getting from georss feed. Default marker color is blue - how can i
change this color to any other?
Here is my georss output, and index page.
index page - map initialize
function initialize() {
var latlng = new google.maps.LatLng(56.365754,41.314917);
var myOptions = {
zoom: 0,
center: latlng,
mapTypeId: google.maps.MapTypeId.SATELLITE
};
var map = new
google.maps.Map(document.getElementById("map_canvas"),
myOptions);
var georssLayer = new google.maps.KmlLayer('generator.php?
2011-03-23T20:22:09+03:00');
georssLayer.setMap(map);
}
georss entry output
<entry>
<updated>'.date3339().'</updated>
<content type="html">some text</content>
<georss:point>56.351735 41.312466</georss:point>
<geo:lat>56.351735</geo:lat>
<geo:long>41.312466</geo:long>
</entry>
--
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.