如何免费使用传单地图



传单是开源且免费的。但是,传单站点上的示例使用MAPBOX呈现地图。MAPBOX比Google Map(Mapbox定价)更昂贵。问题是:有人可以真正免费使用传单吗?

您可以免费使用传单库,只有示例中使用的tileprovider,mapbox中使用的钱才能为瓷砖提供资金。您只需要像OpenStreetMap这样的免费tileprovider:

var map = new L.Map('leaflet', {
    center: [0, 0],
    zoom: 0,
    layers: [
        new L.TileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
            'attribution': 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors'
        })
    ]
});
body {
    margin: 0;
}
html, body, #leaflet {
    height: 100%;
}
<!DOCTYPE html>
<html>
  <head>
    <title>Leaflet 1.0.3</title>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link type="text/css" rel="stylesheet" href="//unpkg.com/leaflet@1.0.3/dist/leaflet.css" />
  </head>
  <body>
    <div id="leaflet"></div>
    <script type="application/javascript" src="//unpkg.com/leaflet@1.0.3/dist/leaflet.js"></script>
  </body>
</html>

最新更新