Jquery Bings Maps Json重装

时间:2012-12-18 10:20:51

标签: jquery jquery-plugins bing-maps

我想通过Bing Maps实现以下功能。在#content中,标记将显示在JSON中。

15秒后,应删除并重新加载所有标记。

加载地图和标记可以正常工作。同时删除标记工作。

只有在没有更多新标记下载后!在控制台中,我没有收到任何错误消息。

有没有人有想法?我怀疑当“下载”发生错误时?

守则:

function bings_maps(){
  $('#content').gmap({ 
             center: new Microsoft.Maps.Location(47.631296,15.830868),
             mapTypeId: Microsoft.Maps.MapTypeId.aerial,
             zoom: 17,
             credentials: 'test', 
             bounds: null,
             showMapTypeSelector: false,
             enableSearchLogo: false, 
             showBreadcrumb: false, 
             enableClickableLogo: false, 
             showScalebar: false, 
                           enableSearchLogo: false,
                           showDashboard: false,
                           showMapTypeSelector:false,
                           showScalebar: false,
                           useInertia: false,
                           disablePanning: false,
                           disableZooming: false,
             callback: function() {
  var self = this;
  $.getJSON('inhalt.php', function(data) {
      $.each( data.markers, function(i, marker) {
        var location = new Microsoft.Maps.Location(marker.latitude,
                                                   marker.longitude);
        self.addMarker({ 'location': location, 'bounds': false ,
                  'icon': marker.icon  } );
      });
    });
  }});
}

function bings_maps_refresh() {
  $('#content').gmap('clear', 'markers');
  $('#content').gmap({'callback':function() {
        this.addMarker({'location': '47.631296,15.830868', 'bounds': true});
}});

1 个答案:

答案 0 :(得分:1)

我怀疑您的回复数据中没有任何标记,请尝试使用fiddler检查数据。或者查看chromes开发工具的网络区域(F12)。