gpt4 book ai didi

javascript - 使用 Google Maps API v3 中的 Sprite 标记图标缩放标记大小

转载 作者:可可西里 更新时间:2023-11-01 01:39:36 26 4
gpt4 key购买 nike

我在使用 Google Maps API (v3) 时遇到了标记图标的问题。我正在尝试根据标记的各个数据属性来改变标记的大小。

图标本身位于包含三个不同圆形标记的 Sprite 中,每个标记为 16 像素 x 16 像素。我正在尝试缩放单个图标,但到目前为止没有成功。

这是我的代码:

var offset = Math.floor(Math.random() * 3) * 16; // pick one of the three icons in the sprite

// Calculate desired pixel-size of the marker
var size = Math.floor(4*(count-1) + 8);

// Create custom marker
var marker = new google.maps.Marker({
position: new google.maps.LatLng(lat, lng),
icon: new google.maps.MarkerImage(
'img/dot.png', // my sprite with 3 circular icons
new google.maps.Size(16, 16), // 16x16 is the original size of each individual icon
new google.maps.Point(0, offset), // picking one of the three icons in the sprite
new google.maps.Point(Math.floor(size/2), Math.floor(size/2)), // setting correct anchor for the marker
new google.maps.Size(size, size) // trying to scale the marker
)
});

问题似乎出在最后一行,我正在尝试将标记图标缩放到所需的大小。它没有正确缩放,而是得到一个奇怪的、扭曲的椭圆形图标

我做错了什么?

最佳答案

经过反复试验,我已经弄清楚这是如何工作的(文档是骗人的),感谢 this blog post .

这是我的新代码:

var offset = Math.floor(Math.random() * 3) * 16; // pick one of the three icons in the sprite

// Calculate desired pixel-size of the marker
var size = Math.floor(4*(count-1) + 8);
var scaleFactor = size/16;

// Create custom marker
var marker = new google.maps.Marker({
position: new google.maps.LatLng(lat, lng),
icon: new google.maps.MarkerImage(
'img/dot.png', // my 16x48 sprite with 3 circular icons
new google.maps.Size(16*scaleFactor, 16*scaleFactor), // desired size
new google.maps.Point(0, offset*scaleFactor), // offset within the scaled sprite
new google.maps.Point(size/2, size/2), // anchor point is half of the desired size
new google.maps.Size(16*scaleFactor, 48*scaleFactor) // scaled size of the entire sprite
)
});

希望这对下线的人有帮助!

关于javascript - 使用 Google Maps API v3 中的 Sprite 标记图标缩放标记大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6811313/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com