我想请教大家如何使用 JavaScript 在 Google Maps v3 中的每个标记上动态添加数字。例如,第一个标记是 1,第二个是 2,等等。在这种情况下,我有这样的位置数据:
[
new google.maps.LatLng(1.3667, 103.8000),
new google.maps.LatLng(1.3667, 103.8000),
new google.maps.LatLng(1.3667, 103.8000),
new google.maps.LatLng(1.3667, 103.8000),
new google.maps.LatLng(51.0000, 9.0000),
new google.maps.LatLng(51.0000, 9.0000),
new google.maps.LatLng(51.5142, -0.0931),
new google.maps.LatLng(51.5142, -0.0931),
new google.maps.LatLng(54.0000, -2.0000),
new google.maps.LatLng(51.6000, -1.2500),
new google.maps.LatLng(51.7500, -1.2500)
];
但是这些数据会动态变化。因此,对于第一个纬度/经度位置,我将在第一个标记上给出数字 1,在第二个标记上给出数字 2,等等。而且我还使用了每个标记的图标:
"http://chart.apis.google.com/chart?chst=d_map_xpin_letter_withshadow&chld=pin_star|%E2%80%A2|CC3300|000000|FF9900"
我必须更改标记图标吗?我真的需要您的建议或示例代码来解决问题。请帮忙。非常感谢你的帮助。