2

我正在使用代码进行测试:

<script type="text/javascript">
// When map page opens get location and display map
$('#map').live("pageinit", function() {

$('#map_canvas').gmap().bind('init', function(evt, map) {
$.getJSON( 'http://jquery-ui-map.googlecode.com/svn/trunk/demos/json/demo.json', 'category=activity', function(data) {

$.each( data.markers, function(i, m) {
$('#map_canvas').gmap('addMarker',
{ 'position': new google.maps.LatLng(m.lat, m.lng), 'bounds':true } );
});
});
});
$('#map_canvas').gmap('refresh');

});
</script> 

出于某种原因,它不显示任何标记,有时地图也是空白的。

任何想法为什么?

4

1 回答 1

2

http://jquery-ui-map.googlecode.com/svn/trunk/demos/json/demo.json不返回 jsonp,因此由于相同的来源策略,除非您的文档,否则您将无法获得响应放在http://jquery-ui-map.googlecode.com

于 2012-08-26T11:20:33.570 回答