在asp.net上使用javascript在谷歌地图上显示机场附近

时间:2013-01-04 12:07:09

标签: javascript asp.net google-maps

如何使用Google Map API在区域附近访问或显示感兴趣的机场。

1 个答案:

答案 0 :(得分:1)

尝试Places Library

其中一个supported place types是“机场”。

变化:

  var request = {
    location: pyrmont,
    radius: '500',
    types: ['store']
  };

要:

  var request = {
    location: pyrmont,
    radius: '500',
    types: ['airport']
  };

this example

Example with that change