我只需在我的网站上添加一个谷歌地图自动填充功能(建议您,并存储所有信息,如路线,城市,管理字段等)字段。 我唯一担心的是,每次我的用户重新加载页面并突出显示该字段时,浏览器都会请求权限来处理用户的位置。 我真的不需要它,我想禁用它,但我无法在文档中找到此选项。
有人可以帮帮我吗? 感谢
答案 0 :(得分:1)
自动填充服务不会请求您的位置,除此之外的其他内容。
在Google's examples的至少一个中,该请求由客户端代码提出:
function geolocate() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
var geolocation = {
lat: position.coords.latitude,
lng: position.coords.longitude
};
var circle = new google.maps.Circle({
center: geolocation,
radius: position.coords.accuracy
});
autocomplete.setBounds(circle.getBounds());
});
}
}