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

How to change Marker Icon using Google Api in Polymer-Project?

请帮助我,我使用 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 但不起作用

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

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