我有問題,標籤將保持黑色即使與JavaScript中的labelColor屬性,但我想它是白色有沒有辦法做到這一點?也許是一種解決方法?如何更改標記標籤的文字顏色?
for (i = 0; i < locations.length; i++) {var myLatLng = new google.maps.LatLng(locations[i][1], locations[i][2]);
marker = new google.maps.Marker({
position: myLatLng,
map: map,
label: labels[i],
labelClass: "labels", // the CSS class for the label
labelColor: '#fff',
labelInBackground: false,
icon: locations[i][4]
});
問題是我有我想要使用的自定義圖標,我不想先創建一些SVG。 感謝任何能幫助我的人。
謝謝@geocodezip對我來說非常完美:)。 – Johannes