mirror of
https://github.com/Leaflet/Leaflet.VectorGrid.git
synced 2025-07-25 16:09:47 +00:00
98 lines
3.3 KiB
HTML
98 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
|
|
<title>Leaflet.VectorGrid Points Example</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.1/dist/leaflet.css" />
|
|
|
|
</head>
|
|
<body style='margin:0'>
|
|
|
|
<div id="map" style="width: 100vw; height: 100vh"></div>
|
|
|
|
<script type="text/javascript" src="https://unpkg.com/leaflet@1.3.1/dist/leaflet.js"></script>
|
|
<script type="text/javascript" src="https://unpkg.com/leaflet.vectorgrid@1.2.0"></script>
|
|
<!-- <script type="text/javascript" src="../dist/Leaflet.VectorGrid.bundled.js"></script> -->
|
|
<script>
|
|
|
|
var map = L.map('map');
|
|
|
|
// var cartodbAttribution = '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, © <a href="http://cartodb.com/attributions">CartoDB</a>';
|
|
//
|
|
// var positron = L.tileLayer('http://{s}.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}.png', {
|
|
// attribution: cartodbAttribution,
|
|
// opacity: 0.5
|
|
// }).addTo(map);
|
|
|
|
|
|
// var mapboxUrl = 'https://{s}.tiles.mapbox.com/v4/mapbox.mapbox-streets-v6/{z}/{x}/{y}.vector.pbf?access_token=pk.eyJ1IjoiaXZhbnNhbmNoZXoiLCJhIjoiY2l6ZTJmd3FnMDA0dzMzbzFtaW10cXh2MSJ9.VsWCS9-EAX4_4W1K-nXnsA';
|
|
// var mapboxAttribution: '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, © <a href="https://www.mapbox.com/about/maps/">MapBox</a>'
|
|
var openmaptilesUrl = "https://free-{s}.tilehosting.com/data/v3/{z}/{x}/{y}.pbf.pict?key={key}";
|
|
var openmaptilesAttribution = '<a href="https://openmaptiles.org/">© OpenMapTiles</a>, <a href="http://www.openstreetmap.org/copyright">© OpenStreetMap</a> contributors';
|
|
var openmaptilesKey = 'VrAl6k9W8JkD4G5584Sz'; // API key only valid for leaflet.github.io
|
|
|
|
|
|
var vectorTileOptions = {
|
|
rendererFactory: L.canvas.tile,
|
|
attribution: openmaptilesAttribution,
|
|
key: openmaptilesKey,
|
|
subdomains: '0123', // 01234 for openmaptiles, abcd for mapbox
|
|
vectorTileLayerStyles: {
|
|
// 'poi_label': { icon: new L.Icon.Default() },
|
|
'poi': { icon: new L.Icon.Default() },
|
|
|
|
housenumber: [],
|
|
park: [],
|
|
place: [],
|
|
water: [],
|
|
waterway: [],
|
|
boundary: [],
|
|
country_label: [],
|
|
marine_label: [],
|
|
state_label: [],
|
|
place_label: [],
|
|
waterway_label: [],
|
|
water_name: [],
|
|
landcover: [],
|
|
landuse: [],
|
|
landuse_overlay: [],
|
|
road: [],
|
|
transportation: [],
|
|
waterway: [],
|
|
aeroway: [],
|
|
tunnel: [],
|
|
bridge: [],
|
|
barrier_line: [],
|
|
building: [],
|
|
road_label: [],
|
|
road_name: [],
|
|
transportation_name: [],
|
|
housenum_label: [],
|
|
mountain_peak: [],
|
|
},
|
|
interactive: true, // Make sure that this VectorGrid fires mouse/pointer events
|
|
getFeatureId: function(f) {
|
|
return f.properties.osm_id;
|
|
}
|
|
};
|
|
|
|
L.tileLayer('http://tile.openstreetmap.org/{z}/{x}/{y}.png').addTo(map);
|
|
|
|
var pbfLayer = L.vectorGrid.protobuf(openmaptilesUrl, vectorTileOptions)
|
|
.on('click', function(e) { // The .on method attaches an event handler
|
|
L.popup()
|
|
.setContent(e.layer.properties.name || e.layer.properties.type)
|
|
.setLatLng(e.latlng)
|
|
.openOn(map);
|
|
|
|
L.DomEvent.stop(e);
|
|
})
|
|
.addTo(map);
|
|
|
|
map.setView([40.9994639, -74.163208], 14);
|
|
</script>
|
|
</body>
|
|
</html>
|