Download outline map of (geojson format) :
.geojson (**)
Download polygon array of map for "Google Maps" :
.txt
Bounding Box for Map : ( 75.324434 , 36.682362 , 80.177086 , 101.671585 )
Get Boundaries from overpass-turbo (OSM) with boundary box of map
[out:json];
(
relation["boundary"="administrative"]["admin_level"~"5|6|7"](75.324434, 36.682362, 80.177086, 101.671585);
);
out geom;
Run this query on overpass-turbo (Click RUN button on the opened page!)
Get Boundaries from overpass-turbo (OSM) with place name ()
[out:json];
(
rel["name"=""][type=boundary];
rel["name:en"=""][type=boundary];
);
out geom;
Run this query on overpass-turbo (Click RUN button on the opened page!)
Notes:
- You can download geometry data for in various formats (Geojson,KML,GPX,raw OSM data) by clicking export button on the overpass-turbo
- You can freely use the jpeg type map images you created on the "map cropping" page or downloaded from the "samples" pages.
- (**)
Terms of Use for downloaded geojson files.