Store Locator Map Builder

Paste a CSV with store names, addresses, phone numbers, websites, opening hours and coordinates. The builder creates an OpenStreetMap preview, maps every valid store, flags rows that need cleanup and exports store locator GeoJSON for websites or map tools.

Hurtigt browserværktøj — ingen installation nødvendig
Free

Store Locator Map Builder

Paste store locations with coordinates and build an OpenStreetMap-based locator map.

This MVP does not geocode addresses. Add latitude and longitude for each store so the locator works without a paid API.

Store locator map preview

3 stores ready for the locator map

0 rows need cleanup before they can be mapped

Stores shown on the map

Downtown Pickup

1 Market Street San Francisco

Latitude 37.793615, longitude -122.395042

https://example.com

Chicago Service Desk

100 North State Street Chicago

Latitude 41.883786, longitude -87.628955

https://example.com

Austin Showroom

301 Congress Avenue Austin

Latitude 30.265385, longitude -97.743042

https://example.com

Rows that need coordinates or cleanup

No cleanup issues found.

GeoJSON point data for the store locator

{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "properties": {
        "store_name": "Downtown Pickup",
        "address": "1 Market Street San Francisco",
        "phone": "+1 415 000 0100",
        "website": "https://example.com",
        "opening_hours": "Mo-Fr 09:00-17:00",
        "category": "pickup"
      },
      "geometry": {
        "type": "Point",
        "coordinates": [
          -122.395042,
          37.793615
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "store_name": "Chicago Service Desk",
        "address": "100 North State Street Chicago",
        "phone": "+1 312 000 0100",
        "website": "https://example.com",
        "opening_hours": "Mo-Sa 10:00-18:00",
        "category": "store"
      },
      "geometry": {
        "type": "Point",
        "coordinates": [
          -87.628955,
          41.883786
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "store_name": "Austin Showroom",
        "address": "301 Congress Avenue Austin",
        "phone": "+1 512 000 0100",
        "website": "https://example.com",
        "opening_hours": "Mo-Fr 08:00-16:00",
        "category": "showroom"
      },
      "geometry": {
        "type": "Point",
        "coordinates": [
          -97.743042,
          30.265385
        ]
      }
    }
  ]
}