请帮助我,我使用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中所述,但无效
答案 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>