71 lines
2.3 KiB
HTML
71 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Leaflet debug page</title>
|
|
|
|
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" />
|
|
<script src="http://cdn.leafletjs.com/leaflet-0.7/leaflet.js"></script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="screen.css" />
|
|
|
|
<link rel="stylesheet" href="../dist/MarkerCluster.css" />
|
|
<link rel="stylesheet" href="../dist/MarkerCluster.Default.css" />
|
|
<script src="../dist/leaflet.markercluster-src.js"></script>
|
|
<script type="text/javascript" src="geojson-sample.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div id="map"></div>
|
|
<span>Mouse over a cluster to see the bounds of its children and click a cluster to zoom to those bounds</span>
|
|
<script type="text/javascript">
|
|
|
|
var tiles = L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
|
|
maxZoom: 18,
|
|
attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
|
|
}),
|
|
latlng = L.latLng(0.78, 102.37);
|
|
|
|
var map = L.map('map', {center: latlng, zoom: 7, layers: [tiles]});
|
|
|
|
|
|
var geojson = L.geoJson(geojsonSample, {
|
|
|
|
style: function (feature) {
|
|
return {color: feature.properties.color};
|
|
},
|
|
|
|
onEachFeature: function (feature, layer) {
|
|
var popupText = 'geometry type: ' + feature.geometry.type;
|
|
|
|
if (feature.properties.color) {
|
|
popupText += '<br/>color: ' + feature.properties.color
|
|
}
|
|
|
|
layer.bindPopup(popupText);
|
|
}
|
|
});
|
|
|
|
geojson.addLayer(new L.Marker(new L.LatLng(2.745530718801952, 105.194091796875)))
|
|
|
|
var eye1 = new L.Marker(new L.LatLng(-0.7250783020332547, 101.8212890625));
|
|
var eye2 = new L.Marker(new L.LatLng(-0.7360637370492077, 103.2275390625));
|
|
var nose = new L.Marker(new L.LatLng(-1.3292264529974207, 102.5463867187));
|
|
var mouth = new L.Polyline([
|
|
new L.LatLng(-1.3841426927920029, 101.7333984375),
|
|
new L.LatLng(-1.6037944300589726, 101.964111328125),
|
|
new L.LatLng(-1.6806671337507222, 102.249755859375),
|
|
new L.LatLng(-1.7355743631421197, 102.67822265625),
|
|
new L.LatLng(-1.5928123762763, 103.0078125),
|
|
new L.LatLng(-1.3292264529974207, 103.3154296875)
|
|
]);
|
|
|
|
var markers = L.markerClusterGroup();
|
|
markers.addLayer(geojson).addLayers([eye1,eye2,nose,mouth]);
|
|
|
|
map.addLayer(markers);
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|