18

一直在寻找答案,找不到。我正在使用 Google Maps V3 API 来获取路线和地图。这一切都OK...

但我想提供一个沼泽标准 A 标记链接到谷歌地图本身的等效方向。我有 2 个邮政编码。如何根据 2 个邮政编码或我的

 google.maps.DirectionsService

我将使用 URL 来生成“在谷歌地图上查看”按钮和“可打印”按钮。

干杯! 艾登

4

3 回答 3

31

以下是不同 Google 地图功能的一些标准 HTML 链接。我在这里保持更新的帖子。

//Spaces can be changed to "+" or encoded as "%20".

//Linking to a location (No directions)
https://www.google.com/maps?q=760+West+Genesee+Street+Syracuse+NY+13204

//No starting point (User input required to generate directions).
https://www.google.com/maps?daddr=760+West+Genesee+Street+Syracuse+NY+13204

//With a set location as starting point (Automatically generates directions with no user input required).
https://www.google.com/maps?saddr=760+West+Genesee+Street+Syracuse+NY+13204&daddr=314+Avery+Avenue+Syracuse+NY+13204

//With "My Location" as starting point (Automatically generates directions with no user input required).
https://www.google.com/maps?saddr=My+Location&daddr=760+West+Genesee+Street+Syracuse+NY+13204

//Current Location to Latitude and Longitude
https://www.google.com/maps?saddr=My+Location&daddr=43.12345,-76.12345

//Query search of a Latitude and Longitude
//Also shows setting a default zoom level
https://www.google.com/maps?ll=43.12345,-76.12345&q=food&z=14

//String search as destination
https://www.google.com/maps?saddr=My+Location&daddr=Pinckney+Hugo+Group
于 2014-06-05T16:15:25.460 回答
11

请参阅此 Stackoverflow 问题中的链接

http://www.seomoz.org/ugc/everything-you-never-wanted-to-know-about-google-maps-parameters

悲伤=

设置路线搜索的起点。您还可以在方括号中添加文本,以在方向侧边栏中将其加粗。

爸爸=

设置路线搜索的终点,并再次将添加在括号中的任何文本加粗。您还可以添加“+to:”,它将通过点设置。这些可以多次添加。

例子

于 2013-05-01T20:53:13.797 回答
3

截至 2014 年 11 月 4 日,这适用于 iPhone 5C 上 Safari 上的 iOS 8:

https://www.google.com/maps/dir/current+location/100 N Arlington Ave, Reno, NV 89509

如果已安装,它将自动打开 Google 地图并带您进入路线选择器屏幕。%20另请注意:使用,+for 空格无关紧要。

于 2014-11-04T22:11:46.937 回答