-
-
Save ARolek/27556b24adda6fc97bf1 to your computer and use it in GitHub Desktop.
Mapbox feature layer custom data pass
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title>A simple map</title> | |
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> | |
<script src='https://api.tiles.mapbox.com/mapbox.js/v1.6.4/mapbox.js'></script> | |
<link href='https://api.tiles.mapbox.com/mapbox.js/v1.6.4/mapbox.css' rel='stylesheet' /> | |
<style> | |
body { margin:0; padding:0; } | |
#map { position:absolute; top:0; bottom:0; width:100%; } | |
</style> | |
</head> | |
<body> | |
<div id='map'></div> | |
<script> | |
var map = L.mapbox.map('map', 'examples.map-i86nkdio') | |
.setView([37.9, -77], 9); | |
var myLayer = L.geoJson({ | |
type: 'Feature', | |
geometry: { | |
type:"MultiPolygon", | |
coordinates:[ | |
[ | |
[ | |
[-117.349920278382,33.1687554044396], | |
[-117.348490649727,33.1687487391453], | |
[-117.348490870509,33.1684848829971], | |
[-117.3500366555,33.1684894786726], | |
[-117.350035987804,33.1686003732432], | |
[-117.349920278382,33.1687554044396] | |
] | |
] | |
] | |
}, | |
properties: { | |
title: 'Layer', | |
'marker-color': '#bbb', | |
apn: 12345678, // custom! | |
} | |
},{ | |
onEachFeature: function (feature, layer) { | |
layer.bindPopup(feature.properties.apn); | |
} | |
}).addTo(map); | |
map.fitBounds(myLayer.getBounds()); | |
/* | |
myLayer.on('click', function(e) { | |
alert(e.layer.toGeoJSON().properties.apn); | |
}); | |
*/ | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment