当使用谷歌API什么将是需要的应用程序,显示不同地方的位置的数据,是纬度和经度将是必要的,需要显示的位置已经在谷歌Map.或者只是地址或名称的地方将是足够的.有人能帮帮我吗?
xfb7svmp1#
在Map上放置标记时,至少需要纬度和经度顶点。您可以使用各种Google APIS获取数据,如Google Places库,以通过地名或地址进行搜索:https://developers.google.com/maps/documentation/javascript/examples/places-searchbox您还可以使用反向地理编码服务按纬度进行搜索:https://developers.google.com/maps/documentation/javascript/examples/geocoding-reverse或者,如果您有自己的数据,您可以创建标记,如以下示例所示:
var myLatlng = new google.maps.LatLng(36.166461, -86.771289); app.marker = new google.maps.Marker({ position: (myLatlng), data:this, map: app.map, title: 'Hello marker!!' });
字符串https://jsfiddle.net/loanburger/48asvsed/的
1条答案
按热度按时间xfb7svmp1#
在Map上放置标记时,至少需要纬度和经度顶点。
您可以使用各种Google APIS获取数据,如Google Places库,以通过地名或地址进行搜索:https://developers.google.com/maps/documentation/javascript/examples/places-searchbox
您还可以使用反向地理编码服务按纬度进行搜索:https://developers.google.com/maps/documentation/javascript/examples/geocoding-reverse
或者,如果您有自己的数据,您可以创建标记,如以下示例所示:
字符串
https://jsfiddle.net/loanburger/48asvsed/的