Google 地图 API 在加载 Javascript 上查找我的位置
我通过 javascript 代码获得了 Google 地图和地点 API。 页面加载时,它将自动转到代码中定义的纬度。有没有办法让它自动转到它认为您所在的位置,而无需按钮或搜索字段?
目前使用此代码:
google.maps.LatLng(37.783259, -122.402708);
I have got a Google Maps and Places API via javascript code.
When the page loads it will automatically go to the Latitude defined in the code. Is there a way to have it AUTOMATICALLY go to where it thinks your location is, without having a button or search field?
Using this code currently:
google.maps.LatLng(37.783259, -122.402708);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过在调用 API 时设置
sensor=true
?来源
Have you tried setting
sensor=true
when calling the API?Source