宣传单是开源的,免费的。但是,传单站点上的示例使用Mapbox来渲染地图。 Mapbox比谷歌地图(Mapbox pricing)更贵。 问题是:任何人都可以免费使用Leaflet吗?
答案 0 :(得分:12)
您可以免费使用Leaflet库,只有示例中使用的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>