2016-12-14 147 views
2

我有一個GMAP我安裝在我的.xhtml並添加標記,以它在我的行動:Primefaces GMAP標記與標籤

<p:gmap id="topologyMap" fitBounds="true" type="MAP" 
          mapTypeControl="false" draggable="true" disableDoubleClickZoom="true" 
          navigationControl="false" streetView="false" 
          style="width:100%;height:500px" 
          model="#{Action.simpleModel}" disableDefaultUI="true"> 

在我行動我有

MapModel simpleModel = new DefaultMapModel();; 
Marker newMarker = new Marker(new LatLng(latitude, longitude)); 
newMarker.setIcon("resources/media/marker-blue-dot.png"); 
simpleModel.addOverlay(newMarker); 

我不能圖瞭解如何將標籤添加到我的標記中。按標籤我的意思是我想在我的標記下面顯示一些文字,例如:標記下的城市名稱。我正在使用primefaces 6.0。

謝謝。

回答

-1

有標記的一個標題字符串構造函數:

public Marker(LatLng latlng, String title) 
+0

誰downvoted這一點,爲什麼呢? – Kukeltje