Hey all,
I am trying to export some feature layers from ArcGIS Online for use with the Google Maps API. The most intuitive way to do this seems to be to use GeoJSON multipolygon or polygon objects. I have been able to export my feature layers in GeoJSON format, but they don't seem to translate into usable coordinates for Google Maps.
What I get looks like this:
{"type":"FeatureCollection",
"crs":{"type":"name","properties":{"name":"EPSG:3857"}},
"features":[{"type":"Feature","id":1,
"geometry":{
"type":"Polygon",
"coordinates":[
[
[-10516017,4054040],
[-10490946,4054346],
[-10492475,4076666],
[-10397693,4074220],
[-10392189,4074220],
....etc....,
[-10516017,4054040]
]
]},
"properties":{"FID":1,"TITLE":"UAMS Southwest Region","VISIBLE":1,
"DESCRIPTIO":"Counties Served by UAMS Southwest","IMAGE_URL":" ","IMAGE_LINK":" ","DATE":null,"TYPEID":0}}]}