如何在Polymer-Project中使用Google Api更改标记图标?

时间:2015-02-23 22:00:20

标签: google-maps google-maps-markers polymer

请帮助我,我使用core-ajax生成了多个标记,默认标记显示良好,但想添加自定义标记而不是默认的红色标记

<template repeat="{{x in views}}">
    <google-map-marker latitude="{{x.lat}}" longitude="{{x.long}}"
                       draggable="false">
            <img src="1.png" height="20px" width="20px">
    </google-map-marker>
</template>

如教程this中所述,但无效

the customized image position not set properly

1 个答案:

答案 0 :(得分:4)

我得到了这个答案,不知道为什么人们 - 关于谷歌地图标记的问题 的解决方案 我们只需使用 google-map-marker

中的图标属性添加指定的图标
<google-map-marker latitude="{{x.lat}}" 
        longitude="{{x.long}}"
        draggable="false"
        icon="components/elements/imagename.png"
        title="{{x.VDC}}-{{x.area}}">
</google-map-marker>