从开放街景单张的不同口味的地图

时间:2015-08-17 22:41:34

标签: leaflet openstreetmap

我有一张传单地图,我将用这个:

$('#map').height($(window).height()-64+'px');
            var map = L.map('map' , { zoomControl:false }).setView([51.505, -0.09], 13);
            new L.Control.Zoom({ position: 'bottomright' }).addTo(map);

            L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
                attribution: '&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
            }).addTo(map);

这给出了灰度有点无聊的地图。我试图为开放的街景提供一个更加丰富多彩的视图,例如您点击下面的链接,点击图层并点击&#34;街道&#34;

http://leafletjs.com/examples/layers-control-example.html

1 个答案:

答案 0 :(得分:1)

如果您想要彩色OSM地图,请使用此

更改L.tileLayer功能
L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
    maxZoom: 19,
    attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
});

Here是传单的各种底图提供程序的完整列表。

同时检查this链接