Mapping GeoJSON/TopoJSON files on GitHub ( following the geoJSON spec )
{
"type": "Topology",
"objects": {
"example": {
"type": "GeometryCollection",
"geometries": [
{
"type": "Point",
"properties": {"label": "larry", "title": "larry title"},
"coordinates": [-3.3648735, 56.04]
},
{
"type": "Point",
"properties": {"label": "curly"},
"coordinates": [-0.1276474, 51.5073219]
}
]
}
}
}
{
"type": "Topology",
"objects": {
"example": {
"type": "FeatureCollection",
"features": [
{
"type":"Feature",
"geometry":
{
"type":"Point",
"coordinates":[-3.3648735, 56.04]
},
"properties":{"label":"W","title":"World Wide Web"}
}
]
}
}
}