只是一个简单的问题.. 我有这张地图,需要添加更多字段 *Confirmed=seen 在 json 文件中......干杯!
$.getJSON( 'geojson/test.json', function(data) {
$.each( data.features, function(i, marker) {
$('#map_canvas').gmap('addMarker', {
'position': new google.maps.LatLng(marker.latitude, marker.longitude),
'bounds': true
}).click(function() {
$('#map_canvas').gmap('openInfoWindow', { 'content': (marker.donor)}, this);
});
});
});
索引 --> http://gk5tudio.cu.cc/bin/json/index.html和 json --> http://gk5tudio.cu.cc/bin/json/test.json