Skip to content

Instantly share code, notes, and snippets.

@isc-rsingh
Last active February 14, 2017 22:27
Show Gist options
  • Save isc-rsingh/fdee508ade0bf767a2da3d1ddbe4d779 to your computer and use it in GitHub Desktop.
Save isc-rsingh/fdee508ade0bf767a2da3d1ddbe4d779 to your computer and use it in GitHub Desktop.
mapbox symbol styling
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title></title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.32.1/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.32.1/mapbox-gl.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>
mapboxgl.accessToken = 'pk.eyJ1IjoicnNiYXVtYW5uIiwiYSI6IjdiOWEzZGIyMGNkOGY3NWQ4ZTBhN2Y5ZGU2Mzg2NDY2In0.jycgv7qwF8MMIWt4cT0RaQ';
var map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://styles/mapbox/light-v9',
center: [-90.96, -0.47],
zoom: 8
});
map.on('load', function () {
// add source as a layer and apply some styles
map.addLayer({
"id": "symbols",
"type": "symbol",
"source": {
"type": "geojson",
"data": {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
'name': 'two'
},
"geometry": {
"type": "Point",
"coordinates": [
-91.395263671875,
-0.9145729757782163
]
}
},
{
"type": "Feature",
"properties": {
'name' : 'one'
},
"geometry": {
"type": "Point",
"coordinates": [
-90.32958984375,
-0.6344474832838974
]
}
},
{
"type": "Feature",
"properties": {
'name': 'three'
},
"geometry": {
"type": "Point",
"coordinates": [
-91.34033203125,
0.01647949196029245
]
}
}
]
}
},
"layout": {
"icon-image": "marker-11",
"icon-size": 12,
"text-field": "{name}",
"text-offset": [0,-1]
},
"paint": {}
});
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment