[Pkg-javascript-commits] [leaflet-markercluster] 384/479: Example that adds random things to the MCG. Currently we don't support removing them (TODO!)
Jonas Smedegaard
dr at jones.dk
Thu Oct 16 16:00:59 UTC 2014
This is an automated email from the git hooks/post-receive script.
js pushed a commit to branch master
in repository leaflet-markercluster.
commit eceb26ba8cce864ee35a3dfd4e127b40f6b89ce2
Author: danzel <danzel at localhost.geek.nz>
Date: Fri Jun 21 16:42:24 2013 +1200
Example that adds random things to the MCG. Currently we don't support removing them (TODO!)
---
example/geojson-sample.js | 53 +++++++++++++++++++++++++
example/marker-clustering-geojson.html | 71 ++++++++++++++++++++++++++++++++++
2 files changed, 124 insertions(+)
diff --git a/example/geojson-sample.js b/example/geojson-sample.js
new file mode 100644
index 0000000..37a2266
--- /dev/null
+++ b/example/geojson-sample.js
@@ -0,0 +1,53 @@
+var geojsonSample = {
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [102.0, 0.5]
+ },
+ "properties": {
+ "prop0": "value0",
+ "color": "blue"
+ }
+ },
+
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [[102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0]]
+ },
+ "properties": {
+ "color": "red",
+ "prop1": 0.0
+ }
+ },
+
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0]]]
+ },
+ "properties": {
+ "color": "green",
+ "prop1": {
+ "this": "that"
+ }
+ }
+ },
+
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "MultiPolygon",
+ "coordinates": [[[[100.0, 1.5], [100.5, 1.5], [100.5, 2.0], [100.0, 2.0], [100.0, 1.5]]], [[[100.5, 2.0], [100.5, 2.5], [101.0, 2.5], [101.0, 2.0], [100.5, 2.0]]]]
+ },
+ "properties": {
+ "color": "purple"
+ }
+ }
+ ]
+};
diff --git a/example/marker-clustering-geojson.html b/example/marker-clustering-geojson.html
new file mode 100644
index 0000000..0ad6854
--- /dev/null
+++ b/example/marker-clustering-geojson.html
@@ -0,0 +1,71 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Leaflet debug page</title>
+
+ <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.5.1/leaflet.css" />
+ <!--[if lte IE 8]><link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.5.1/leaflet.ie.css" /><![endif]-->
+ <script src="http://cdn.leafletjs.com/leaflet-0.5.1/leaflet-src.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" />
+ <!--[if lte IE 8]><link rel="stylesheet" href="../dist/MarkerCluster.Default.ie.css" /><![endif]-->
+ <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 cloudmadeUrl = 'http://{s}.tile.cloudmade.com/BC9A493B41014CAABB98F0471D759707/997/256/{z}/{x}/{y}.png',
+ cloudmadeAttribution = 'Map data © 2011 OpenStreetMap contributors, Imagery © 2011 CloudMade, Points © 2012 LINZ',
+ cloudmade = L.tileLayer(cloudmadeUrl, {maxZoom: 17, attribution: cloudmadeAttribution}),
+ latlng = L.latLng(0.78, 102.37);
+
+ var map = L.map('map', {center: latlng, zoom: 7, layers: [cloudmade]});
+
+
+ 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>
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/leaflet-markercluster.git
More information about the Pkg-javascript-commits
mailing list