GoogleMaps:IE7 中没有自定义图标
我尝试使用自定义图标作为地图上的标记。
它在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,问题是别的。
我知道我讨厌 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++){