Maps and points

I’m testing adding a map with points in Discourse.

[map height=400 zoom=13]
{
“type”: “Point”,
“coordinates”: [-122.4194, 37.7749]
}
[/map]

[map]
{
“type”: “FeatureCollection”,
“features”: [
{
“type”: “Feature”,
“properties”: {
“name”: “San Francisco Ferry Building”,
“description”: “Historic terminal building”
},
“geometry”: {
“type”: “Point”,
“coordinates”: [-122.3936, 37.7955]
}
},
{
“type”: “Feature”,
“properties”: {
“name”: “Golden Gate Bridge”,
“description”: “Famous suspension bridge”
},
“geometry”: {
“type”: “Point”,
“coordinates”: [-122.4785, 37.8199]
}
},
{
“type”: “Feature”,
“properties”: {
“name”: “Ferry Route”,
“description”: “Sample ferry path”
},
“geometry”: {
“type”: “LineString”,
“coordinates”: [
[-122.3936, 37.7955],
[-122.3922, 37.8105],
[-122.4058, 37.8264],
[-122.4430, 37.8324]
]
}
},
{
“type”: “Feature”,
“properties”: {
“name”: “Golden Gate Park”,
“description”: “Large urban park”
},
“geometry”: {
“type”: “Polygon”,
“coordinates”: [[
[-122.5111, 37.7655],
[-122.4577, 37.7655],
[-122.4577, 37.7746],
[-122.5111, 37.7746],
[-122.5111, 37.7655]
]]
}
}
]
}
[/map]

{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "properties": {
        "name": "San Francisco Ferry Building",
        "description": "Historic terminal building"
      },
      "geometry": {
        "type": "Point",
        "coordinates": [-122.3936, 37.7955]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "name": "Golden Gate Bridge",
        "description": "Famous suspension bridge"
      },
      "geometry": {
        "type": "Point",
        "coordinates": [-122.4785, 37.8199]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "name": "Ferry Route",
        "description": "Sample ferry path"
      },
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [-122.3936, 37.7955],
          [-122.3922, 37.8105],
          [-122.4058, 37.8264],
          [-122.4430, 37.8324]
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "name": "Golden Gate Park",
        "description": "Large urban park"
      },
      "geometry": {
        "type": "Polygon",
        "coordinates": [[
          [-122.5111, 37.7655],
          [-122.4577, 37.7655],
          [-122.4577, 37.7746],
          [-122.5111, 37.7746],
          [-122.5111, 37.7655]
        ]]
      }
    }
  ]
}

A post was split to a new topic: Maps again

https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.