11

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

    <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>

在执行浏览器请求许可,但没有任何反应?我的代码有什么问题?

4

3 回答 3

16

这是一个快速破解。我推荐这个插件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');
于 2013-08-13T12:39:08.100 回答
8

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

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

希望对您有所帮助。

于 2012-05-18T13:05:37.903 回答
0

或者,您可以将所有代码放在 getLocation() 函数下,并在加载网页时调用该函数,您应该已经准备就绪。我使用这种方式,一旦浏览器加载它就会弹出一个共享数据的问题。

于 2020-12-31T17:33:34.490 回答