Resize Google Maps marker icon image

后端 未结 7 1605
感动是毒
感动是毒 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:24

    Delete origin and anchor will be more regular picture

      var icon = {
            url: "image path", // url
            scaledSize: new google.maps.Size(50, 50), // size
        };
    
     marker = new google.maps.Marker({
      position: new google.maps.LatLng(lat, long),
      map: map,
      icon: icon
     });
    

提交回复
热议问题