Last active
August 29, 2015 14:15
-
-
Save ascoppa/bd6e8426c4c695008c2e to your computer and use it in GitHub Desktop.
This file contains hidden or 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 static map with a polygon</title> | |
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> | |
<script src='https://api.tiles.mapbox.com/mapbox.js/v2.1.5/mapbox.js'></script> | |
<link href='https://api.tiles.mapbox.com/mapbox.js/v2.1.5/mapbox.css' rel='stylesheet' /> | |
</head> | |
<body> | |
<div id='map'></div> | |
<script> | |
//cordinates are [lng, lat] | |
//poligon.cordinates.first must be equal to poligon.cordinates.last | |
var polygon = { | |
"type":"FeatureCollection", | |
"features":[{ "type":"Feature","properties":{"stroke": "#68B9AB", "fill": "#68B9AB"}, | |
"geometry":{ "type":"Polygon", | |
"coordinates":[[ | |
[-122.460909,37.803477], | |
[-122.436018,37.807207], | |
[-122.426062,37.806732], | |
[-122.417307,37.805105], | |
[-122.405891,37.806665], | |
[-122.387867,37.789302], | |
[-122.388725,37.780484], | |
[-122.390528,37.777024], | |
[-122.389069,37.766915], | |
[-122.395334,37.758026], | |
[-122.403917,37.74934], | |
[-122.422543,37.747915], | |
[-122.430439,37.747508], | |
[-122.435331,37.762844], | |
[-122.445803,37.771936], | |
[-122.450266,37.791337], | |
[-122.460909,37.803477] | |
]] | |
} | |
}] | |
} | |
var geojson = "geojson("+JSON.stringify(polygon)+")"; | |
var your_public_key = ""; | |
var src = "http://api.tiles.mapbox.com/v4/mapbox.emerald/"+ | |
encodeURIComponent(geojson)+ | |
"/auto/800x400.png?access_token="+your_public_key; | |
$("#map").html("<img src='"+src+"'>"); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you wanna try the map (replace api key first)
http://api.tiles.mapbox.com/v4/mapbox.emerald/geojson(%7B%22type%22%3A%22FeatureCollection%22%2C%22features%22%3A%5B%7B%22type%22%3A%22Feature%22%2C%22properties%22%3A%7B%22stroke%22%3A%22%2368B9AB%22%2C%22fill%22%3A%22%2368B9AB%22%7D%2C%22geometry%22%3A%7B%22type%22%3A%22Polygon%22%2C%22coordinates%22%3A%5B%5B%5B-122.460909%2C37.803477%5D%2C%5B-122.436018%2C37.807207%5D%2C%5B-122.426062%2C37.806732%5D%2C%5B-122.417307%2C37.805105%5D%2C%5B-122.405891%2C37.806665%5D%2C%5B-122.387867%2C37.789302%5D%2C%5B-122.388725%2C37.780484%5D%2C%5B-122.390528%2C37.777024%5D%2C%5B-122.389069%2C37.766915%5D%2C%5B-122.395334%2C37.758026%5D%2C%5B-122.403917%2C37.74934%5D%2C%5B-122.422543%2C37.747915%5D%2C%5B-122.430439%2C37.747508%5D%2C%5B-122.435331%2C37.762844%5D%2C%5B-122.445803%2C37.771936%5D%2C%5B-122.450266%2C37.791337%5D%2C%5B-122.460909%2C37.803477%5D%5D%5D%7D%7D%5D%7D)/auto/800x400.png?access_token=YOUR-API-KEY-HERE