Last active
December 25, 2015 23:49
-
-
Save jasonbot/7059950 to your computer and use it in GitHub Desktop.
Parking Map
This file contains 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
{ | |
"type": "FeatureCollection", | |
"features": [ | |
{ | |
"type": "Feature", | |
"properties": { | |
"Description": "Public Parking Lot", | |
"fill": "#4545ff", | |
"stroke": "#0000ff" | |
}, | |
"geometry": { | |
"type": "Polygon", | |
"coordinates": [ | |
[ | |
[ | |
-117.18542754650115, | |
34.05534166198118 | |
], | |
[ | |
-117.1854892373085, | |
34.0554416610255 | |
], | |
[ | |
-117.18530416488646, | |
34.055521660176026 | |
], | |
[ | |
-117.18517273664474, | |
34.05554832654276 | |
], | |
[ | |
-117.1850949525833, | |
34.05556610411593 | |
], | |
[ | |
-117.18411594629288, | |
34.05556610411593 | |
], | |
[ | |
-117.18373507261275, | |
34.055563881919475 | |
], | |
[ | |
-117.18373507261275, | |
34.05515055236831 | |
], | |
[ | |
-117.18525856733321, | |
34.05513499691575 | |
], | |
[ | |
-117.18530416488646, | |
34.05519499650276 | |
], | |
[ | |
-117.18542754650115, | |
34.05534166198118 | |
] | |
] | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"Description": "Parking on right (southbound) side of Eureka", | |
"fill": "#4545ff", | |
"stroke": "#0000ff" | |
}, | |
"geometry": { | |
"type": "Polygon", | |
"coordinates": [ | |
[ | |
[ | |
-117.185577750206, | |
34.05539499481949 | |
], | |
[ | |
-117.18552142381668, | |
34.055426105626374 | |
], | |
[ | |
-117.1831691265106, | |
34.052490528489486 | |
], | |
[ | |
-117.18325763940813, | |
34.05243497154536 | |
], | |
[ | |
-117.185577750206, | |
34.05539499481949 | |
] | |
] | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"Description": "Parking on both sides of Olive", | |
"fill": "#4545ff", | |
"stroke": "#0000ff" | |
}, | |
"geometry": { | |
"type": "Polygon", | |
"coordinates": [ | |
[ | |
[ | |
-117.1846067905426, | |
34.05166383740143 | |
], | |
[ | |
-117.18190312385559, | |
34.053210543191554 | |
], | |
[ | |
-117.18177437782288, | |
34.05305942950185 | |
], | |
[ | |
-117.18448609113693, | |
34.05151716555997 | |
], | |
[ | |
-117.1846067905426, | |
34.05166383740143 | |
] | |
] | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"Description": "180 South Eureka", | |
"marker-color": "#4545ff" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-117.18397378921507, | |
34.053206098675105 | |
] | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment