2015-02-23 98 views
1

請幫助我,我生成用核心阿賈克斯多個標記,默認的標記顯示良好,但要添加而不是默認的紅色標記自定義標記如何使用Google Api在Polymer-Project中更改標記圖標?

<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

+0

教程說,使用圖標屬性添加指定的圖標:標記與信息窗口(兒童創建窗口的內容),在<谷歌地圖的內容-marker>將是點擊標記後顯示的面板的內容。 – supita 2015-03-03 01:24:17

回答

4

我得到這個答案,不知道爲什麼人們-ve關於谷歌地圖標記 解決問題 ,我們只是在谷歌地圖,標記

<google-map-marker latitude="{{x.lat}}" 
     longitude="{{x.long}}" 
     draggable="false" 
     icon="components/elements/imagename.png" 
     title="{{x.VDC}}-{{x.area}}"> 
</google-map-marker> 
+1

您也可以在google-map-marker [文檔](http://googlewebcomponents.github.io/google-map/components/google-map/)中找到它(從下拉菜單中選擇google-map-marker) 。說_icon - 標記圖標_的圖像URL。 – MasterAM 2015-09-04 09:55:41

+0

當試圖使用動畫.gif圖標時,它不起作用 – Oneezy 2016-10-09 21:02:28