通过js地图定位用户位置
是否有某种地图允许动态选择位置并允许为用户保存它们?例如一些 Gmap API 方法?
我想要一个可导航的地图,而不是标准输入文本,用户可以通过单击位置本身来指定自己的位置(如果可能)。
Is there some kind of map that allows selecting on the fly locations and allows to save them for users? Some Gmap API method for example?
I would like a navigable map instead of standard input text where user can specify their own location by clicking on the location itself if possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JavaScript 可编程客户端地图处理有很多选项。对于 Javascript 客户端,您可以使用:
Bing Maps SDK
Google 地图 SDK
OpenLayers
GeoExt
PolyMaps
传单
其中我个人推荐OpenLayers 是最通用且真正开放的客户端框架。
这是一个示例,类似于您建议使用 OpenLayers 的内容。
您可能想使用地理编码服务,Google 提供多功能地理编码 API,但还有其他的。需要考虑的一件事是各种客户端框架和 API 的许可协议差异很大。
There are lots of options for the javascript programmable client side map processing. For the Javascript client you could use:
Bing Maps SDK
Google Maps SDK
OpenLayers
GeoExt
PolyMaps
Leaflet
Of these I would personally recommend OpenLayers as the most versatile and truly open client side framework.
This is an example of something similar to what you are suggesting using OpenLayers.
You may want to use a geocoding service, google offer a versatile geocoding API, but there are others. One thing to think about is the licensing agreements of the various client side frameworks and APIs vary massively.