如何定位使用传单的用户?

时间:2012-05-12 12:35:37

标签: javascript leaflet

我正在尝试找到一个用户并使用传单将地图设置到此位置:

    <script>
    var map;

    function initMap(){
        map = new L.Map('map',{zoomControl : false});
        var osmUrl = 'http://{s}.tile.openstreetmap.org/mapnik_tiles/{z}/{x}/{y}.png',
            osmAttribution = 'Map data &copy; 2012 OpenStreetMap contributors',
            osm = new L.TileLayer(osmUrl, {maxZoom: 18, attribution: osmAttribution});
        map.setView(new L.LatLng(51.930156,7.189230), 7).addLayer(osm);
    }

    function locateUser(){
        map.locate({setView : true});
    }
</script>

执行浏览器时请求权限,但是没有任何反应?我的代码出了什么问题?

3 个答案:

答案 0 :(得分:9)

这是一个快速的黑客攻击。我推荐这个插件https://github.com/domoritz/leaflet-locatecontrol

var loadMap = function (id) {
    var HELSINKI = [60.1708, 24.9375];
    var map = L.map(id);
    var tile_url = 'http://{s}.tile.osm.org/{z}/{x}/{y}.png';
    var layer = L.tileLayer(tile_url, {
        attribution: 'OSM'
    });
    map.addLayer(layer);
    map.setView(HELSINKI, 19);

    map.locate({setView: true, watch: true}) /* This will return map so you can do chaining */
        .on('locationfound', function(e){
            var marker = L.marker([e.latitude, e.longitude]).bindPopup('Your are here :)');
            var circle = L.circle([e.latitude, e.longitude], e.accuracy/2, {
                weight: 1,
                color: 'blue',
                fillColor: '#cacaca',
                fillOpacity: 0.2
            });
            map.addLayer(marker);
            map.addLayer(circle);
        })
       .on('locationerror', function(e){
            console.log(e);
            alert("Location access denied.");
        });
};

loadMap('map');

答案 1 :(得分:8)

您的地图变量范围存在问题。我已在此处发布了一个修复代码的示例:http://jsfiddle.net/XwbsU/3/

当您点击“找我!”时,您应该会收到浏览器地理位置弹出窗口。

希望对你有帮助。

答案 2 :(得分:0)

或者,您可以将所有代码放在 getLocation() 函数下,并在加载网页时调用该函数,这样您就应该全部设置好了。我用过这种方式,浏览器一加载它就会弹出一个共享数据的问题。