mirror of
https://github.com/Leaflet/Leaflet.git
synced 2025-12-08 21:26:14 +00:00
48 lines
1.3 KiB
Markdown
48 lines
1.3 KiB
Markdown
---
|
|
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);
|
|
|
|
L.tileLayer('https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
|
|
maxZoom: 18,
|
|
attribution: 'Map data © <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, ' +
|
|
'Imagery © <a href="https://www.mapbox.com/">Mapbox</a>',
|
|
id: 'mapbox/streets-v11',
|
|
tileSize: 512,
|
|
zoomOffset: -1
|
|
}).addTo(mymap);
|
|
|
|
L.marker([51.5, -0.09]).addTo(mymap)
|
|
.bindPopup("<b>Hello world!</b><br />I am a popup.").openPopup();
|
|
|
|
L.circle([51.508, -0.11], 500, {
|
|
color: 'red',
|
|
fillColor: '#f03',
|
|
fillOpacity: 0.5
|
|
}).addTo(mymap).bindPopup("I am a circle.");
|
|
|
|
L.polygon([
|
|
[51.509, -0.08],
|
|
[51.503, -0.06],
|
|
[51.51, -0.047]
|
|
]).addTo(mymap).bindPopup("I am a polygon.");
|
|
|
|
|
|
var popup = L.popup();
|
|
|
|
function onMapClick(e) {
|
|
popup
|
|
.setLatLng(e.latlng)
|
|
.setContent("You clicked the map at " + e.latlng.toString())
|
|
.openOn(mymap);
|
|
}
|
|
|
|
mymap.on('click', onMapClick);
|
|
|
|
</script>
|