使用谷歌地图api 3获取经度纬度的地点数据,而不加载地图

时间:2014-10-17 10:20:26

标签: google-maps-api-3

我想使用谷歌地图API。并希望通过指定经度纬度来靠近地点数据。

我的问题是......

是否有可能靠近经纬度的地方数据而不加载谷歌地图?

我检查过"从自动完成服务中检索预测"但它没有返回经度 - 纬度相关的信息。

1 个答案:

答案 0 :(得分:0)

您可以创建地图div并在应用程序中隐藏该div。在后台,你可以调用谷歌地图,靠近地方,做你想做的事。

<div class="row" id="map-canvas" width="100%" height="400" style="display:none;"></div>

    var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
    map.places.search(search, function(results, status) {
      if (status == google.maps.places.PlacesServiceStatus.OK) {
          for(var i = 0; i < results.length; i++){

              console.log(results[i]);
          }


      } else {
          alert('unable to get the data from google map');
      }
    });

根据您的要求调整功能。要运行此应用程序,您可能需要进行一些修改。参考谷歌地图搜索api以了解击球手。