異なるカテゴリの各マーカーに異なるマーカー画像を付けようとしています。json には、すべて異なるカテゴリ (1、2、3) の 3 つの例があります。
現時点では、1 つのマーカー画像がすべてに使用されていますが、カテゴリ値を使用して、使用される画像 URL を制御したいと考えています。
おそらく、カテゴリの色を挿入する場所を持つ url 変数を使用することを考えていました (var url = "http://domain.com/images/marker_" + [category] + ".png")。次に、それを switch ステートメントと組み合わせることができますが、それは私が得た限りです。
これを処理する最善の方法は何ですか?
これが私が持っているGoogleマップ用の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
})();
ありがとう