在标记输出数据库的同时显示用户在谷歌地图上的当前位置

时间:2013-05-28 01:23:07

标签: google-maps userlocation

我使用了此链接中的代码https://developers.google.com/maps/articles/phpsqlajax_v3?hl=nl

我想显示用户当前位置,以便用户可以看到它们附近有哪些标记。教程使用坐标center: new google.maps.LatLng(47.6145, -122.3418)

,而不是显示用户位置

我尝试过:center: new google.maps.LatLng(position.coords.latitude, position.coords.longitude);但它没有用。

知道我做错了吗?

1 个答案:

答案 0 :(得分:0)

Clayton,使用navigator.geolocation.getCurrentPosition方法提供回调函数:

var map = new google.maps.Map(document.getElementById("map"), mapOptions);
if(navigator.geolocation) {
    navigator.geolocation.getCurrentPosition(
        function(position) {
            map.setCenter(new google.maps.LatLng(position.coords.latitude,position.coords.longitude));
        }
       ,function() {
            alert("Geolocation service failed");
        });
}
else
    alert("Your browser doesn't support geolocation");