GoogleMaps:IE7 中没有自定义图标

发布于 2024-11-06 07:18:49 字数 553 浏览 0 评论 0原文

我尝试使用自定义图标作为地图上的标记。
它在 FF 和 IE8 上运行良好,但 IE7 只显示默认的 google 标记。

为了创建标记,我使用 LabeledMarker 类,
图像的文件类型为 image/PNG。

此代码用于创建标记:

var icon = new GIcon();
icon.image = this.options.icon;
icon.iconSize = new GSize(24, 24);
icon.iconAnchor = new GPoint(12, 12);
icon.infoWindowAnchor = new GPoint(12, 0);

point = new GLatLng(this.data['geo_n'], this.data['geo_o']);

var opts = {
    icon: icon,
    clickable: false,
    labelText: 'test'
};

marker = new LabeledMarker(point, opts);
map.addOverlay(marker)

I try to use custom icons for the markers on my map.
It works great on FF and IE8, but IE7 only shows the default google markers.

For creation of the Markers I use the Class LabeledMarker,
the Image is file type image/PNG.

This code is used to create the marker:

var icon = new GIcon();
icon.image = this.options.icon;
icon.iconSize = new GSize(24, 24);
icon.iconAnchor = new GPoint(12, 12);
icon.infoWindowAnchor = new GPoint(12, 0);

point = new GLatLng(this.data['geo_n'], this.data['geo_o']);

var opts = {
    icon: icon,
    clickable: false,
    labelText: 'test'
};

marker = new LabeledMarker(point, opts);
map.addOverlay(marker)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野心澎湃 2024-11-13 07:18:49

好吧,问题是别的。
我知道我讨厌 IE 中的 for 循环。

有一个 for 循环,它迭代配置数组以找到要显示的正确图标。
for(i in cfg.icons[key]){
像这样在第一次迭代中我有值“rgbToHex”并导致我的脚本中止

替换为这个我的所有脚本现在都工作得很好:
for(var i = 0; i < cfg.icons[key].length; i++){

OK, the problem was something else.
I know that I hate for-loops in IE.

There is a for-loop that iterates over a config-array to find the right icon to display.
for(i in cfg.icons[key]){
Like this in the first iteration i had the value 'rgbToHex' and caused my script to abort

Replaced with this all my scripts work great now:
for(var i = 0; i < cfg.icons[key].length; i++){

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文