How to change color of marker in Google Map?

后端 未结 3 893
花落未央
花落未央 2021-01-01 06:21

I won\'t use GIcon to change for the marker.Any other ways to change color of marker???

3条回答
  •  猫巷女王i
    2021-01-01 07:18

    Nope, if you wan't to customize your marker, you will need to use GIcon.

    You can find a whole lot of free markers at the Google Maps Icons Project. The code to use a custom marker is pretty straightforward:

    // Create our "tiny" marker icon
    var blueIcon = new GIcon(G_DEFAULT_ICON);
    blueIcon.image = "http://gmaps-samples.googlecode.com/svn/trunk/markers/blue/blank.png";
    
    // Set up our GMarkerOptions object
    markerOptions = { icon:blueIcon };
    
    // add the markerOptions as the second param to GMarker constructor
    map.addOverlay(new GMarker(latlng, markerOptions));
    

提交回复
热议问题