我有一个小应用程序,提供当前位置:经度和纬度。 现在我必须浏览谷歌地图的经度和纬度。 请建议我该怎么做。
当前回答
这些是有效的url:
http://maps.google.com/?q= < LAT >、<液化天然气>
https://maps.google.com/?q=<LAT>,<LNG>&ll=<LAT>,<LNG>&z=18
https://www.google.com/maps/@ < LAT >、<液化天然气> 16 z
https://maps.google.com/?q=<LAT>,<LNG>&z=16
虽然(对于热心的读者)这是谷歌(2017年8月22日)的最新消息:
地图的url 使用地图显示映射url 用搜索动作映射url
从谷歌
Search: When searching for a specific place, the resulting map puts a pin in the specified location and displays available place details. Important: The parameter api=1 identifies the version of Maps URLs this URL is intended for. This parameter is required in every request. The only valid value is 1. If api=1 is NOT present in the URL, all parameters are ignored and the default Google Maps app will launch, either in a browser or the Google Maps mobile app, depending on the platform in use (for example, https://www.google.com/maps).
其他回答
这种模式再次发生了变化(2018年10月23日)。请看Kushagr的最新回答。
这是一个带有标记的地图(通过aaronm的评论):
https://www.google.com/maps/?q=-15.623037,18.388672
对于一个旧的例子(没有标记):
https://www.google.com/maps/preview/@-15.623037,18.388672,8z
最古老的格式:
http://maps.google.com/maps?ll=-15.623037,18.388672&spn=65.61535,79.013672
在android系统下打开谷歌地图应用程序:-
geo:<lat>,<lng>?z=<zoom>
打开应用程序与标记给出的位置:-
geo:<lat>,<lng>?q=<lat>,<lng>(Label,Name)
在ios中打开谷歌地图:-
comgooglemaps://?q=<lat>,<lng>
在浏览器中使用如下参数打开谷歌地图
http://maps.google.com/maps?z=12&t=m&q=<lat>,<lng>
Z是缩放级别(1-21) t是地图类型(“m”地图,“k”卫星,“h”混合,“p”地形,“e”GoogleEarth) Q是搜索查询
截至今天(2014/09/23),我发现要在确切的地方(不是近似值)得到标记,你可以使用:
http://www.google.com/maps/place/49.46800006494457,17.11514008755796
此外,如果你想指定地图中心和缩放:
http://www.google.com/maps/place/49.46800006494457,17.11514008755796/@49.46800006494457,17.11514008755796,17z
如果你想使用卫星地图类型,那么追加/data=!3m1!1 e3
http://www.google.com/maps/place/49.46800006494457,17.11514008755796/@49.46800006494457,17.11514008755796,17z/data=!3m1!1e3
如果你想要地形视图的地图,然后追加/data=!3m1!4 b1
https://www.google.com/maps/place/49.46800006494457,17.11514008755796/@49.46800006494457,17.11514008755796,17z/data=!3m1!4b1
最好的方法是使用q参数,这样它就会显示带有标记点的地图。如:
https://maps.google.com/?q=<lat>,<lng>
简单说http://www.google.com/maps/place/lat,lng格式
示例url:
http://www.google.com/maps/place/30.364124,48.227034
推荐文章
- 禁用表单自动提交按钮单击
- 链接重新加载当前页面
- 我如何使一个HTML文本框显示空时提示?
- 如何使HTML文本不可选
- 没有定义Electron require()
- JavaScript表单提交-确认或取消提交对话框
- HTML5中的画布宽度和高度
- JSON到pandas DataFrame
- Ng-app和data-ng-app有什么区别?
- 内容=“X-UA-Compatible IE = 9;IE = 8;IE = 7;IE =边缘”
- 停止/关闭由navigator.mediaDevices.getUserMedia打开的网络摄像头流
- 我如何禁用使用CSS的表单字段?
- 我真的需要将“&”编码为“&”吗?
- 使页脚正确地粘在页底
- 为什么<fieldset>不能是伸缩容器?