mirror of
https://github.com/Leaflet/Leaflet.git
synced 2026-01-25 16:46:35 +00:00
19 lines
492 B
Markdown
19 lines
492 B
Markdown
---
|
|
layout: tutorial_frame
|
|
title: Choropleth Tutorial
|
|
---
|
|
<script type="text/javascript" src="us-states.js"></script>
|
|
<script type="text/javascript">
|
|
|
|
const map = L.map('map').setView([37.8, -96], 4);
|
|
|
|
const tiles = L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
|
maxZoom: 19,
|
|
attribution: '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
|
|
}).addTo(map);
|
|
|
|
/* global statesData */
|
|
const geojson = L.geoJson(statesData).addTo(map);
|
|
|
|
</script>
|