Download outline map of California (geojson format) :
California.geojson (**)
Download polygon array of California map for "Google Maps" :
California.txt
Bounding Box for California Map : ( 13.4187439281 , -88.4817692757 , 13.4748358484 , -88.4329822055 )
Get Boundaries from overpass-turbo (OSM) with boundary box of California map
[out:json];
(
relation["boundary"="administrative"]["admin_level"~"5|6|7"](13.4187439281, -88.4817692757, 13.4748358484, -88.4329822055);
);
out geom;
Run this query on overpass-turbo (Click RUN button on the opened page!)
Get Boundaries from overpass-turbo (OSM) with place name (California)
[out:json];
(
rel["name"="California"][type=boundary];
rel["name:en"="California"][type=boundary];
);
out geom;
Run this query on overpass-turbo (Click RUN button on the opened page!)
Notes:
- You can download geometry data for California 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.