{
  "type": "FeatureCollection",
  "name": "Sample GeoJSON Data",
  "crs": {
    "type": "name",
    "properties": {
      "name": "urn:ogc:def:crs:OGC:1.3:CRS84"
    }
  },
  "features": [
    {
      "type": "Feature",
      "id": "poi-001",
      "geometry": {
        "type": "Point",
        "coordinates": [-122.4194, 37.7749]
      },
      "properties": {
        "name": "San Francisco City Hall",
        "category": "government",
        "description": "The seat of government for the City and County of San Francisco.",
        "address": "1 Dr Carlton B Goodlett Pl, San Francisco, CA 94102",
        "elevation_m": 14,
        "year_built": 1915,
        "website": "https://sfgov.org"
      }
    },
    {
      "type": "Feature",
      "id": "poi-002",
      "geometry": {
        "type": "Point",
        "coordinates": [-73.9857, 40.7484]
      },
      "properties": {
        "name": "Empire State Building",
        "category": "landmark",
        "description": "A 102-story Art Deco skyscraper in Midtown Manhattan.",
        "address": "20 W 34th St, New York, NY 10001",
        "elevation_m": 443,
        "year_built": 1931,
        "website": "https://www.esbnyc.com"
      }
    },
    {
      "type": "Feature",
      "id": "poi-003",
      "geometry": {
        "type": "Point",
        "coordinates": [-87.6298, 41.8781]
      },
      "properties": {
        "name": "Millennium Park",
        "category": "park",
        "description": "A public park in the Loop area of Chicago, home to Cloud Gate.",
        "address": "201 E Randolph St, Chicago, IL 60602",
        "elevation_m": 181,
        "year_built": 2004,
        "website": "https://www.chicago.gov/millenniumpark"
      }
    },
    {
      "type": "Feature",
      "id": "poi-004",
      "geometry": {
        "type": "Point",
        "coordinates": [139.6917, 35.6895]
      },
      "properties": {
        "name": "Tokyo Tower",
        "category": "landmark",
        "description": "A communications and observation tower inspired by the Eiffel Tower.",
        "address": "4-2-8 Shibakoen, Minato City, Tokyo 105-0011, Japan",
        "elevation_m": 333,
        "year_built": 1958,
        "website": "https://www.tokyotower.co.jp"
      }
    },
    {
      "type": "Feature",
      "id": "poi-005",
      "geometry": {
        "type": "Point",
        "coordinates": [2.2945, 48.8584]
      },
      "properties": {
        "name": "Eiffel Tower",
        "category": "landmark",
        "description": "A wrought-iron lattice tower on the Champ de Mars in Paris.",
        "address": "Champ de Mars, 5 Avenue Anatole France, 75007 Paris, France",
        "elevation_m": 330,
        "year_built": 1889,
        "website": "https://www.toureiffel.paris"
      }
    },
    {
      "type": "Feature",
      "id": "route-001",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [-122.4194, 37.7749],
          [-122.4098, 37.7835],
          [-122.3999, 37.7922],
          [-122.3932, 37.7956],
          [-122.3862, 37.7891],
          [-122.3811, 37.7833]
        ]
      },
      "properties": {
        "name": "SF Downtown Walking Route",
        "category": "route",
        "description": "A walking route through downtown San Francisco from City Hall to the Embarcadero.",
        "distance_km": 3.8,
        "duration_min": 45,
        "difficulty": "easy"
      }
    },
    {
      "type": "Feature",
      "id": "route-002",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [-73.9857, 40.7484],
          [-73.9790, 40.7527],
          [-73.9712, 40.7580],
          [-73.9665, 40.7614],
          [-73.9734, 40.7644],
          [-73.9808, 40.7681]
        ]
      },
      "properties": {
        "name": "Midtown to Central Park Walk",
        "category": "route",
        "description": "A walking route from the Empire State Building to Central Park South.",
        "distance_km": 2.5,
        "duration_min": 30,
        "difficulty": "easy"
      }
    },
    {
      "type": "Feature",
      "id": "zone-001",
      "geometry": {
        "type": "Polygon",
        "coordinates": [[
          [-122.4280, 37.7690],
          [-122.4100, 37.7690],
          [-122.4100, 37.7810],
          [-122.4280, 37.7810],
          [-122.4280, 37.7690]
        ]]
      },
      "properties": {
        "name": "SF Civic Center District",
        "category": "district",
        "description": "The Civic Center neighborhood surrounding City Hall and the public library.",
        "area_sq_km": 1.8,
        "population": 28500,
        "zoning": "mixed-use"
      }
    },
    {
      "type": "Feature",
      "id": "zone-002",
      "geometry": {
        "type": "Polygon",
        "coordinates": [[
          [-73.9950, 40.7400],
          [-73.9700, 40.7400],
          [-73.9700, 40.7600],
          [-73.9950, 40.7600],
          [-73.9950, 40.7400]
        ]]
      },
      "properties": {
        "name": "Midtown Manhattan",
        "category": "district",
        "description": "The central commercial district of Manhattan, including Times Square and Grand Central.",
        "area_sq_km": 5.3,
        "population": 67000,
        "zoning": "commercial"
      }
    },
    {
      "type": "Feature",
      "id": "zone-003",
      "geometry": {
        "type": "MultiPolygon",
        "coordinates": [
          [[
            [-87.6400, 41.8700],
            [-87.6200, 41.8700],
            [-87.6200, 41.8850],
            [-87.6400, 41.8850],
            [-87.6400, 41.8700]
          ]],
          [[
            [-87.6350, 41.8860],
            [-87.6250, 41.8860],
            [-87.6250, 41.8920],
            [-87.6350, 41.8920],
            [-87.6350, 41.8860]
          ]]
        ]
      },
      "properties": {
        "name": "Chicago Loop & River North",
        "category": "district",
        "description": "Two adjacent districts forming Chicago's central business area and entertainment zone.",
        "area_sq_km": 4.1,
        "population": 42000,
        "zoning": "mixed-use"
      }
    }
  ]
}
