Resize Google Maps marker icon image

后端 未结 7 1604
感动是毒
感动是毒 2020-11-29 17:41

When I load an image into the icon property of a marker it displays with its original size, which is a lot bigger than it should be.

I want to resize to the standard

7条回答
  •  伪装坚强ぢ
    2020-11-29 18:19

    As mentionned in comments, this is the updated solution in favor of Icon object with documentation.

    Use Icon object

    var icon = {
        url: "../res/sit_marron.png", // url
        scaledSize: new google.maps.Size(50, 50), // scaled size
        origin: new google.maps.Point(0,0), // origin
        anchor: new google.maps.Point(0, 0) // anchor
    };
    
     posicion = new google.maps.LatLng(latitud,longitud)
     marker = new google.maps.Marker({
      position: posicion,
      map: map,
      icon: icon
     });
    

提交回复
热议问题