我正在尝试让一些 json 标记显示在我的地图上。
地图实际上正在出现,但没有显示任何指针,并且地图的位置很远。
这是js代码:
<script>
$('#map_canvas').gmap().bind('init', function() {
// This URL won't work on your localhost, so you need to change it
// see http://en.wikipedia.org/wiki/Same_origin_policy
$.getJSON( 'locations.json', function(data) {
$.each( data.markers, 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.content }, this);
});
});
});
});
</script>
这是json文件的内容:
{"locations":[{"id":"14","location":"(50.8765125,
-1.1504182944499557)"}]}
代码有什么问题吗?