我正在尝试为每个具有不同类别的标记提供不同的标记图像。在 json 中,我有 3 个示例,它们都具有不同的类别(一、二和三)。
目前我有一个标记图像用于所有人,但我想使用类别值来控制所使用的图像 URL。
我可能正在考虑使用一个 url 变量来插入类别颜色(var url = "http://domain.com/images/marker_" + [category] + ".png")。然后我可以将它与 switch 语句混合,但这是我所得到的。
我处理这个问题的最佳方法是什么?
这是我为谷歌地图准备的 JS。我正在使用 API 的 v3。
(function() {
window.onload = function() {
// Creating a new map
var map = new google.maps.Map(document.getElementById("map"), {
center: new google.maps.LatLng(30.033591,-36.035156),
zoom: 3,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
// Creating the JSON data
var json = [
{
"title": "USA",
"lat": 37.616552,
"lng": -92.988281,
"description": "<strong>USA</strong> ...",
"category": "one"
},
{
"title": "France",
"lat": 48.372793,
"lng": 1.230469,
"description": "<strong>France</strong> ...",
"category": "two"
},
{
"title": "UK",
"lat": 51.517403,
"lng": -0.098877,
"description": "<strong>UK</strong> ...",
"category": "three"
}
]
// Custom marker - Need one for each category
var image = new google.maps.MarkerImage(
'http://i.imgur.com/3YJ8z.png',
new google.maps.Size(19,25), // size of the image
new google.maps.Point(0,0) // origin, in this case top-left corner
);
// Creating a global infoWindow object that will be reused by all markers
var infoWindow = new google.maps.InfoWindow();
// Marker Clusterer setup
var mcOptions = {
gridSize: 50,
maxZoom: 15
};
var markers = [];
// Looping through the JSON data
for (var i = 0, length = json.length; i < length; i++) {
var data = json[i],
latLng = new google.maps.LatLng(data.lat, data.lng);
// Creating a marker and putting it on the map
var marker = new google.maps.Marker({
position: latLng,
map: map,
title: data.title,
icon: image
});
markers.push(marker);
// Creating a closure to retain the correct data, notice how I pass the current data in the loop into the closure (marker, data)
(function(marker, data) {
// Attaching a click event to the current marker
google.maps.event.addListener(marker, "click", function(e) {
infoWindow.setContent(data.description);
infoWindow.open(map, marker);
});
})(marker, data);
}// END for loop
// Cluster the markers
var markerCluster = new MarkerClusterer(map, markers, mcOptions);
}// END window.onload
})();
谢谢