Vector Data
In GIS, vector data are commonly encountered as: political boundaries, cenus data, pathways (road, trails, etc.), point location (stop sign, fire hydrant), etc.
Sample GeoJson File
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"marker-color": "#blue",
"marker-size": "medium",
"marker-symbol": "circle",
"Name": "Vancouver"
},
"geometry": {
"type": "Point",
"coordinates": [
-123.04687499999999,
49.23912083246698
]
}
},
{
"type": "Feature",
"properties": {
"marker-color": "red",
"marker-size": "medium",
"marker-symbol": "square",
"Name": "Victoria"
},
"geometry": {
"type": "Point",
"coordinates": [
-123.40942382812501,
48.516604348867475
]
}
}
]
}