Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一张带有自定义标记图像的地图。我使用的图像是半透明的。当我在地图中显示它时,只有一个小三角形显示在图标所在位置的右下角。
半透明图像可以用作谷歌地图中的图像标记吗?
是的,透明图像可以用作自定义标记图像。在创建图像对象时指定图像的大小是一种很好的做法,例如
var customMarkerImage = new google.maps.MarkerImage('image.png', new google.maps.Size(20, 20), null, new google.maps.Point(10, 10));
这也可以解决图像部分显示的问题。