2016-09-30 19:56:05 +08:00
|
|
|
---
|
|
|
|
layout: tutorial_frame
|
|
|
|
title: Quick Start
|
|
|
|
customMapContainer: "true"
|
|
|
|
---
|
|
|
|
<div id='mapid' style='width: 600px; height: 400px;'></div>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
var mymap = L.map('mapid').setView([51.505, -0.09], 13);
|
|
|
|
|
2017-02-16 15:44:50 +08:00
|
|
|
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
|
2016-09-30 19:56:05 +08:00
|
|
|
maxZoom: 18,
|
|
|
|
attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' +
|
|
|
|
'<a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' +
|
|
|
|
'Imagery © <a href="http://mapbox.com">Mapbox</a>',
|
|
|
|
id: 'mapbox.streets'
|
|
|
|
}).addTo(mymap);
|
|
|
|
|
|
|
|
</script>
|