0
我在我的nativescript項目中使用mapbox插件。我必須在地圖上顯示幾個標記,並且我想將這些標題設置爲始終可見。是否有一種簡單的方法在nativescript插件上執行它?Nativescript mapbox插件,標記標題始終可見
args.map.addMarkers([
{
lat: 41.0063886,
lng: 28.9781057,
title: 'Area 1',
subtitle: 'Something',
onCalloutTap: function() {
console.log("");
},
}
這是我如何添加標記。
<ContentView height="320" width="320">
<map:Mapbox
accessToken=""
mapStyle="light"
latitude="41.01557434"
longitude="28.9800726"
zoomLevel="13"
showUserLocation="true"
mapReady="onMapReady">
</map:Mapbox>
</ContentView>
這就是我如何創建地圖。
這是爲JS SDK我猜 –
我看到了這個問題,這就是爲什麼我問起它http://stackoverflow.com/questions/21252330/mapbox-title-on-markers-always-visible –
好的比,我會寫信給他們,非常感謝 –