MENU navbar-image

Introduction

Open data API for fuel prices, currency rates and vanlife events. Free to use with attribution (CC BY 4.0).

Welcome to the **OpenVan.camp Public API** — open data for fuel prices, currency rates and vanlife events across 85+ countries.

## License
All data is available under **[CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)**.
You are free to use it in your apps, bots, and articles — please cite **OpenVan.camp (openvan.camp)** as the source.

## Base URL
All endpoints are available at `https://openvan.camp`.

## Authentication
No authentication required. All endpoints are public.

## Rate Limits
No strict rate limits. Data is cached — please don't poll more often than every 10 minutes.

## Attribution
Every response includes an `_attribution` object with license and attribution details:

```json
"_attribution": {
  "data_source": "openvan.camp",
  "license": "CC BY 4.0",
  "attribution_url": "https://openvan.camp/",
  "attribution_html": "Data: <a href=\"https://openvan.camp/\">OpenVan.camp</a> (CC BY 4.0)"
}
```

Pass `?source=yoursite.com` to identify your integration — no registration required. Your value is echoed back as `_attribution.your_source`:

```
GET /api/fuel/prices?source=myapp.com
```

<aside>Code examples are shown in the right panel. Switch language with the tabs at the top right.</aside>

Authenticating requests

This API is not authenticated.

Currency Rates

Get currency rates

Returns exchange rates for 150+ currencies relative to EUR. Data is fetched from multiple open-source APIs with automatic fallback. Cached for 25 hours, refreshed daily at 07:00.

Example request:
curl --request GET \
    --get "https://openvan.camp/api/currency/rates" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/currency/rates"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/currency/rates'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200, Success):


{
    "success": true,
    "rates": {
        "EUR": 1,
        "USD": 1.08,
        "GBP": 0.85,
        "RUB": 98.5,
        "TRY": 35.2,
        "GEL": 2.95,
        "KZT": 520,
        "UAH": 42.5
    },
    "cached": true,
    "updated_at": "2026-03-15T09:00:00+00:00"
}
 

Request      

GET api/currency/rates

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Endpoints

GET api/geo

Example request:
curl --request GET \
    --get "https://openvan.camp/api/geo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/geo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/geo'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: max-age=0, no-store, private
content-type: application/json
access-control-allow-origin: *
 

{
    "country": null
}
 

Request      

GET api/geo

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/map/data

Example request:
curl --request GET \
    --get "https://openvan.camp/api/map/data" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/map/data"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/map/data'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "events": [
        {
            "lat": 36.885566,
            "lng": 30.666412,
            "title": "Camp&Nature Antalya 2026",
            "slug": "campnature-antalya-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "TR",
            "flag": "🇹🇷"
        },
        {
            "lat": 44.5115827,
            "lng": 11.360658,
            "title": "Fit Your Camper",
            "slug": "fit-camper-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "IT",
            "flag": "🇮🇹"
        },
        {
            "lat": 38.8553291,
            "lng": -104.7541445,
            "title": "Colorado Springs RV Show",
            "slug": "colorado-springs-rv-show-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "US",
            "flag": "🇺🇸"
        },
        {
            "lat": 48.7751564,
            "lng": -123.6987965,
            "title": "Vancouver Island Outdoor Show 2026",
            "slug": "vancouver-island-outdoor-show-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "CA",
            "flag": "🇨🇦"
        },
        {
            "lat": 60.7892,
            "lng": 11.0932,
            "title": "Fritid og Caravanmessen 2026",
            "slug": "fritid-og-caravanmessen-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "NO",
            "flag": "🇳🇴"
        },
        {
            "lat": 46.617608,
            "lng": 14.3042208,
            "title": "Freizeitmesse Klagenfurt 2026",
            "slug": "freizeitmesse-klagenfurt-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "AT",
            "flag": "🇦🇹"
        },
        {
            "lat": 35.7335,
            "lng": -81.3415,
            "title": "Mega RV Show - Country 103.7",
            "slug": "mega-rv-show-country-1037-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "US",
            "flag": "🇺🇸"
        },
        {
            "lat": 52.6834738,
            "lng": 5.8825972,
            "title": "Campervan Days 2026",
            "slug": "campervan-days-2026",
            "type": "event",
            "event_type": "festival",
            "status": "upcoming",
            "country_code": "NL",
            "flag": "🇳🇱"
        },
        {
            "lat": 48.0577,
            "lng": -1.7326,
            "title": "Vanlife Expo Rennes 2026",
            "slug": "vanlife-expo-rennes-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "FR",
            "flag": "🇫🇷"
        },
        {
            "lat": 47.433655,
            "lng": 9.3863783,
            "title": "OCA 2026",
            "slug": "oca-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "CH",
            "flag": "🇨🇭"
        },
        {
            "lat": 32.432909,
            "lng": -99.69401,
            "title": "Abilene Boat & RV Show",
            "slug": "abilene-boat-rv-show-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "US",
            "flag": "🇺🇸"
        },
        {
            "lat": 42.1579214,
            "lng": -78.7151629,
            "title": "14th annual Allegany RV & Boat Show",
            "slug": "14th-annual-allegany-rv-boat-show-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "US",
            "flag": "🇺🇸"
        },
        {
            "lat": 52.3401908,
            "lng": -1.5266333,
            "title": "National Motorhome, Campervan & Camping Exhibition 2026",
            "slug": "national-motorhome-campervan-camping-exhibition-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "GB",
            "flag": "🇬🇧"
        },
        {
            "lat": 52.4937701,
            "lng": 13.3084777,
            "title": "Motorhome Season Start at DEHN Wohnmobile - Meetingpoint Brandenburg",
            "slug": "wohnmobilsaisonstart-bei-dehn-wohnmobile-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "DE",
            "flag": "🇩🇪"
        },
        {
            "lat": 45.5084288,
            "lng": 11.4706863,
            "title": "Spring Festival at Bonometti Centrocaravan",
            "slug": "festa-di-primavera-presso-bonometti-centrocaravan-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "IT",
            "flag": "🇮🇹"
        },
        {
            "lat": 40.2302891,
            "lng": 29.0678988,
            "title": "Karavan Show Eurasia Bursa 2026",
            "slug": "karavan-show-eurasia-bursa-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "TR",
            "flag": "🇹🇷"
        },
        {
            "lat": 43.2316,
            "lng": 0.0781,
            "title": "Camping-Car Tour in Tarbes",
            "slug": "campingcar-tour-de-tarbes-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "FR",
            "flag": "🇫🇷"
        },
        {
            "lat": 52.1097849,
            "lng": 20.8324581,
            "title": "Camper & Caravan Show 2026",
            "slug": "camper-caravan-show-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "PL",
            "flag": "🇵🇱"
        },
        {
            "lat": 55.606274,
            "lng": 11.950974,
            "title": "Danish Outdoor Festival 2026",
            "slug": "danish-outdoor-festival-2026",
            "type": "event",
            "event_type": "festival",
            "status": "upcoming",
            "country_code": "DK",
            "flag": "🇩🇰"
        },
        {
            "lat": 52.049,
            "lng": 20.772,
            "title": "Camper Caravan Show Warsaw 2026",
            "slug": "camper-caravan-show-warsaw-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "PL",
            "flag": "🇵🇱"
        },
        {
            "lat": 42.673,
            "lng": 23.401,
            "title": "Camping & Caravaning Expo Sofia",
            "slug": "camping-caravaning-expo-sofia-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "BG",
            "flag": "🇧🇬"
        },
        {
            "lat": 58.3164277,
            "lng": 11.7208129,
            "title": "Bohusläns Husvagns- och Husbilsmässa 2026",
            "slug": "bohuslaens-husvagns-och-husbilsmaessa-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "SE",
            "flag": "🇸🇪"
        },
        {
            "lat": -33.82304298,
            "lng": 151.02599706,
            "title": "Caravan Camping Holiday Supershow 2026 in Sydney",
            "slug": "caravan-camping-holiday-supershow-2026-avtodoma",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "AU",
            "flag": "🇦🇺"
        },
        {
            "lat": 47.1840441,
            "lng": -122.2943071,
            "title": "Puyallup Home & RV Show",
            "slug": "puyallup-home-rv-show-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "US",
            "flag": "🇺🇸"
        },
        {
            "lat": 41.0162938,
            "lng": 28.9826435,
            "title": "NaturFest Kamp Karavan ve Doğa Sporları Fuarı 2026",
            "slug": "naturfest-kamp-karavan-ve-doga-sporlari-fuari-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "TR",
            "flag": "🇹🇷"
        },
        {
            "lat": 51.05623686,
            "lng": -0.08810043,
            "title": "Campervan Campout 2026 - vanlife festival",
            "slug": "campervan-campout-2026-festival-vanlayferov",
            "type": "event",
            "event_type": "festival",
            "status": "upcoming",
            "country_code": "GB",
            "flag": "🇬🇧"
        },
        {
            "lat": 55.619914,
            "lng": 8.119318,
            "title": "Van Life & Barbeque Vejers 2026",
            "slug": "van-life-barbeque-vejers-2026",
            "type": "event",
            "event_type": "festival",
            "status": "upcoming",
            "country_code": "DK",
            "flag": "🇩🇰"
        },
        {
            "lat": 36.8414197,
            "lng": -2.4628135,
            "title": "Almería Aventura Expo & Caravaning 2026",
            "slug": "almeria-aventura-expo-caravaning-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "ES",
            "flag": "🇪🇸"
        },
        {
            "lat": 45.1546344,
            "lng": 5.7352277,
            "title": "Vanlife Expo Grenoble 2026",
            "slug": "vanlife-expo-grenoble-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "FR",
            "flag": "🇫🇷"
        },
        {
            "lat": 52.1651607,
            "lng": 21.0159229,
            "title": "Warsaw Caravaning Festival 2026",
            "slug": "warsaw-caravaning-festival-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "PL",
            "flag": "🇵🇱"
        },
        {
            "lat": 57.073778,
            "lng": 59.524278,
            "title": "CosmoFest Vanlife Ural 2026",
            "slug": "kosmofest-venlayf-ural-2026",
            "type": "event",
            "event_type": "festival",
            "status": "upcoming",
            "country_code": "RU",
            "flag": "🇷🇺"
        },
        {
            "lat": 39.9061511,
            "lng": 116.2419551,
            "title": "14th China International RV Exhibition (AIC) 2026",
            "slug": "aic2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "CN",
            "flag": "🇨🇳"
        },
        {
            "lat": 51.45606202,
            "lng": -1.30323543,
            "title": "Southern Motorhome & Campervan Show 2026 in Newbury",
            "slug": "southern-motorhome-campervan-show-nyuberi-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "GB",
            "flag": "🇬🇧"
        },
        {
            "lat": 35.1446567,
            "lng": -111.6908974,
            "title": "Overland Expo West 2026",
            "slug": "overland-expo-west-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "US",
            "flag": "🇺🇸"
        },
        {
            "lat": -43.545762,
            "lng": 172.601278,
            "title": "NZMCA Motorhome, Caravan & Leisure Show Christchurch 2026",
            "slug": "nzmca-motorhome-caravan-leisure-show-christchurch-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "NZ",
            "flag": "🇳🇿"
        },
        {
            "lat": 34.4785428,
            "lng": 136.5113483,
            "title": "EV Camp VISON 2026 ~ All Manufacturers Gather! Large-Scale Offline Meetup & Car Camping ~",
            "slug": "ev-camp-vison-2026-manufacturers-gather",
            "type": "event",
            "event_type": "festival",
            "status": "upcoming",
            "country_code": "JP",
            "flag": "🇯🇵"
        },
        {
            "lat": 32.6450475,
            "lng": 130.6341345,
            "title": "Kyushu Camping Car Show 2026",
            "slug": "event-2026-12",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "JP",
            "flag": "🇯🇵"
        },
        {
            "lat": 55.840364,
            "lng": 37.479165,
            "title": "HermesFest 2026 — festival of motorhomes and travelers",
            "slug": "germesfest-2026-festival-avtodomov",
            "type": "event",
            "event_type": "festival",
            "status": "upcoming",
            "country_code": "RU",
            "flag": "🇷🇺"
        },
        {
            "lat": 56.1972702,
            "lng": 15.2859789,
            "title": "Overland Adventure Expo 2026",
            "slug": "overland-adventure-expo-2026",
            "type": "event",
            "event_type": "festival",
            "status": "upcoming",
            "country_code": "SE",
            "flag": "🇸🇪"
        },
        {
            "lat": 37.6686419,
            "lng": 126.7442989,
            "title": "GOCAF KINTEX 2026",
            "slug": "gocaf-kintex-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "KR",
            "flag": "🇰🇷"
        },
        {
            "lat": 42.233652,
            "lng": -8.6478665,
            "title": "Salón Atlántico del Caravaning 2026",
            "slug": "salon-atlantico-del-caravaning-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "ES",
            "flag": "🇪🇸"
        },
        {
            "lat": 55.100499,
            "lng": 38.766536,
            "title": "Caravanex 2026",
            "slug": "caravanex-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "RU",
            "flag": "🇷🇺"
        },
        {
            "lat": 54.001278,
            "lng": 27.029049,
            "title": "VanLife Belarus 2026",
            "slug": "vanlife-belarus-2026",
            "type": "event",
            "event_type": "festival",
            "status": "upcoming",
            "country_code": "BY",
            "flag": "🇧🇾"
        },
        {
            "lat": 52.7196,
            "lng": -2.769,
            "title": "Vanlife Festival 2026",
            "slug": "vanlife-festival-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "GB",
            "flag": "🇬🇧"
        },
        {
            "lat": 34.3917241,
            "lng": 132.4517589,
            "title": "Hiroshima Camping Car Fair 2026",
            "slug": "event-2026-8",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "JP",
            "flag": "🇯🇵"
        },
        {
            "lat": -27.4503048,
            "lng": 153.0327621,
            "title": "Let's Go Queensland Caravan & Camping Supershow 2026",
            "slug": "lets-go-queensland-caravan-camping-supershow-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "AU",
            "flag": "🇦🇺"
        },
        {
            "lat": 50.189943,
            "lng": 10.121078,
            "title": "ABENTEUER & ALLRAD 2026",
            "slug": "abenteuer-allrad-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "DE",
            "flag": "🇩🇪"
        },
        {
            "lat": 48.649518,
            "lng": -2.0260409,
            "title": "Breizh Vanlife Festival 2026",
            "slug": "breizh-vanlife-festival-2026",
            "type": "event",
            "event_type": "festival",
            "status": "upcoming",
            "country_code": "FR",
            "flag": "🇫🇷"
        },
        {
            "lat": 50.0854957,
            "lng": 8.4450832,
            "title": "ADAC Camper of the Year 2026 Preliminary Round in Hesse",
            "slug": "adac-camper-des-jahres-2026-vorrunde-hessen",
            "type": "event",
            "event_type": "festival",
            "status": "upcoming",
            "country_code": "DE",
            "flag": "🇩🇪"
        },
        {
            "lat": 45.1068801,
            "lng": 38.9705848,
            "title": "OTPUSK Expo&Fest 2026",
            "slug": "otpusk-expofest-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "RU",
            "flag": "🇷🇺"
        },
        {
            "lat": 51.207191,
            "lng": -1.6085264,
            "title": "Vanlove Festival 2026",
            "slug": "vanlove-festival-2026",
            "type": "event",
            "event_type": "festival",
            "status": "upcoming",
            "country_code": "GB",
            "flag": "🇬🇧"
        },
        {
            "lat": 37.2669788,
            "lng": 126.997266,
            "title": "GOCAF Suwon Season 2 2026",
            "slug": "gocaf-suwon-season-2-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "KR",
            "flag": "🇰🇷"
        },
        {
            "lat": 48.3259142,
            "lng": 16.0318912,
            "title": "Adventure Allrad Austria 2026",
            "slug": "adventure-allrad-austria-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "AT",
            "flag": "🇦🇹"
        },
        {
            "lat": 54.1345,
            "lng": -0.689,
            "title": "VanLife Fest 2026",
            "slug": "vanlife-fest-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "GB",
            "flag": "🇬🇧"
        },
        {
            "lat": 44.236747,
            "lng": -121.1842508,
            "title": "Overland Expo PNW 2026",
            "slug": "overland-expo-pnw-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "US",
            "flag": "🇺🇸"
        },
        {
            "lat": 52.6906,
            "lng": -2.3418,
            "title": "Camper Jam 2026",
            "slug": "camper-jam-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "GB",
            "flag": "🇬🇧"
        },
        {
            "lat": 55.0938743,
            "lng": 38.7670121,
            "title": "Travel Trailers 2026",
            "slug": "zhilye-pritsepy-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "RU",
            "flag": "🇷🇺"
        },
        {
            "lat": 3.1516964,
            "lng": 101.6942371,
            "title": "Outdoor Expo Malaysia 2026",
            "slug": "outdoor-expo-malaysia-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "MY",
            "flag": "🇲🇾"
        },
        {
            "lat": 40.4426066,
            "lng": -104.9870168,
            "title": "Overland Expo Mountain West 2026",
            "slug": "overland-expo-mountain-west-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "US",
            "flag": "🇺🇸"
        },
        {
            "lat": -25.8094725,
            "lng": 28.1113097,
            "title": "South African 4x4 & Outdoor Show 2026",
            "slug": "south-african-4x4-outdoor-show-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "ZA",
            "flag": "🇿🇦"
        },
        {
            "lat": 57.788655,
            "lng": 14.2276345,
            "title": "Elmia Husvagn & Husbil 2026",
            "slug": "elmia-husvagn-husbil-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "SE",
            "flag": "🇸🇪"
        },
        {
            "lat": 40.8712023,
            "lng": 29.2356794,
            "title": "Marmara Kamp & Karavan ve Doğa Sporları Fuarı 2026",
            "slug": "marmara-kamp-karavan-ve-doga-sporlari-fuari-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "TR",
            "flag": "🇹🇷"
        },
        {
            "lat": 23.09790709,
            "lng": 113.36828641,
            "title": "COSP Guangzhou 2026 - camping and outdoor solutions expo",
            "slug": "cosp-guangzhou-2026-vystavka-kempinga",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "CN",
            "flag": "🇨🇳"
        },
        {
            "lat": 44.8466462,
            "lng": 10.2903178,
            "title": "Camper Show - Caravans, Accessories, Routes and Destinations",
            "slug": "salone-del-camper-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "IT",
            "flag": "🇮🇹"
        },
        {
            "lat": 59.983948,
            "lng": 10.973887,
            "title": "Caravan Xpo 2026",
            "slug": "caravan-xpo-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "NO",
            "flag": "🇳🇴"
        },
        {
            "lat": 58.6414755,
            "lng": 61.8021546,
            "title": "VanLife Ural: Autumn 2026",
            "slug": "venlayf-ural-osen-2026",
            "type": "event",
            "event_type": "festival",
            "status": "upcoming",
            "country_code": "RU",
            "flag": "🇷🇺"
        },
        {
            "lat": 54.2865891,
            "lng": 9.6686392,
            "title": "CARAVAN und CO Rendsburg 2026",
            "slug": "caravan-und-co-rendsburg-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "DE",
            "flag": "🇩🇪"
        },
        {
            "lat": 60.9854086,
            "lng": 25.6364163,
            "title": "Caravan Finland 2026",
            "slug": "caravan-finland-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "FI",
            "flag": "🇫🇮"
        },
        {
            "lat": 57.1856355,
            "lng": -2.1941356,
            "title": "The Getaway Show 2026",
            "slug": "getaway-show-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "GB",
            "flag": "🇬🇧"
        },
        {
            "lat": 47.8681547,
            "lng": -121.9887365,
            "title": "Washington State Evergreen Spring RV Show",
            "slug": "washington-state-evergreen-spring-rv-show-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "US",
            "flag": "🇺🇸"
        },
        {
            "lat": 48.9441442,
            "lng": 2.4300174,
            "title": "Salon des Véhicules de Loisirs 2026",
            "slug": "salon-des-vehicules-de-loisirs-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "FR",
            "flag": "🇫🇷"
        },
        {
            "lat": 48.9437,
            "lng": 2.4271,
            "title": "Salon des Véhicules de Loisirs (VDL) 2026",
            "slug": "salon-des-vehicules-de-loisirs-vdl-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "FR",
            "flag": "🇫🇷"
        },
        {
            "lat": 52.089961,
            "lng": 5.1063851,
            "title": "Kampeer & Caravan Jaarbeurs 2026",
            "slug": "kampeer-caravan-jaarbeurs-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "NL",
            "flag": "🇳🇱"
        },
        {
            "lat": 48.0153735,
            "lng": 7.8398669,
            "title": "caravan live Freiburg 2026",
            "slug": "caravan-live-freiburg-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "DE",
            "flag": "🇩🇪"
        },
        {
            "lat": -37.9485992,
            "lng": 145.160819,
            "title": "Melbourne Caravan & Camping Leisurefest 2026",
            "slug": "melbourne-caravan-camping-leisurefest-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "AU",
            "flag": "🇦🇺"
        },
        {
            "lat": 36.9475051,
            "lng": 30.847705,
            "title": "JOJO Caravanport Antalya Expo 2026",
            "slug": "jojo-caravanport-antalya-expo-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "TR",
            "flag": "🇹🇷"
        },
        {
            "lat": 50.8995814,
            "lng": 4.3372731,
            "title": "Mobicar 2026",
            "slug": "mobicar-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "BE",
            "flag": "🇧🇪"
        },
        {
            "lat": 52.4028082,
            "lng": 16.9101031,
            "title": "Caravans Salon Poland 2026",
            "slug": "caravans-salon-poland-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "PL",
            "flag": "🇵🇱"
        },
        {
            "lat": 48.1520079,
            "lng": 14.0182489,
            "title": "Caravan Salon Austria 2026",
            "slug": "caravan-salon-austria-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "AT",
            "flag": "🇦🇹"
        },
        {
            "lat": 46.9593,
            "lng": 7.4673,
            "title": "Suisse Caravan Salon 2026",
            "slug": "suisse-caravan-salon-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "CH",
            "flag": "🇨🇭"
        },
        {
            "lat": 37.6840306,
            "lng": -78.9011326,
            "title": "Overland Expo East 2026",
            "slug": "overland-expo-east-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "US",
            "flag": "🇺🇸"
        },
        {
            "lat": -27.4503048,
            "lng": 153.0327621,
            "title": "Let's Go Explore Caravan & RV Expo 2026",
            "slug": "lets-go-explore-caravan-rv-expo-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "AU",
            "flag": "🇦🇺"
        },
        {
            "lat": 50.9593198,
            "lng": 10.9896749,
            "title": "Reisen & Caravan Erfurt 2026",
            "slug": "reisen-caravan-erfurt-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "DE",
            "flag": "🇩🇪"
        },
        {
            "lat": 36.1440469,
            "lng": -115.1547524,
            "title": "SEMA Show 2026",
            "slug": "sema-show-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "US",
            "flag": "🇺🇸"
        },
        {
            "lat": 24.8413865,
            "lng": 46.7332576,
            "title": "Outdream 2026",
            "slug": "outdream-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "SA",
            "flag": "🇸🇦"
        },
        {
            "lat": 49.1862,
            "lng": 16.5656,
            "title": "Caravaning Brno 2026",
            "slug": "caravaning-brno-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "CZ",
            "flag": "🇨🇿"
        },
        {
            "lat": 53.0889447,
            "lng": 8.8116907,
            "title": "CARAVAN Bremen 2026",
            "slug": "caravan-bremen-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "DE",
            "flag": "🇩🇪"
        },
        {
            "lat": 55.5705151,
            "lng": 36.832493,
            "title": "Let's go 2026",
            "slug": "poekhali-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "RU",
            "flag": "🇷🇺"
        },
        {
            "lat": 51.3963509,
            "lng": 12.3964556,
            "title": "TC: Touristik & Caravaning Leipzig 2026",
            "slug": "tc-touristik-caravaning-leipzig-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "DE",
            "flag": "🇩🇪"
        },
        {
            "lat": -25.435066,
            "lng": -49.1684116,
            "title": "Expo Motorhome Brazil 2026",
            "slug": "expo-motorhome-brazil-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "BR",
            "flag": "🇧🇷"
        },
        {
            "lat": 52.5012427,
            "lng": 13.2742108,
            "title": "OutVenture Berlin 2026",
            "slug": "outventure-berlin-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "DE",
            "flag": "🇩🇪"
        },
        {
            "lat": 37.6686419,
            "lng": 126.7442989,
            "title": "GOCAF KINTEX The Final Season 2026",
            "slug": "gocaf-kintex-final-season-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "KR",
            "flag": "🇰🇷"
        },
        {
            "lat": 40.4660174,
            "lng": -3.6131763,
            "title": "Madrid Expo Camper & Caravan 2026",
            "slug": "madrid-expo-camper-caravan-2026",
            "type": "event",
            "event_type": "expo",
            "status": "upcoming",
            "country_code": "ES",
            "flag": "🇪🇸"
        }
    ],
    "stories": [
        {
            "lat": 42.315407,
            "lng": 43.356892,
            "title": "Georgia — A Complete Guide to Motorhome Travel",
            "slug": "georgia-complete-guide-motorhome-travel",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "GE",
            "date": "2026-04-18"
        },
        {
            "lat": 36.204824,
            "lng": 138.252924,
            "title": "Compact Camper Van Based on Nissan NV200 for Daily Use",
            "slug": "compact-camper-van-based-nissan-nv200-daily-use",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-10"
        },
        {
            "lat": 48.8588897,
            "lng": 2.320041,
            "title": "Volkswagen California named 2026 Leisure Vehicle of the Year",
            "slug": "trophees-de-largus-le-volkswagen-california-sacre",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-10"
        },
        {
            "lat": 38.3436365,
            "lng": -0.4881708,
            "title": "AC-LLAR opens new dealership in Alicante",
            "slug": "la-valenciana-acllar-especializada-en-el",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-10"
        },
        {
            "lat": 50.0820384,
            "lng": 8.2416556,
            "title": "Comparison of Italy Routes Cost for Motorhomes in 2026",
            "slug": "dieselpreisschock-auf-brenner-gotthard-co-diese",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-10"
        },
        {
            "lat": 40.2231089,
            "lng": -1.977556,
            "title": "European Tour in a Bookstore Motorhome",
            "slug": "la-experiencia-de-la-ourensana-nieves-loperena",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-10"
        },
        {
            "lat": 47.4626951,
            "lng": 8.957156,
            "title": "Motorhome Shelter — Optional Referendum for Project Loan",
            "slug": "wohnmobilunterstand-fakultatives-referendum-fuer",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "CH",
            "date": "2026-04-10"
        },
        {
            "lat": 51.1098647,
            "lng": -0.5180172,
            "title": "Another Traveller Invasion Strikes Surrey Village",
            "slug": "another-traveller-invasion-strikes-leafy-village",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-10"
        },
        {
            "lat": 51.3406713,
            "lng": 7.0439912,
            "title": "All three motorhome parking spaces in Velbert left without water",
            "slug": "das-ist-ein-unding-alle-drei",
            "type": "news",
            "category_slug": "closing",
            "category_name": "Closures",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-10"
        },
        {
            "lat": 41.87194,
            "lng": 12.56738,
            "title": "Fendt Saphir 560 SFD: A Used Caravan for a Couple",
            "slug": "fendt-saphir-560-sfd-una-roulotte-usata-per-la",
            "type": "news",
            "category_slug": "review",
            "category_name": "Reviews",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-10"
        },
        {
            "lat": 35.86166,
            "lng": 104.195397,
            "title": "Analysis of Wuling Guangguang EV Motorhome Conversion",
            "slug": "analysis-wuling-guangguang-ev-motorhome-conversion",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "CN",
            "date": "2026-04-10"
        },
        {
            "lat": 40.2231089,
            "lng": -1.977556,
            "title": "Cost and Duration of Ferry Travel to the Canary Islands with a Motorhome or Camper Van",
            "slug": "si-te-quieres-pegar-unas-vacaciones-en-canarias",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-09"
        },
        {
            "lat": 41.8500997,
            "lng": -71.4661703,
            "title": "RV catches fire outside home in North Providence",
            "slug": "rv-outside-catches-fire-north-providence-home-wjar",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-09"
        },
        {
            "lat": 59.808313,
            "lng": 10.6378345,
            "title": "Pensioners Elin and Rune bought a motorhome and found a project",
            "slug": "nesodden-kultur-elin-og-rune-ble-pensjonister",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "NO",
            "date": "2026-04-09"
        },
        {
            "lat": 52.132633,
            "lng": 5.291266,
            "title": "The Most Affordable EVs for Towing Caravans",
            "slug": "dit-zijn-nu-de-goedkoopste-evs-die-een-caravan",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "NL",
            "date": "2026-04-09"
        },
        {
            "lat": 29.834772,
            "lng": -94.1704496,
            "title": "Homeless man and dog receive RV from strangers",
            "slug": "homeless-man-gifted-rv-group-strangers-jefferson",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-09"
        },
        {
            "lat": 44.9951037,
            "lng": -71.5327724,
            "title": "Fire in an RV in York County",
            "slug": "photos-fire-bursts-through-roof-rv-york-county",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-09"
        },
        {
            "lat": 41.5329762,
            "lng": -79.2640912,
            "title": "Massive Caravan with 'Armored' Undercarriage",
            "slug": "ez-massziv-lakokocsi-hozza-az-oetcsillagos",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-09"
        },
        {
            "lat": 47.3744489,
            "lng": 8.5410422,
            "title": "Spaniard lives in a motorhome and works in Switzerland",
            "slug": "pablo-vivo-en-una-autocaravana-y-trabajo-en-suiza",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "CH",
            "date": "2026-04-09"
        },
        {
            "lat": 38.4325896,
            "lng": -82.0201368,
            "title": "Fire destroys motorhome at Hurricane RV park",
            "slug": "early-morning-fire-destroys-hurricane-rv-damages",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-09"
        },
        {
            "lat": 36.204824,
            "lng": 138.252924,
            "title": "PARKS PROJECT JAPAN and GORDON MILLER Launch Collaborative Project",
            "slug": "parks-project-japan-gordon-miller-launch",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-09"
        },
        {
            "lat": 51.1901933,
            "lng": 5.5177727,
            "title": "Caravan burned out in Kaulille",
            "slug": "bocholt-kampeerwagen-uitgebrand-kaulille-de",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "BE",
            "date": "2026-04-09"
        },
        {
            "lat": 47.2713325,
            "lng": 8.6450563,
            "title": "Motorhome in the slipstream: risky or practical fuel-saving trick?",
            "slug": "wohnmobil-im-windschatten-riskant-oder",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "CH",
            "date": "2026-04-09"
        },
        {
            "lat": 52.3754483,
            "lng": 10.5705166,
            "title": "FRITZ!Box 6825 4G Test: WLAN Hub for Caravans and Smart Home Backup",
            "slug": "fritzbox-6825-4g-im-test-wlanzentrale-fuer-den",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-09"
        },
        {
            "lat": 47.6291892,
            "lng": 9.9584761,
            "title": "German motorhome provider files for insolvency",
            "slug": "deutscher-wohnmobilanbieter-ist-insolvent-fuer",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-09"
        },
        {
            "lat": 51.05536,
            "lng": 18.4485221,
            "title": "Caravan Fire in Praszka",
            "slug": "pozar-przyczepy-kempingowej-w-praszce-na",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "PL",
            "date": "2026-04-09"
        },
        {
            "lat": 39.6036596,
            "lng": -8.4150492,
            "title": "Tomar: What Future for the Motorhome Park?",
            "slug": "tomar-parque-de-autocaravanas-que-futuro-o",
            "type": "news",
            "category_slug": "closing",
            "category_name": "Closures",
            "category_color": "#4E8097",
            "country_code": "PT",
            "date": "2026-04-09"
        },
        {
            "lat": 48.0517429,
            "lng": -122.1768209,
            "title": "Honda Continues Base Station Camper Development Despite EV Cancellation",
            "slug": "honda-still-wants-sell-weird-camper-trailer",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-09"
        },
        {
            "lat": 55.088611,
            "lng": -7.474167,
            "title": "Renewed appeal for stolen caravan",
            "slug": "renewed-appeal-stolen-caravan-donegal-daily",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "IE",
            "date": "2026-04-09"
        },
        {
            "lat": 31.7819242,
            "lng": -95.6258199,
            "title": "I-75 reopens after motorhome overturns in Anderson County",
            "slug": "i75-reopens-after-camper-overturns-anderson",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-09"
        },
        {
            "lat": 35.86166,
            "lng": 104.195397,
            "title": "Sale of 2024 BYD T5 Motorhome",
            "slug": "sale-2024-byd-t5-motorhome",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "CN",
            "date": "2026-04-09"
        },
        {
            "lat": 47.1815359,
            "lng": 5.3496636,
            "title": "France finds way to avoid 40,000 euro tax on vans",
            "slug": "en-francia-han-encontrado-un-truco-para-ahorrarse",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-09"
        },
        {
            "lat": 36.0129082,
            "lng": -5.6050213,
            "title": "Reader Reveals His Secret Campsite Tip in Andalusia",
            "slug": "promobilleser-verraet-seinen",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-09"
        },
        {
            "lat": 51.4471565,
            "lng": 4.7390521,
            "title": "Homemade Solar Power Station for Camper",
            "slug": "deze-man-bedacht-een-geniale-truc-om-zijn",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "BE",
            "date": "2026-04-09"
        },
        {
            "lat": 35.86166,
            "lng": 104.195397,
            "title": "Cross-Border Audit Issues at New Giao RV",
            "slug": "crossborder-audit-issues-new-giao-rv",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "CN",
            "date": "2026-04-09"
        },
        {
            "lat": 37.3696865,
            "lng": 27.2684841,
            "title": "Didim Begins Notification Process for Caravan and Tent Owners",
            "slug": "didim-zabitasi-karavan-ve-cadircilara-tebligat",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "TR",
            "date": "2026-04-09"
        },
        {
            "lat": 42.41608,
            "lng": 1.7935563,
            "title": "Tougher Rules for Motorhomes in Spain",
            "slug": "vanskeligere-bobiler-spania-spaniaposten",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-09"
        },
        {
            "lat": 51.5348835,
            "lng": 7.689014,
            "title": "Eberspächer Zeliox NEO 4000: Power Station for Motorhomes",
            "slug": "eberspaecher-zeliox-neo-4000-energia-illimitata",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-09"
        },
        {
            "lat": 55.625578,
            "lng": 37.6063916,
            "title": "Changan Peak View RV enters the Russian market",
            "slug": "changan-peak-view-rv-vykhodit-rossiyskiy-rynok",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "RU",
            "date": "2026-04-09"
        },
        {
            "lat": 38.3436365,
            "lng": -0.4881708,
            "title": "Camper Rental in Alicante",
            "slug": "alquiler-de-camper-en-alicante-descubre-la-costa",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-09"
        },
        {
            "lat": 36.7173241,
            "lng": 25.3331121,
            "title": "Greece changes rules for campers",
            "slug": "griechenland-aendert-regeln-neue",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "GR",
            "date": "2026-04-09"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Electric Camper Van Based on Van with 372 km Range",
            "slug": "este-modelo-pasa-de-furgoneta-camper-electrica-y",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-09"
        },
        {
            "lat": 53.0747383,
            "lng": 6.3931283,
            "title": "Motorhome owners alert: popular base vehicle for conversions may be a fire hazard",
            "slug": "campereigenaren-opgelet-de-populairste-camper-van",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "NL",
            "date": "2026-04-09"
        },
        {
            "lat": 31.7819242,
            "lng": -95.6258199,
            "title": "How to Save Money on Summer and World Cup Travel",
            "slug": "save-money-summer-world-cup-travel-boston-globe",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-09"
        },
        {
            "lat": 54.4788836,
            "lng": -8.278252,
            "title": "Campervan owner fined for causing obstruction in empty car park",
            "slug": "campervan-owner-fined-causing-obstruction-empty",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "IE",
            "date": "2026-04-09"
        },
        {
            "lat": 40.7574495,
            "lng": 29.8307628,
            "title": "Caravan Occupation of Derince Parking Lot Ends",
            "slug": "derince-otoparkinda-karavan-isgali-son-buldu",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "TR",
            "date": "2026-04-09"
        },
        {
            "lat": 37.8709542,
            "lng": -96.2471338,
            "title": "RV and Trailer Sales Down 24.12% in February",
            "slug": "ssi-reports-retail-sales-down-2412-yoy-february",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-09"
        },
        {
            "lat": 32.182598,
            "lng": -95.7893178,
            "title": "Encore RV Expands Dealer Network in Colorado",
            "slug": "encore-rv-expands-western-presence-new-colorado",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-09"
        },
        {
            "lat": 31.7819242,
            "lng": -95.6258199,
            "title": "Camco Expands Sales Leadership Team",
            "slug": "camco-expands-sales-leadership-team-rv-pro",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-09"
        },
        {
            "lat": 31.7819242,
            "lng": -95.6258199,
            "title": "RVTI Seeking Participants for Spanish Exam Pilot",
            "slug": "rvti-seeking-participants-spanish-exam-pilot-rv",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-09"
        },
        {
            "lat": 31.7819242,
            "lng": -95.6258199,
            "title": "Dometic Introduces New All-In-One SlideTopper Hardware Kit",
            "slug": "dometic-touts-new-allinone-slidetopper-hardware",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-09"
        },
        {
            "lat": 55.378051,
            "lng": -3.435973,
            "title": "Camper Van Based on VW Crafter for Self-Sufficient Getaways",
            "slug": "ezzel-lakalyos-furgonnal-elvonulhatsz-varos",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-09"
        },
        {
            "lat": 51.5348835,
            "lng": 7.689014,
            "title": "SOD Peak: German 6x6 motorhome with 15.6-liter diesel engine",
            "slug": "cuesta-como-un-chalet-pesa-como-un-autobus-urbano",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-09"
        },
        {
            "lat": 39.787646,
            "lng": 8.862032,
            "title": "New motorhome area to open in Albagiara",
            "slug": "albagiara-arrivo-una-nuova-area-camper-per-il",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-09"
        },
        {
            "lat": 60.3162644,
            "lng": 5.35439,
            "title": "Diesel Leak in Nesttun: Fire Department Dispatched After Motorhome Incident",
            "slug": "nyheter-fana-diesellekkasje-pa-nesttun",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "NO",
            "date": "2026-04-09"
        },
        {
            "lat": 50.5032737,
            "lng": 13.636112,
            "title": "Old bus converted into caravan for family of five",
            "slug": "stary-autobus-z-vrakoviste-prestaveli-na-snovy",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "CZ",
            "date": "2026-04-09"
        },
        {
            "lat": 42.1051532,
            "lng": 140.5765977,
            "title": "Honda Continues Development of Base Station Camper",
            "slug": "honda-still-serious-about-camper-designed-go",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-09"
        },
        {
            "lat": 47.6038321,
            "lng": -122.330062,
            "title": "iKamper Unveils Updated Skycamp 4.0 Rooftop Tent Series",
            "slug": "ikamper-skycamp-40-elevates-iconic-rooftop-tent",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-09"
        },
        {
            "lat": 51.4471565,
            "lng": 4.7390521,
            "title": "Sales of new caravans and motorhomes increased in March 2026",
            "slug": "meer-nieuwe-caravans-en-campers-verkocht-maart",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "BE",
            "date": "2026-04-09"
        },
        {
            "lat": 37.7699483,
            "lng": 117.6199106,
            "title": "Ancient Wudi City Opens Campsite for Motorhomes",
            "slug": "ancient-wudi-city-opens-campsite-motorhomes",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "CN",
            "date": "2026-04-09"
        },
        {
            "lat": 43.6068643,
            "lng": -8.143537,
            "title": "Fire destroys motorhome in Valdoviño overnight",
            "slug": "un-incendio-calcina-una-autocaravana-en-valdovino",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-09"
        },
        {
            "lat": 54.3503431,
            "lng": 10.3381282,
            "title": "Payload Champions: 12 Camper Vans with Over 750 kg of Reserve Capacity",
            "slug": "zuladungschampions-12-campingbusse-mit-mehr-als",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-09"
        },
        {
            "lat": 34.3663773,
            "lng": -89.5187664,
            "title": "Former Neighbors Open Oxford's First RV Resort",
            "slug": "two-former-neighbors-bring-oxfords-first-rv",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-09"
        },
        {
            "lat": 41.6012796,
            "lng": -85.8590603,
            "title": "RV/MH Hall of Fame Team Updates Contact Information",
            "slug": "rvmh-hall-fame-team-shares-new-contact",
            "type": "news",
            "category_slug": "other",
            "category_name": "Other",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-09"
        },
        {
            "lat": 51.8189991,
            "lng": -0.4580685,
            "title": "Residents oppose illegal caravan camp on field",
            "slug": "upset-residents-blast-illegal-camp-caravans-after",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-09"
        },
        {
            "lat": 51.165691,
            "lng": 10.451526,
            "title": "Volkswagen updates the Caddy: a versatile vehicle for vanlife",
            "slug": "volkswagen-fait-evoluer-le-caddy-un-ludospace",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-09"
        },
        {
            "lat": 52.3152187,
            "lng": 0.0170499,
            "title": "Derbyshire startup enters motorhome and campervan rental market",
            "slug": "derbyshire-startup-firm-firm-takes-aim-50m",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-09"
        },
        {
            "lat": 61.52401,
            "lng": 105.318756,
            "title": "Toy Factory to launch sales of two LAIKA Ecovip Titanio motorhomes",
            "slug": "toy-factory-otkroet-prodazhi-dvukh-avtodomov",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "RU",
            "date": "2026-04-09"
        },
        {
            "lat": 40.2231089,
            "lng": -1.977556,
            "title": "Motorhome sector entrepreneur: fuel price rise has not stopped travel",
            "slug": "diego-saenz-garcia-empresario-del-sector",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-09"
        },
        {
            "lat": 43.6463558,
            "lng": 0.5850507,
            "title": "Gas Cylinder Explosion in a Motorhome",
            "slug": "explosion-dune-bouteille-de-gaz-dans-un",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-09"
        },
        {
            "lat": 31.7819242,
            "lng": -95.6258199,
            "title": "Fleetwood Reimagines Its Class C Motorhome Lineup",
            "slug": "fleetwood-reimagines-class-c-rv-lineup-rv-pro",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-09"
        },
        {
            "lat": 47.9452664,
            "lng": 7.9988315,
            "title": "Motorhome and Truck Collision Causes Full Closure of B 31 Highway",
            "slug": "polfr-buchenbach-vollsperrung-nach-verkehrsunfall",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-09"
        },
        {
            "lat": 39.1873894,
            "lng": 16.8782819,
            "title": "Crotone: Food stolen from charity motorhome",
            "slug": "ruba-camper-di-associazione-e-cibo-per-poveri",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-09"
        },
        {
            "lat": 43.395161,
            "lng": -4.3505152,
            "title": "Government processes second motorhome area in Oyambre Park",
            "slug": "el-gobierno-tramita-una-segunda-area-de",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-09"
        },
        {
            "lat": 36.204824,
            "lng": 138.252924,
            "title": "Rules for Overnight Parking at Roadside Stations in Japan",
            "slug": "rules-overnight-parking-roadside-stations-japan",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-09"
        },
        {
            "lat": 49.9157398,
            "lng": 7.0708181,
            "title": "New Parking Rules for Motorhomes in Bernkastel-Kues",
            "slug": "mehr-parkmoeglichkeiten-neue-regeln-fuer",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-09"
        },
        {
            "lat": 54.5101087,
            "lng": 36.2598115,
            "title": "Traveler with a mini-house on wheels reaches Kaluga",
            "slug": "puteshestvennik-minidomom-kolesakh-dobralsya",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "RU",
            "date": "2026-04-09"
        },
        {
            "lat": 48.6033115,
            "lng": -1.7763753,
            "title": "Highly Rated Motorhome Site in Brittany",
            "slug": "en-bretagne-cette-aire-pas-tres-chere-pour",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-09"
        },
        {
            "lat": 34.7150958,
            "lng": 136.9300341,
            "title": "New RV Park in Aichi Prefecture Features Vintage Airstream Trailers",
            "slug": "new-rv-park-aichi-prefecture-features-vintage",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-09"
        },
        {
            "lat": 46.2473782,
            "lng": 9.1458622,
            "title": "Buyers paid for a motorhome they never received, seller disappears",
            "slug": "vende-camper-fantasma-poi-sparisce-nel-nulla",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "CH",
            "date": "2026-04-09"
        },
        {
            "lat": 36.204824,
            "lng": 138.252924,
            "title": "Compact Motorhome Based on Suzuki Every Wagon Features Bunk Beds and TV",
            "slug": "compact-motorhome-based-suzuki-wagon-features",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-09"
        },
        {
            "lat": 45.0901955,
            "lng": 14.5496681,
            "title": "Gust of wind blows caravan over gorge: family in mortal danger",
            "slug": "sturmboee-bringt-wohnwagen-ueber-schlucht-familie",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "HR",
            "date": "2026-04-09"
        },
        {
            "lat": 50.8323531,
            "lng": 12.918914,
            "title": "New Dispute Over Motorhome Parking Spaces in Chemnitz",
            "slug": "neuer-rathausaerger-um-stellplaetze-fuer",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-09"
        },
        {
            "lat": 42.3636176,
            "lng": 1.8713459,
            "title": "On the Camino de Santiago with a Motorhome",
            "slug": "mit-dem-wohnmobil-auf-dem-jakobsweg",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-09"
        },
        {
            "lat": 52.9240717,
            "lng": 6.7905566,
            "title": "Campground in the Netherlands with rotating pitches for motorhomes",
            "slug": "nuuverstee-le-camping-aux-paysbas-avec",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "NL",
            "date": "2026-04-09"
        },
        {
            "lat": 50.7736896,
            "lng": -1.7157711,
            "title": "Caravan site in New Forest applies for premises licence to sell alcohol",
            "slug": "caravan-site-new-forest-seeking-premises-licence",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-09"
        },
        {
            "lat": 50.6383723,
            "lng": 2.3955702,
            "title": "What Makes a \"Beautiful\" Motorhome Parking Area: User Opinions",
            "slug": "questce-quune-belle-aire-de-campingcar-vous",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-09"
        },
        {
            "lat": 54.4788836,
            "lng": -8.278252,
            "title": "Permission sought for new campervan pitches in Bundoran",
            "slug": "permission-sought-new-campervan-pitches-bundoran",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "IE",
            "date": "2026-04-09"
        },
        {
            "lat": 40.2231089,
            "lng": -1.977556,
            "title": "Young Spanish woman shares expenses of living in a motorhome",
            "slug": "miriam-23-anos-vive-en-una-autocaravana-gastado",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-09"
        },
        {
            "lat": 47.7017281,
            "lng": 8.5510216,
            "title": "Why Camping Remains Popular and How It Becomes a Business",
            "slug": "warum-campen-seit-jahrzehnten-fasziniert-und-fuer",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "CH",
            "date": "2026-04-09"
        },
        {
            "lat": 54.9517941,
            "lng": -7.7354368,
            "title": "Investigation launched after caravan set alight in Letterkenny",
            "slug": "investigation-launched-after-caravan-set-alight",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "IE",
            "date": "2026-04-09"
        },
        {
            "lat": 47.65568,
            "lng": 1.491863,
            "title": "France 4 Naturisme: A Network of Nudist Campsites in France",
            "slug": "france-4-naturisme-urlaub-auf-einem",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-09"
        },
        {
            "lat": -34.5970325,
            "lng": -68.7304797,
            "title": "Carola Reyna and Boy Olmi's Motorhome Journey",
            "slug": "asi-fue-el-viaje-en-motorhome-con-el-que-carola",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "AR",
            "date": "2026-04-08"
        },
        {
            "lat": 55.1363986,
            "lng": -8.104027,
            "title": "Caravan thief pays another €500 following Falcarragh robbery",
            "slug": "caravan-thief-pays-another-500-following-brazen",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "IE",
            "date": "2026-04-08"
        },
        {
            "lat": 31.5128679,
            "lng": 34.4581358,
            "title": "Jordanian caravans shelter thousands of displaced in Gaza",
            "slug": "jordanian-caravans-shelter-thousands-displaced",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "PS",
            "date": "2026-04-08"
        },
        {
            "lat": 55.3747865,
            "lng": -7.3998451,
            "title": "Plans lodged for further campervan spaces in Malin",
            "slug": "plans-lodged-further-campervan-spaces-malin",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "IE",
            "date": "2026-04-08"
        },
        {
            "lat": 31.7766863,
            "lng": -99.4461098,
            "title": "Polydrop Trailer with Aerodynamic Design for Electric Vehicles",
            "slug": "cybertruck-yahoo",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-08"
        },
        {
            "lat": 41.9239178,
            "lng": -89.0687074,
            "title": "Lane County Extends Temporary RV Dwelling Permits for 2020 Fire Survivors",
            "slug": "lane-county-extends-temporary-rv-dwelling-permits",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-08"
        },
        {
            "lat": 44.6952006,
            "lng": 10.0979869,
            "title": "Growth of the Italian motorhome industry",
            "slug": "camper-industria-italiana-crescita-agipress",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-08"
        },
        {
            "lat": 31.7819242,
            "lng": -95.6258199,
            "title": "Portable Power Stations for Campers: Comparison of Four Models",
            "slug": "spent-10-years-customwiring-vans-portable-power",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-08"
        },
        {
            "lat": 54.1930321,
            "lng": 37.61754,
            "title": "Man with homemade mini-house on wheels walking from Tula to Brazil",
            "slug": "muzhchina-samodelnym-minidomom-kolyosakh-idyot",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "RU",
            "date": "2026-04-08"
        },
        {
            "lat": 38.3964248,
            "lng": -0.5250339,
            "title": "Parking for motorhomes in San Vicente",
            "slug": "un-aparcamiento-para-autocaravanas-en-san-vicente",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-08"
        },
        {
            "lat": -26.205,
            "lng": 28.049722,
            "title": "Legal dispute over luxury off-road caravan",
            "slug": "legal-dispute-over-luxury-offroad-caravan",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "ZA",
            "date": "2026-04-08"
        },
        {
            "lat": 36.8414197,
            "lng": -2.4628135,
            "title": "Closure of Illegal Campsite for Motorhomes and Caravans in Almería",
            "slug": "garcia-lorca-anuncia-el-cierre-del-camping-ilegal",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-08"
        },
        {
            "lat": 38.9743901,
            "lng": 1.4197463,
            "title": "Spanish couple calculates monthly cost of living in a motorhome",
            "slug": "spaans-stel-22-rekent-uit-wat-wonen-een-camper",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-08"
        },
        {
            "lat": 49.7999154,
            "lng": 7.5916448,
            "title": "Nahemühle Campsite in Monzingen",
            "slug": "campingplatz-nahemuehle-monzingen",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-08"
        },
        {
            "lat": 36.8414197,
            "lng": -2.4628135,
            "title": "Almería bans caravans at former fairground site",
            "slug": "almeria-veta-definitivamente-las-caravanas-en-el",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-08"
        },
        {
            "lat": 47.4258096,
            "lng": 7.1291258,
            "title": "Caravans with ceiling height and bed length of at least 200 cm",
            "slug": "campen-ohne-beulen-am-kopf-wohnwagen-mit",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "CH",
            "date": "2026-04-08"
        },
        {
            "lat": 63.4010888,
            "lng": 13.0822241,
            "title": "Thule's New Rooftop Tent with a Sofa",
            "slug": "thules-new-rooftop-tent-small-comes-sofa-gear",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "SE",
            "date": "2026-04-08"
        },
        {
            "lat": -12.8901711,
            "lng": -74.3979132,
            "title": "Kia unveils electric van with modular camper conversion kit",
            "slug": "kia-y-un-modelo-que-se-transforma-en-camper",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "PE",
            "date": "2026-04-08"
        },
        {
            "lat": 35.86166,
            "lng": 104.195397,
            "title": "Maxus星际H Motorhome Discounted by 75,000 Yuan",
            "slug": "maxus-h-motorhome-discounted-75000-yuan",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "CN",
            "date": "2026-04-08"
        },
        {
            "lat": 34.3425592,
            "lng": 134.0465338,
            "title": "Japan's Environment Ministry and RV Association sign agreement to provide motorhomes for disaster response",
            "slug": "japans-environment-ministry-rv-association-sign",
            "type": "news",
            "category_slug": "other",
            "category_name": "Other",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-08"
        },
        {
            "lat": 52.3152187,
            "lng": 0.0170499,
            "title": "Motorhomes and campervans banned from popular tourist area",
            "slug": "motorhome-campervan-drivers-banned-popular",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-08"
        },
        {
            "lat": 53.8118759,
            "lng": -1.6251903,
            "title": "Unauthorised caravan site in Surrey Hills must be cleared",
            "slug": "surrey-hills-unauthorised-caravan-site-cleared",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-08"
        },
        {
            "lat": 44.811349,
            "lng": -91.4984941,
            "title": "Airstream unveils compact Basecamp 16X 2026 caravan",
            "slug": "cette-caravane-airstream-de-49m-cache-un",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-08"
        },
        {
            "lat": 31.7819242,
            "lng": -95.6258199,
            "title": "Ukrainian Refugee Installs Bathrooms in Truck Cabs",
            "slug": "ukrainian-refugee-brings-bathroom-luxury-standard",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-08"
        },
        {
            "lat": 55.3235377,
            "lng": -1.740723,
            "title": "Caravan park expansion and leisure hub plan rejected",
            "slug": "leisure-hub-caravan-park-plan-blocked-compared",
            "type": "news",
            "category_slug": "closing",
            "category_name": "Closures",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-08"
        },
        {
            "lat": 53.709807,
            "lng": 27.953389,
            "title": "Infrastructure for motorhomes is planned to be developed in Belarus",
            "slug": "infrastrukturu-avtodomov-planiruyut-razvivat",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "BY",
            "date": "2026-04-08"
        },
        {
            "lat": 51.8874333,
            "lng": 5.4372681,
            "title": "Lawsuit over excessive emissions may affect thousands of motorhomes",
            "slug": "pastand-om-hoye-utslipp-kan-omfatte-tusenvis-av",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "NL",
            "date": "2026-04-08"
        },
        {
            "lat": 45.386139,
            "lng": 10.6924039,
            "title": "Camper area in Monzambano reopens",
            "slug": "riapre-dopo-mesi-di-stop-e-con-una-nuova-gestione",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-08"
        },
        {
            "lat": 47.6586772,
            "lng": -2.7599079,
            "title": "Rising Popularity of Camper Vans in France",
            "slug": "vanlife-pourquoi-de-plus-en-plus-de-francais",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-08"
        },
        {
            "lat": 31.2312707,
            "lng": 121.4700152,
            "title": "Chinese RV Panel Manufacturers Gain Global Attention",
            "slug": "top-chinese-rv-fiberglass-panel-manufacturers",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "CN",
            "date": "2026-04-08"
        },
        {
            "lat": 43.5359649,
            "lng": -6.5265455,
            "title": "Luarca Motorhome Area Marks Three Years of Successful Operation",
            "slug": "el-area-de-autocaravanas-de-luarca-cumple-tres",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-08"
        },
        {
            "lat": 50.0820384,
            "lng": 8.2416556,
            "title": "Vast Majority of Caravan Owners Use Combustion Engine Vehicles",
            "slug": "riesige-mehrheit-der-wohnwagenfans-zieht-mit",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-08"
        },
        {
            "lat": 38.3436365,
            "lng": -0.4881708,
            "title": "Motorhome Tourism is Transforming the Tourism Industry in Alicante",
            "slug": "de-familias-jovenes-y-turistas-extranjeros-asi",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-08"
        },
        {
            "lat": 45.9181327,
            "lng": 10.8860953,
            "title": "Complaints about motorhomes in supermarket parking lot in Arco",
            "slug": "camper-nel-parcheggio-del-supermercato-ad-arco",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-08"
        },
        {
            "lat": 37.1931519,
            "lng": 40.585876,
            "title": "Caravan Life and Freedom: Starting Over with Trail of Us",
            "slug": "kendi-kuzey-yildizina-doenmek-modern-duenyada-ani",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "TR",
            "date": "2026-04-08"
        },
        {
            "lat": 38.5806948,
            "lng": -90.6314374,
            "title": "Neighbors persuade magistrate to reject RV park on County Road 462",
            "slug": "neighbors-persuade-magistrate-reject-rv-park",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-08"
        },
        {
            "lat": 53.395777,
            "lng": 8.1372149,
            "title": "Fire in Varel: Motorhome Completely Destroyed",
            "slug": "feuerwehreinsatz-varel-wohnmobil-brennt",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-08"
        },
        {
            "lat": 46.5551877,
            "lng": 11.7600992,
            "title": "Court overturns Wolkenstein camper ban",
            "slug": "verwaltungsgericht-kippt-wolkensteiner",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-08"
        },
        {
            "lat": 34.7501492,
            "lng": 137.9246962,
            "title": "New RV Park with Ocean View Opens in Fukuroi",
            "slug": "new-rv-park-ocean-view-opens-fukuroi",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-08"
        },
        {
            "lat": 39.5695818,
            "lng": 2.6500745,
            "title": "Poll: Should tough legislation be introduced to curb motorhomes in Mallorca?",
            "slug": "poll-tough-legislation-introduced-curb-motorhomes",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-08"
        },
        {
            "lat": 52.2019866,
            "lng": 18.6359912,
            "title": "Renault Trafic Wavecamper: A True Motorhome",
            "slug": "renault-trafic-wavecamper-skutecny-obytny-vuz",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "PL",
            "date": "2026-04-08"
        },
        {
            "lat": 37.2405741,
            "lng": 127.1785572,
            "title": "Cliff 600 RT Motorhome",
            "slug": "cliff-600-rt-motorhome",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "KR",
            "date": "2026-04-08"
        },
        {
            "lat": 35.6768601,
            "lng": 139.7638947,
            "title": "GORDON MILLER and CALMA STORE Collaboration for Vanlife",
            "slug": "gordon-miller-calma-store-collaboration-vanlife",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-08"
        },
        {
            "lat": 36.204824,
            "lng": 138.252924,
            "title": "Toyota presents JUNO compact van based on Sienta",
            "slug": "toyota-presents-juno-compact-van-based-sienta",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-08"
        },
        {
            "lat": 52.3848021,
            "lng": 20.5068241,
            "title": "Camping Trailer Fire. One Person Dead",
            "slug": "pozar-przyczepy-kempingowej-jedna-osoba-nie-zyje",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "PL",
            "date": "2026-04-08"
        },
        {
            "lat": 50.1603966,
            "lng": 10.3646795,
            "title": "12 New Motorhome Parking Sites in Europe",
            "slug": "neue-wohnmobilstellplaetze-europa-die-camper-auf",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-08"
        },
        {
            "lat": 28.5552719,
            "lng": -82.3878709,
            "title": "Animals Missing After Camper Fire in Brooksville",
            "slug": "three-cats-two-ferrets-missing-after-brooksville",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-08"
        },
        {
            "lat": 50.0820384,
            "lng": 8.2416556,
            "title": "Germany's Smallest Motorhome: Who Is the ARI 458 Pro For?",
            "slug": "deutschlands-kleinstes-wohnmobil-fuer-wen-eignet",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-08"
        },
        {
            "lat": 60.472024,
            "lng": 8.468946,
            "title": "Rules for Motorhome and Caravan Holidays in Norway",
            "slug": "friheten-pa-hjul-derfor-velger-flere-campingferie",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "NO",
            "date": "2026-04-08"
        },
        {
            "lat": 31.7819242,
            "lng": -95.6258199,
            "title": "Love's Adds Tires, Batteries at Majority of RV Stop Locations",
            "slug": "loves-adds-tires-batteries-majority-rv-stop",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-08"
        },
        {
            "lat": 31.7819242,
            "lng": -95.6258199,
            "title": "Eric Sharp to Retire, East to West Restructures Brand Management",
            "slug": "forest-rivers-eric-sharp-retire-east-west",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-08"
        },
        {
            "lat": 45.0677551,
            "lng": 7.6824892,
            "title": "Restoration of Toilets at Caio Mario Camper Area",
            "slug": "caio-mario-bagni-distrutti-e-poi-rifatti-cosa-e",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-08"
        },
        {
            "lat": 52.3848021,
            "lng": 20.5068241,
            "title": "Caravan Fire in Nowy Wilków",
            "slug": "leoncin-pozar-przyczepy-kempingowej-w-nowym",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "PL",
            "date": "2026-04-08"
        },
        {
            "lat": 51.2845391,
            "lng": -2.2817942,
            "title": "Camper Van Safety: Speed Limits, Weight Restrictions and Conversion Rules",
            "slug": "camper-conversions-weight-restrictions-speed",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-08"
        },
        {
            "lat": 39.962493,
            "lng": -76.7276989,
            "title": "81-year-old woman lives in motorhome on daughter's property",
            "slug": "ich-wohne-im-garten-meiner-tochter-warum-das",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-08"
        },
        {
            "lat": 35.501461,
            "lng": -119.273682,
            "title": "Three Years Living in a Motorhome: Key Advantages and Disadvantages",
            "slug": "jahren-im-wohnmobil-gelebt-das-sind-die-groessten",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-08"
        },
        {
            "lat": 36.805685,
            "lng": 128.624054,
            "title": "Yeongjuho Auto Camping Site Upgrades Facilities",
            "slug": "yeongjuho-auto-camping-site-upgrades-facilities",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "KR",
            "date": "2026-04-08"
        },
        {
            "lat": 45.9181327,
            "lng": 10.8860953,
            "title": "Motorhomes in Supermarket Parking Lot: Residents Demand Regulation",
            "slug": "camper-nel-parcheggio-del-supermercato-senza",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-08"
        },
        {
            "lat": 35.1851045,
            "lng": 136.8998438,
            "title": "One in Six Motorhome Renters Travels with a Dog",
            "slug": "one-six-motorhome-renters-travels-dog",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-08"
        },
        {
            "lat": 42.5580517,
            "lng": -1.8500707,
            "title": "Collision between a car and a motorhome on the NA-132 highway near Larraga",
            "slug": "herida-una-mujer-en-el-choque-entre-un-turismo-y",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-08"
        },
        {
            "lat": 42.098698,
            "lng": -75.9125187,
            "title": "Binghamton ranked top RV destination in the region",
            "slug": "binghamton-ranked-top-rv-destination-region-camp",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-08"
        },
        {
            "lat": 35.4163118,
            "lng": 127.3903713,
            "title": "Namwon Opens Free Temporary Parking for Campers Ahead of Chunhyang Festival",
            "slug": "namwon-opens-free-temporary-parking-campers-ahead",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "KR",
            "date": "2026-04-08"
        },
        {
            "lat": 36.805685,
            "lng": 128.624054,
            "title": "Yeongjuho Campground Upgrades Toilets and Caravans",
            "slug": "yeongjuho-campground-upgrades-toilets-caravans",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "KR",
            "date": "2026-04-08"
        },
        {
            "lat": -9.4752071,
            "lng": -77.4955004,
            "title": "From van to motorhome: new model with high autonomy",
            "slug": "de-furgoneta-caravana-este-nuevo-modelo-sorprende",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "PE",
            "date": "2026-04-08"
        },
        {
            "lat": 31.046051,
            "lng": 34.851612,
            "title": "Israeli Couple Marks Passover in RV After Rocket Attack Leaves Them Homeless",
            "slug": "following-hezbollah-rocket-left-them-homeless",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "IL",
            "date": "2026-04-08"
        },
        {
            "lat": 37.2405741,
            "lng": 127.1785572,
            "title": "Fire in parked camper van in Yongin spreads to container, extinguished within an hour",
            "slug": "fire-parked-camper-van-yongin",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "KR",
            "date": "2026-04-08"
        },
        {
            "lat": 50.0820384,
            "lng": 8.2416556,
            "title": "Ari 458 Pro — 3.82-meter electric micro camper",
            "slug": "najmanji-kamper-evrope-ari-458-pro-mini-kuca-na",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-08"
        },
        {
            "lat": 43.8782944,
            "lng": 5.8411915,
            "title": "New Bouriquette — a simpler and more affordable version of the Teardrop mini caravan",
            "slug": "la-nouvelle-bouriquette-une-version-plus-simple",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-08"
        },
        {
            "lat": 50.0820384,
            "lng": 8.2416556,
            "title": "Financing a Motorhome Purchase",
            "slug": "der-traum-vom-wohnmobil-finanzierst-du-dir-deine",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-08"
        },
        {
            "lat": 33.4151005,
            "lng": -111.831455,
            "title": "Growth of RV Ownership in Mesa's East Valley",
            "slug": "growth-rv-ownership-mesas-east-valley",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-08"
        },
        {
            "lat": 52.2928116,
            "lng": -3.73893,
            "title": "Tourism Tax Will Hit Caravan Holidays Hardest",
            "slug": "tourism-tax-hit-caravan-holidays-hardest-business",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-08"
        },
        {
            "lat": 40.886943,
            "lng": 140.590121,
            "title": "RV Park ASAHI in Aomori: A Convenient Base for Campers",
            "slug": "rv-park-asahi-aomori-convenient-base-campers",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-08"
        },
        {
            "lat": 50.1541927,
            "lng": 2.4907044,
            "title": "Short Range for the Ari 458 Camper Motorhome",
            "slug": "qui-veut-voyager-loin-ne-mise-pas-sur-un",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-08"
        },
        {
            "lat": 43.6792404,
            "lng": 1.4263393,
            "title": "Over Twenty Caravans Occupy Sports Complex Near Toulouse",
            "slug": "plus-dune-vingtaine-de-caravanes-sinstallent-sur",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-08"
        },
        {
            "lat": 50.8074404,
            "lng": 12.3105314,
            "title": "Mannichswalde Campsite Opens for the Season",
            "slug": "campingplatz-mannichswalde-startet-saison",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-08"
        },
        {
            "lat": 40.7127281,
            "lng": -74.0060152,
            "title": "Possible Electric Camper Based on Volkswagen Bulli",
            "slug": "rispunta-il-possibile-camper-elettrico-basato-sul",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-08"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Motorhome boom continues: Valencia's overnight areas are insufficient",
            "slug": "la-fiebre-por-las-autocaravanas-cesa-las-areas-de",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-08"
        },
        {
            "lat": 51.5447155,
            "lng": 9.4072983,
            "title": "30 caravans occupy sports ground",
            "slug": "wohnwagen-besetzen-sportplatz-anwohner-klagen-2026",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-08"
        },
        {
            "lat": 51.3879463,
            "lng": 7.3951553,
            "title": "Expert Appraisal of Camping Vehicles Gains Importance",
            "slug": "die-begutachtung-von-campingfahrzeugen-gewinnt",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-08"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "US startup Pebble Flow unveils electric motorhome with self-driving features",
            "slug": "us-startup-pebble-flow-unveils-electric-motorhome",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-08"
        },
        {
            "lat": 40.2231089,
            "lng": -1.977556,
            "title": "Creation of a Motorhome Area Network in Baix Penedès",
            "slug": "el-baix-penedes-crea-una-red-de-areas-de",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-08"
        },
        {
            "lat": 48.4114907,
            "lng": 1.5967084,
            "title": "Bridgestone Duravis Camper All Season: A Tire for Motorhomes",
            "slug": "bridgestone-duravis-camper-season-un-pneu",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-08"
        },
        {
            "lat": 46.151241,
            "lng": 14.995463,
            "title": "Acquisition: Carinthian luxury motorhome manufacturer gets new majority owner",
            "slug": "prevzemi-koroski-proizvajalec-luksuznih-avtodomov",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "SI",
            "date": "2026-04-08"
        },
        {
            "lat": 47.6548133,
            "lng": 10.7180643,
            "title": "New motorhome parking area in Roßhaupten with Alpine view",
            "slug": "neuer-reisemobilstellplatz-rosshaupten-mit",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-08"
        },
        {
            "lat": 49.0521162,
            "lng": -122.329479,
            "title": "Abbotsford RV Camp Cleared Out",
            "slug": "province-clearing-out-abbotsford-bc-rv-camp-cbc",
            "type": "news",
            "category_slug": "closing",
            "category_name": "Closures",
            "category_color": "#4E8097",
            "country_code": "CA",
            "date": "2026-04-08"
        },
        {
            "lat": 36.805685,
            "lng": 128.624054,
            "title": "Renovation of Yeongju Lake Motorhome Campground",
            "slug": "reconstruction-yeongju-lake-auto-camping-site",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "KR",
            "date": "2026-04-08"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Caravanning sector in Spain posts record figures",
            "slug": "el-caravaning-vive-una-edad-de-oro-el-sector-se",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-08"
        },
        {
            "lat": 51.2792625,
            "lng": 0.1285706,
            "title": "Illegal Construction of Caravan Campsites During Holidays",
            "slug": "invasao-dos-viajantes-nos-feriados-como-familias",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-07"
        },
        {
            "lat": 51.2792625,
            "lng": 0.1285706,
            "title": "Illegal Caravan Camps on Holidays",
            "slug": "invasion-de-viajeros-en-dias-festivos-como-las",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-07"
        },
        {
            "lat": 38.963745,
            "lng": 35.243322,
            "title": "Turkish Success Story: Converting Buses into Motorhomes",
            "slug": "turkish-success-story-converting-buses-into",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "TR",
            "date": "2026-04-07"
        },
        {
            "lat": 33.34883,
            "lng": -112.49123,
            "title": "Covered RV storage opens to high demand",
            "slug": "never-list-big-rv-storage-opens-high-demand",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-07"
        },
        {
            "lat": 44.2436328,
            "lng": -77.3607597,
            "title": "Hamilton man arrested after attempted RV theft",
            "slug": "hamilton-man-arrested-after-attempted-theft-rv",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "CA",
            "date": "2026-04-07"
        },
        {
            "lat": 43.7941544,
            "lng": -79.5268023,
            "title": "Essential Skills for Motorhome Travel",
            "slug": "keine-wohnmobiltour-ohne-handwerkliches-geschick",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "CA",
            "date": "2026-04-07"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "1928 Motorhome Auctioned in the US",
            "slug": "ssha-auktsion-vystavili-avtodom-1928-goda",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-07"
        },
        {
            "lat": 38.1880936,
            "lng": -77.6741751,
            "title": "Man airlifted to trauma center after RV explosion in Spotsylvania",
            "slug": "man-airlifted-trauma-center-after-rv-explosion",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-07"
        },
        {
            "lat": 41.9092293,
            "lng": -95.0650571,
            "title": "Search for Stolen Travel Trailer in Clarendon County",
            "slug": "clarendon-co-deputies-searching-stolen-travel",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-07"
        },
        {
            "lat": 49.5101039,
            "lng": 0.9755672,
            "title": "Family in France faces eviction from caravan",
            "slug": "familie-vor-dem-nichts-drama-frankreich-jetzt",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-07"
        },
        {
            "lat": 26.9351529,
            "lng": -82.0512058,
            "title": "98-Year-Old Chevy Truck Converted into Wooden Motorhome",
            "slug": "someone-turned-98yearold-chevy-truck-into-one",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-07"
        },
        {
            "lat": 37.8709542,
            "lng": -96.2471338,
            "title": "Two people hospitalized after camper fire",
            "slug": "hospitalized-upstate-camper-fire-officials-say",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-07"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Ministry of Interior changes rules for drivers with caravans",
            "slug": "el-ministerio-del-interior-cambia-las-normas",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-07"
        },
        {
            "lat": 35.6768601,
            "lng": 139.7638947,
            "title": "Actress opens motorhome rental business",
            "slug": "actress-opens-motorhome-rental-business",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-07"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Increase in Motorhome and Caravan Registrations in March 2026",
            "slug": "el-caravaning-crece-con-fuerza-en-marzo-y",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-07"
        },
        {
            "lat": 51.264018,
            "lng": 7.1780374,
            "title": "Motorhome Fire on Clausenstraße",
            "slug": "der-clausenstrasse-feuerwehr-loescht-brennendes",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-07"
        },
        {
            "lat": 50.7352621,
            "lng": 7.1024635,
            "title": "Motorhomes occupy parking spaces",
            "slug": "wohnmobile-belegen-parkplaetze-wdr",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-07"
        },
        {
            "lat": 34.0536909,
            "lng": -118.242766,
            "title": "West LA coalition challenges rules regarding RV removals",
            "slug": "west-la-coalition-challenging-rules-regarding-rv",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-07"
        },
        {
            "lat": 30.659867,
            "lng": 104.063315,
            "title": "Wanaka B+ Motorhome with BYD T5DM Chassis Debuts at Chengdu RV Show",
            "slug": "wanaka-b-motorhome-byd-t5dm-chassis-debuts",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "CN",
            "date": "2026-04-07"
        },
        {
            "lat": 47.4258096,
            "lng": 7.1291258,
            "title": "Rules for Registering a Caravan as a Primary Residence",
            "slug": "erstwohnsitz-wohnwagen-diese-regeln-und",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "CH",
            "date": "2026-04-07"
        },
        {
            "lat": 53.2230018,
            "lng": 8.9283482,
            "title": "Worpswede: First motorhomes start the season at Hammehafen",
            "slug": "worpswede-starten-die-ersten-camper-am-hammehafen",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-07"
        },
        {
            "lat": 36.204824,
            "lng": 138.252924,
            "title": "Outbound Game Demo Released for PS5 and Xbox",
            "slug": "outbound-game-demo-released-ps5-xbox-2026",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-07"
        },
        {
            "lat": 45.9181327,
            "lng": 10.8860953,
            "title": "Arco: Dispute Over Camper Parking and Waste",
            "slug": "arco-camper-nei-parcheggi-e-rifiuti-fucina-comune",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-07"
        },
        {
            "lat": 38.3436365,
            "lng": -0.4881708,
            "title": "Alicante authorities ban caravan parking on the coast",
            "slug": "el-ayuntamiento-y-costas-ponen-fin-al",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-07"
        },
        {
            "lat": -14.235004,
            "lng": -51.92528,
            "title": "Actor invests 700,000 reais in a converted van",
            "slug": "longe-das-novelas-ator-de-37-anos-investe-r-700",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "BR",
            "date": "2026-04-07"
        },
        {
            "lat": 36.204824,
            "lng": 138.252924,
            "title": "Is Overnight Parking Allowed at Roadside Stations (Michi-no-Eki)?",
            "slug": "overnight-parking-allowed-roadside-stations",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-07"
        },
        {
            "lat": 51.8189991,
            "lng": -0.4580685,
            "title": "Police Investigate Unauthorized Caravan Encampment in Flamstead",
            "slug": "hertfordshire-police-investigate-flamstead",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-07"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "Camper Vans: Popularity and Practical Aspects in 2026",
            "slug": "fourgon-amenage-et-si-votre-prochaine-maison",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-07"
        },
        {
            "lat": 45.7926485,
            "lng": 4.3385894,
            "title": "Notin celebrates 105 years of motorhome manufacturing",
            "slug": "panissieres-apres-105-ans-dexistence-quel-avenir",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-07"
        },
        {
            "lat": 45.7578137,
            "lng": 4.8320114,
            "title": "Company from Pornic opens motorhome parking areas on school grounds",
            "slug": "cette-societe-de-pornic-en-plein-developpement",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-07"
        },
        {
            "lat": 51.983522,
            "lng": 7.784859,
            "title": "Free motorhome parking in central Telgte",
            "slug": "das-camperkleinod-am-rande-der-stadt",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-07"
        },
        {
            "lat": 52.3966484,
            "lng": -0.5280482,
            "title": "Stolen Northamptonshire camper van recovered in London",
            "slug": "stolen-northamptonshire-camper-van-recovered",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-07"
        },
        {
            "lat": 53.4298278,
            "lng": -1.0209956,
            "title": "Historic Caravan Retailer Acquires New Owner",
            "slug": "historic-caravan-retailer-hitches-new-owner-bdaily",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-07"
        },
        {
            "lat": 51.919438,
            "lng": 19.145136,
            "title": "Motorhome Instead of a Mortgage? Poles Increasingly Choose Life on Wheels",
            "slug": "kamper-zamiast-kredytu-hipotecznego-polacy-coraz",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "PL",
            "date": "2026-04-07"
        },
        {
            "lat": 39.8558913,
            "lng": -4.024265,
            "title": "Toledo: Parking Problem for Motorhomes and Camper Vans",
            "slug": "toledo-es-el-ejemplo-de-como-hay-que-tratar-las",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-07"
        },
        {
            "lat": 64.963051,
            "lng": -19.020835,
            "title": "A Week on Iceland's Ring Road in a Camper",
            "slug": "week-exploring-icelands-ring-road-own-camper",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "IS",
            "date": "2026-04-07"
        },
        {
            "lat": 49.3389775,
            "lng": 17.9961534,
            "title": "Service station for caravans to be built in Vsetín",
            "slug": "na-bobrkach-ve-vsetine-vznikne-servis-pro",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "CZ",
            "date": "2026-04-07"
        },
        {
            "lat": 36.204824,
            "lng": 138.252924,
            "title": "Japan Motorhome Market May Grow",
            "slug": "japan-motorhome-market-see-big-move-honda-motor",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-07"
        },
        {
            "lat": 35.6768601,
            "lng": 139.7638947,
            "title": "Motorhome Worth Over $850,000 Found in Public Housing Parking Lot",
            "slug": "motorhome-worth-over-850000-found-public-housing",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-07"
        },
        {
            "lat": 51.165691,
            "lng": 10.451526,
            "title": "Affordable Electric Motorhome",
            "slug": "elektrisk-campingbil-de-fleste-har-rad-til-elbil24",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-07"
        },
        {
            "lat": 51.165691,
            "lng": 10.451526,
            "title": "Motorhome and tent enthusiasts set a record in Germany",
            "slug": "lyubiteli-avtodomov-palatok-ustanovili-germanii",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-07"
        },
        {
            "lat": 41.6402768,
            "lng": 1.8472035,
            "title": "Spain restricts motorhomes beyond Mallorca",
            "slug": "nicht-nur-mallorca-nicht-spanien-mag-keine",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-07"
        },
        {
            "lat": 37.5385087,
            "lng": -77.43428,
            "title": "Airstream of Virginia Opens in Richmond",
            "slug": "blue-compass-rvs-airstream-virginia-now-open-rv",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-07"
        },
        {
            "lat": 38.166761,
            "lng": -0.4864027,
            "title": "Rocks Against Caravans and Vehicles by the Sea in La Cantera",
            "slug": "rocas-contra-caravanas-y-vehiculos-frente-al-mar",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-07"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "National Go RVing Day 2026 Toolkit Unveiled",
            "slug": "national-go-rving-day-2026-toolkit-unveiled-rv-pro",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-07"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Registrations of motorhomes and campers grew by 26.4% in March in Spain",
            "slug": "las-matriculaciones-de-autocaravanas-y-campers-2026",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-07"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "US Motorhome Rental Company Expands Fleet and Introduces Compact Model",
            "slug": "uscamper-setzt-auf-skandinavienaesthetik",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-07"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "Vintage 1928 Chevrolet Motorhome Auction",
            "slug": "vintazhnyy-avtodom-chevrolet-1928-goda-vystavlen",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-07"
        },
        {
            "lat": 37.360002,
            "lng": -2.2632918,
            "title": "Spain tightens motorhome rules",
            "slug": "spain-tightens-motorhome-rules-new-regulations",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-07"
        },
        {
            "lat": 42.733883,
            "lng": 25.48583,
            "title": "Budget DIY Camper Van Based on Volkswagen Transporter",
            "slug": "yahoo-6",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "BG",
            "date": "2026-04-07"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "Recall Campaign for Motorhomes Based on Fiat Ducato",
            "slug": "campingcar-attention-ce-modele-fait-lobjet-dune",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-07"
        },
        {
            "lat": 53.4298278,
            "lng": -1.0209956,
            "title": "Century-old caravan retailer with £50m revenues sold to local entrepreneur",
            "slug": "centuryold-caravan-retailer-wit-50m-revenues-sold",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-07"
        },
        {
            "lat": 51.165691,
            "lng": 10.451526,
            "title": "Test of the Etrusco T7.3 SF motorhome with Ford powertrain",
            "slug": "etrusco-t73-sfwohnmobil-mit-fordantrieb-im-test-2026",
            "type": "news",
            "category_slug": "review",
            "category_name": "Reviews",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-07"
        },
        {
            "lat": 45.0677551,
            "lng": 7.6824892,
            "title": "Fiat Concept Dolce Camper",
            "slug": "fiat-concept-dolce-camper-il-futuro-dellavventura",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-07"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "RV Overnights and Girl Camper Announce Partnership",
            "slug": "rv-overnights-girl-camper-partner-connect-women",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-07"
        },
        {
            "lat": 49.3123993,
            "lng": 12.1938198,
            "title": "Theft from motorhome at Lake Murner",
            "slug": "diebstahl-aus-wohnmobil-am-murner-see-onetz",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-07"
        },
        {
            "lat": 35.4163118,
            "lng": 127.3903713,
            "title": "Free Temporary Car Camping Facilities for Chunhyang Festival",
            "slug": "free-temporary-car-camping-facilities-chunhyang",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "KR",
            "date": "2026-04-07"
        },
        {
            "lat": 44.7571535,
            "lng": 19.6953972,
            "title": "Camper for Family Adventures",
            "slug": "kamper-za-porodicne-avanture-naslovinet",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "RS",
            "date": "2026-04-07"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "Escapees RV Club Surpasses 100,000 Members",
            "slug": "escapees-rv-club-surpasses-100000-members-marking",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-07"
        },
        {
            "lat": 41.87194,
            "lng": 12.56738,
            "title": "Mini Motorhome That Radically Changes the Idea of Travel",
            "slug": "il-mini-camper-che-cambia-radicalmente-lidea-di",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-07"
        },
        {
            "lat": 35.86166,
            "lng": 104.195397,
            "title": "Versatile Compact Motorhome — Jetour Shanhai L7 PLUS",
            "slug": "versatile-compact-motorhome-jetour-shanhai-l7-plus",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "CN",
            "date": "2026-04-07"
        },
        {
            "lat": 35.86166,
            "lng": 104.195397,
            "title": "New Giao RV Shows Growth in Australia and New Zealand Market in Q1 2026",
            "slug": "new-gac-motorhome-shows-steady-growth-australia",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "CN",
            "date": "2026-04-07"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "Recreational Vehicle Market to Surpass USD 144.5 Billion by 2032",
            "slug": "recreational-vehicle-market-surpass-usd-1445",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-07"
        },
        {
            "lat": 35.86166,
            "lng": 104.195397,
            "title": "Foton Mars 7: Camper Pickup Truck for Camping",
            "slug": "foton-mars-7-camper-pickup-truck-camping",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "CN",
            "date": "2026-04-07"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Four Municipalities in Tarragona to Equip New Parking Areas for Motorhomes",
            "slug": "los-4-pueblos-de-tarragona-que-tendran-nuevos",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-07"
        },
        {
            "lat": 41.87194,
            "lng": 12.56738,
            "title": "Electric Mini Motorhome Measuring 3.5 Meters",
            "slug": "il-mini-camper-elettrico-da-35-metri-e-davvero",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-07"
        },
        {
            "lat": 52.707755,
            "lng": -2.7540658,
            "title": "Caravan sales increase at Salop Leisure",
            "slug": "sunshine-boosts-caravan-sales-salop-leisure",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-07"
        },
        {
            "lat": 40.416782,
            "lng": -3.703507,
            "title": "Spaniards book motorhomes four months in advance for 11-day trips",
            "slug": "economia-los-espanoles-reservan-sus-viajes-en",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-07"
        },
        {
            "lat": 52.2333742,
            "lng": 21.0711489,
            "title": "Motorhome Route from Warsaw to the Baltic Sea",
            "slug": "desde-la-capital-camper-friendly-las-playas-del",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "PL",
            "date": "2026-04-07"
        },
        {
            "lat": 35.86166,
            "lng": 104.195397,
            "title": "Futian Mars 7 Pickup-Based Camper Unveiled",
            "slug": "futian-mars-7-pickupbased-camper-unveiled",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "CN",
            "date": "2026-04-07"
        },
        {
            "lat": 38.963745,
            "lng": 35.243322,
            "title": "European Tourists Explore Turkey by Caravan",
            "slug": "european-tourists-explore-turkey-caravan",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "TR",
            "date": "2026-04-07"
        },
        {
            "lat": 15.870032,
            "lng": 100.992541,
            "title": "Carryboy and Farizon's Full-Electric Campervan with Unique Layout",
            "slug": "carryboy-farizons-fullelectric-campervan-opts",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "TH",
            "date": "2026-04-07"
        },
        {
            "lat": 39.074208,
            "lng": 21.824312,
            "title": "Greece lifts ban on motorhome parking",
            "slug": "revirement-en-grece-les-campingcars-ne-sont-plus",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "GR",
            "date": "2026-04-07"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "Vanlife Expo in France",
            "slug": "la-van-life",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-07"
        },
        {
            "lat": 46.818188,
            "lng": 8.227512,
            "title": "Market for Motorhome Dishwashers: Trends and Future Perspectives",
            "slug": "markt-fuer-wohnmobilgeschirrspueler-neue-trends",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "CH",
            "date": "2026-04-07"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "Electric RV Innovation: Insights From Manufacturers",
            "slug": "electric-rv-innovation-insights-industry-rv-pro",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-07"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "Dacia Motorhome Prices: Overview of the Future Compact Van",
            "slug": "camping-car-dacia-prix-tour-dhorizon-autour-du",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-07"
        },
        {
            "lat": 53.6531915,
            "lng": -2.6294313,
            "title": "Caravan destroyed in Chorley fire",
            "slug": "caravan-destroyed-devastating-chorley-blaze",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-07"
        },
        {
            "lat": 37.6155018,
            "lng": -0.987511,
            "title": "Court dismisses measures requested by residents of Villas Caravaning in Cartagena",
            "slug": "el-juzgado-desestima-las-medidas-solicitadas-por",
            "type": "news",
            "category_slug": "closing",
            "category_name": "Closures",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-07"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Motorhome shorter than a Mini Cooper with 2.8 m² of usable space",
            "slug": "esta-autocaravana-mide-mucho-menos-que-un-seat",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-07"
        },
        {
            "lat": 36.204824,
            "lng": 138.252924,
            "title": "Re-release of foldable bed for sleeping in cars",
            "slug": "rerelease-foldable-bed-sleeping-cars",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-07"
        },
        {
            "lat": 49.3165553,
            "lng": 8.433615,
            "title": "Ahorn Camp TE 740 Test: Revamp on New Renault Master Base",
            "slug": "ahorn-camp-te-740-im-test-ueberzeugender-neustart",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-07"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "Top 5 Motorhome Stops in the Ardennes",
            "slug": "top-5-des-aires-de-campingcars-dans-les-ardennes",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-07"
        },
        {
            "lat": -16.4845983,
            "lng": 145.4636294,
            "title": "Arrest in Cairns after caravan stolen from Port Douglas",
            "slug": "police-news-arrest-cairns-after-caravan-stolen",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "AU",
            "date": "2026-04-07"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "Aveyron Motorhome to launch remote inspection service for used motorhomes",
            "slug": "aveyron-motorhome-va-lancer-une-expertise-a",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-07"
        },
        {
            "lat": 46.167254,
            "lng": 6.3216563,
            "title": "Motorhome Parking Area Construction Progressing",
            "slug": "laire-de-campingcar-en-bonne-voie-le-pays-roannais",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-07"
        },
        {
            "lat": 35.86166,
            "lng": 104.195397,
            "title": "Farizon unveils two fully electric campers",
            "slug": "farizon-ya-dispone-de-dos-furgonetas-camperizados",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "CN",
            "date": "2026-04-07"
        },
        {
            "lat": 50.0302364,
            "lng": -119.402331,
            "title": "Camper dumped in front of 'stop illegal dumping' sign",
            "slug": "camper-dumped-front-stop-illegal-dumping-sign",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "CA",
            "date": "2026-04-07"
        },
        {
            "lat": 36.4021192,
            "lng": 138.2490506,
            "title": "Carstay and Roadside Station 'Miyagahara Kogen' Start Accepting Reservations for Vehicle Overnight Stays",
            "slug": "carstay-roadside-station-miyagahara-kogen-start",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-07"
        },
        {
            "lat": 35.7767683,
            "lng": 140.3183376,
            "title": "JAL launches motorhome rental service",
            "slug": "jal-launches-motorhome-rental-service",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-07"
        },
        {
            "lat": 34.5779441,
            "lng": 136.5276002,
            "title": "Workshop for Demountable Camper Shells on Kei Trucks Opens in Matsusaka",
            "slug": "workshop-demountable-camper-shells-kei-trucks",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-07"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "22-year-old couple plans to live in motorhome with budget of 600-1200 euros per month",
            "slug": "david-y-lara-22-anos-queremos-vivir-en-una",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-07"
        },
        {
            "lat": 35.4163118,
            "lng": 127.3903713,
            "title": "Namwon Opens Free Camper Van Parking for Chunhyang Festival",
            "slug": "namwon-opens-free-camper-van-parking-chunhyang",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "KR",
            "date": "2026-04-06"
        },
        {
            "lat": -7.6894175,
            "lng": 110.3812904,
            "title": "Campervan Business in Sleman Grows Rapidly Since Pandemic",
            "slug": "bisnis-campervan-dari-sleman-yang-tumbuh-pesat",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "ID",
            "date": "2026-04-06"
        },
        {
            "lat": 51.165691,
            "lng": 10.451526,
            "title": "Ari Motors launches 458 Pro campervan",
            "slug": "ari-motors-launches-458-pro-campervan-called",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-06"
        },
        {
            "lat": 51.3157833,
            "lng": 9.4978479,
            "title": "Campsite on the Fulda River Records Record Surge",
            "slug": "der-campingplatz-der-fulda-verzeichnet-einen",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-06"
        },
        {
            "lat": 51.165691,
            "lng": 10.451526,
            "title": "The fairest motorhome and caravan insurers from a customer perspective",
            "slug": "die-fairsten-wohnmobil-und-wohnwagenversicherer",
            "type": "news",
            "category_slug": "other",
            "category_name": "Other",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-06"
        },
        {
            "lat": 40.8974812,
            "lng": -93.7349566,
            "title": "RV malfunction sparks fire claiming life of family pet",
            "slug": "rv-malfunction-sparks-fire-claiming-life-family",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 44.6799707,
            "lng": -63.5720232,
            "title": "RV residents losing option to spend winters in Dartmouth campground",
            "slug": "rv-residents-losing-option-spend-winters",
            "type": "news",
            "category_slug": "closing",
            "category_name": "Closures",
            "category_color": "#4E8097",
            "country_code": "CA",
            "date": "2026-04-06"
        },
        {
            "lat": 37.8044557,
            "lng": -122.271356,
            "title": "Woman shot in Oakland in dispute over an RV",
            "slug": "woman-shot-oakland-apparent-dispute-over-rv-east",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 26.1702082,
            "lng": -98.0522376,
            "title": "Motorhome Fire Destroys Belongings of Family in Donna, Texas",
            "slug": "incendio-en-casa-rodante-destruye-todo-para-una",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "Airstream unveils updated Basecamp 16x trailer for 2026",
            "slug": "airstreams-2026-basecamp-16x-trailer-got-standard",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 40.8974812,
            "lng": -93.7349566,
            "title": "RV fire spreads to home in Weldon",
            "slug": "dog-killed-2-displaced-after-rv-fire-spreads-home",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 51.165691,
            "lng": 10.451526,
            "title": "Bettina Tietjen on Who Should Never Go Camping",
            "slug": "bettina-tietjen-packt-aus-wer-niemals-campen",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-06"
        },
        {
            "lat": 35.86166,
            "lng": 104.195397,
            "title": "Maxus Interstellar H Motorhome Priced at 323,800 Yuan",
            "slug": "maxus-interstellar-h-motorhome-priced-323800-yuan-2026",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "CN",
            "date": "2026-04-06"
        },
        {
            "lat": 58.3019613,
            "lng": -134.4196751,
            "title": "Homeowner escapes unharmed after fire at Juneau RV park",
            "slug": "homeowner-escapes-unharmed-after-fire-juneau-rv",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 48.4846721,
            "lng": -2.6768534,
            "title": "In Côtes-d'Armor, a company offers an annual subscription for motorhomes",
            "slug": "dans-les-cotesdarmor-cette-entreprise-invente",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-06"
        },
        {
            "lat": 41.87194,
            "lng": 12.56738,
            "title": "Actor Josh O'Connor lives in a camper van to escape fame",
            "slug": "estar-en-un-hotel-me-deprimia-el-actor-josh",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-06"
        },
        {
            "lat": 46.818188,
            "lng": 8.227512,
            "title": "Quiet Door Assist System for Campers from AST",
            "slug": "kein-rumms-mehr-leise-zuziehhilfe-von-ast-zum",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "CH",
            "date": "2026-04-06"
        },
        {
            "lat": 49.1504172,
            "lng": 9.2865471,
            "title": "What Attracts Tourists to the Heilbronn Region — A Visit to Motorhome Parking Sites",
            "slug": "touristen-ins-heilbronner-land-zieht-stippvisite",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-06"
        },
        {
            "lat": 49.0488835,
            "lng": 12.979218,
            "title": "Electronics failure: man stuck in motorhome in Geiersthal",
            "slug": "elektronik-ausgefallen-mann-steckt-bei-geiersthal",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-06"
        },
        {
            "lat": 43.2951145,
            "lng": -7.372277,
            "title": "Pastoriza opens new motorhome area",
            "slug": "pastoriza-estrena-su-nueva-area-de-autocaravanas",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-06"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "Selection of Used Vehicles for Towing Behind an RV",
            "slug": "own-rv-want-tow-vehicle-behind-then-check-out",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 52.132633,
            "lng": 5.291266,
            "title": "Stellantis accused of manipulating diesel motorhomes in the Netherlands",
            "slug": "stellantis-sjoemelde-met-nederlandse-campers",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "NL",
            "date": "2026-04-06"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Camper based on Dacia Dokker",
            "slug": "kemper-baze-dacia-dokker",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-06"
        },
        {
            "lat": 39.7392364,
            "lng": -104.984862,
            "title": "Inventor Develops Environmentally-Friendly Motorhome",
            "slug": "inventhelp-inventor-develops",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "LandJet unveils new generation of mobile offices based on Winnebago",
            "slug": "landjet-unveils-next-generation-mobile-office",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 56.26392,
            "lng": 9.501785,
            "title": "Permanent Residence in a Motorhome Now Permitted",
            "slug": "nar-de-formelle-krav-er-opfyldt-er-der-ingen",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "DK",
            "date": "2026-04-06"
        },
        {
            "lat": 43.3877994,
            "lng": 0.1502485,
            "title": "New Motorhome Area Opens in the Hautes-Pyrénées",
            "slug": "une-nouvelle-aire-de-campingcar-ouvre-dans-les",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-06"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "RVWA Charitable Foundation Seeks Volunteers for \"Chassis to Classy\" Build",
            "slug": "rvwa-charitable-foundation-seeks-volunteers",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "RoverPass 2026 Report: Outdoor Hospitality's 'Quality Shift'",
            "slug": "roverpass-2026-report-outdoor-hospitalitys",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "National Powersport Auctions Announces RV Spring Stock Up",
            "slug": "national-powersport-auctions-announces-rv-spring",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 53.6621869,
            "lng": 7.5111576,
            "title": "Snack Bar Owner Wakes Up Motorhomes with Horn Before Flood",
            "slug": "imbissbetreiber-rettet-wohnmobilcamper-vor",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-06"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "TravlFi Launches JourneyGo 5G Portable Hotspot",
            "slug": "travlfi-launches-journeygo-5g-mobile-hotspot",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "Recreational Vehicle Parks and Campgrounds Market Set to Boom",
            "slug": "recreational-vehicle-parks-campgrounds-market-set",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 51.3879463,
            "lng": 7.3951553,
            "title": "Vanlife: How a Family Lived Their Dream of Freedom",
            "slug": "vanlife-lebte-diese-familie-ihren-traum-von",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-06"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "For Sale: 1959 Lincoln Continental Camper",
            "slug": "sale-incredible-1959-lincoln-continental-camper",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 34.4644,
            "lng": 135.385237,
            "title": "New Pet-Friendly Complex with RV Park Opens",
            "slug": "new-petfriendly-complex-rv-park-opens",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-06"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "New Road Sign Meaning for Motorhomes Explained",
            "slug": "la-dgt-explica-que-significa-la-nueva-senal-para",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-06"
        },
        {
            "lat": 43.5861256,
            "lng": -119.054413,
            "title": "Crane Hot Springs Expands with RV Sites and Glamping",
            "slug": "ores-crane-hot-springs-expands-rv-sites-glamping",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 51.3878174,
            "lng": 1.3819699,
            "title": "How the van-life generation turned homelessness into an aesthetic",
            "slug": "vanlife-generation-made-homelessness-into",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-06"
        },
        {
            "lat": 39.9325676,
            "lng": 40.3501311,
            "title": "Modernization of Caravan Park in Karasu",
            "slug": "karasuda-turizmine-modern-dokunus-karasu-haberleri",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "TR",
            "date": "2026-04-06"
        },
        {
            "lat": -14.235004,
            "lng": -51.92528,
            "title": "Custom Camper Van for Caio Castro: Massage Seats and Satellite Internet",
            "slug": "por-dentro-da-casa-sobre-rodas-de-caio-castro-van",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "BR",
            "date": "2026-04-06"
        },
        {
            "lat": -14.235004,
            "lng": -51.92528,
            "title": "Family converts DAF truck into motorhome for traveling across Brazil",
            "slug": "caminhao-daf-vira-casa-sobre-rodas-e-familia",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "BR",
            "date": "2026-04-06"
        },
        {
            "lat": 32.3047833,
            "lng": -101.4271085,
            "title": "Pleasant Valley RV Park Reopens After Upgrades",
            "slug": "colos-pleasant-valley-rv-park-upgraded-reopens",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 55.378051,
            "lng": -3.435973,
            "title": "Two Norfolk caravan parks named among best in country",
            "slug": "caravan-parks-norfolk-named-among-best-country",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-06"
        },
        {
            "lat": 50.503887,
            "lng": 4.469936,
            "title": "Essential Tips for Your First Motorhome Trip",
            "slug": "voor-het-eerst-op-reis-met-de-camper-dan-zijn-dit",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "BE",
            "date": "2026-04-06"
        },
        {
            "lat": 42.6980749,
            "lng": -87.8945229,
            "title": "Wisconsin RV Dealer Offers Full-Service Experience",
            "slug": "toprated-wisconsin-rv-dealer-offers-fullservice",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "Accessories to Improve Sleep in Camper Vans and Motorhomes",
            "slug": "van-et-campingcar-ces-accessoires-pourraient-bien",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-06"
        },
        {
            "lat": 52.6343884,
            "lng": 1.4465414,
            "title": "Tribute to James Hodds of Waveney Campers",
            "slug": "hundreds-pay-tribute-heart-soul-campervan",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-06"
        },
        {
            "lat": 45.7768401,
            "lng": 5.1709524,
            "title": "80 illegally installed caravans found in Chavanoz",
            "slug": "chavanoz-80-caravanes-installees-illegalement-bfm",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-06"
        },
        {
            "lat": 39.613432,
            "lng": 2.8829185,
            "title": "Living in motorhomes on Mallorca becomes a bitter necessity",
            "slug": "wonen-een-camper-op-mallorca-blijkt-bittere",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-06"
        },
        {
            "lat": 51.919438,
            "lng": 19.145136,
            "title": "VAN KAMPER T5 LONG",
            "slug": "van-kamper-t5-long-polskicaravaningpl",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "PL",
            "date": "2026-04-06"
        },
        {
            "lat": 40.2231089,
            "lng": -1.977556,
            "title": "Dreamer D43 Select: Compact Motorhome with Full Amenities",
            "slug": "dreamer-d43-select-compacta-sin-renunciar-nada",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-06"
        },
        {
            "lat": 38.963745,
            "lng": 35.243322,
            "title": "Statement by TÜMEVSİAD President on Draft Law for Hobby Gardens",
            "slug": "tuemevsiad-baskani-murat-yildizdan-hobi-bahceleri",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "TR",
            "date": "2026-04-06"
        },
        {
            "lat": 51.165691,
            "lng": 10.451526,
            "title": "German Compact Electric Camper with Limitations",
            "slug": "tiny-ev-camper-solves-park-anywhere-problem",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-06"
        },
        {
            "lat": 45.4653931,
            "lng": 8.8838429,
            "title": "Italy's Giant Camping Sport Magenta Store",
            "slug": "italys-giant-camping-sport-magenta-store",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-06"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "UK caravan owners warned about new number plate rules for travel in France",
            "slug": "uk-caravan-owners-warned-over-new-number-plate",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-06"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Couple lives in motorhome for 100 euros a week",
            "slug": "juanma-y-tony-son-pareja-y-llevan-viviendo-cuatro",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-06"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "Motorhome Vacation: Road Adventures",
            "slug": "vacances-en-campingcar-laventure-sur-la-route",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-06"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "Motorhome built on truck chassis with car-carrying trailer",
            "slug": "la-verdadera-casa-rodante-base-de-camion-lujo",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 59.0210666,
            "lng": 5.5648766,
            "title": "Demanded answer about municipality breaking the law",
            "slug": "randaberg-bobil-krevde-svar-om-kommunen-brot",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "NO",
            "date": "2026-04-06"
        },
        {
            "lat": 51.165691,
            "lng": 10.451526,
            "title": "The Smallest Electric Car for Camping",
            "slug": "marknadens-minsta-elbil-foer-camping-charmar-alla",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-06"
        },
        {
            "lat": 50.503887,
            "lng": 4.469936,
            "title": "Condensation, Heat, and 1:10 Fuel Consumption: The Uncomfortable Truth About Camper Life",
            "slug": "condens-hitte-en-1-op-10-diesel-de-ongemakkelijke",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "BE",
            "date": "2026-04-06"
        },
        {
            "lat": 26.1702082,
            "lng": -98.0522376,
            "title": "Fire Destroys RV in Donna",
            "slug": "fire-destroys-rv-donna-710-kurv",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 47.162494,
            "lng": 19.503304,
            "title": "New All-Season Bridgestone Tire for Motorhomes",
            "slug": "okos-valasztas-lakoautosoknak-igy-optimalizalja",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "HU",
            "date": "2026-04-06"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Camper van travel demonstrates importance of resource efficiency",
            "slug": "pasado-la-semana-santa-viajando-en-una-camper-y",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-06"
        },
        {
            "lat": 50.8291313,
            "lng": 6.9037057,
            "title": "Comparison of Kompanja Eins and Zwei Campers",
            "slug": "kompanjacamper-im-vergleich-fuer-wen-ist-welcher",
            "type": "news",
            "category_slug": "review",
            "category_name": "Reviews",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-06"
        },
        {
            "lat": 50.3413391,
            "lng": 6.9519229,
            "title": "Nürburgring Expands Caravan Park",
            "slug": "nuerburgring-caravan-park-erweitert",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-06"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "Citroën ELO wins Concept Car of the Year award",
            "slug": "trophees-de-largus-le-citroen-elo-sacre-concept",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-06"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "Alternatives to Motorhomes Gain Popularity in France",
            "slug": "cest-fini-le-campingcar-ces-5-alternatives",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-06"
        },
        {
            "lat": 42.9268327,
            "lng": -9.1192457,
            "title": "Several motorhomes and cars fined in O Ézaro",
            "slug": "multadas-varias-autocaravanas-y-coches",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-06"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "RV Campground with Easy Access to Yellowstone National Park",
            "slug": "best-rv-camping-site-easy-access-yellowstone",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-06"
        },
        {
            "lat": 41.6521342,
            "lng": -0.8809428,
            "title": "First Franchisee for Mobile Hairdresser in Spain",
            "slug": "natalia-lopez-la-peluquera-que-recorre-la-espana",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-06"
        },
        {
            "lat": 43.4211205,
            "lng": -4.7530835,
            "title": "500 Euro Fine for Parking Caravan Near Beach in Llanes",
            "slug": "euros-de-multa-por-aparcar-su-caravana-junto-una",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-06"
        },
        {
            "lat": 41.87194,
            "lng": 12.56738,
            "title": "Actress Min Ji-young faces difficulties purchasing motorhome equipment",
            "slug": "actress-min-jiyoung-faces-difficulties-buying",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-06"
        },
        {
            "lat": 35.8711792,
            "lng": 139.6840649,
            "title": "Trailer crashes into house in Midori, Gunma",
            "slug": "trailer-crashes-into-house-midori-gunma",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-06"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Best Travel Destinations in Spain by Motorhome",
            "slug": "die-schoensten-reiseziele-spaniens-mit-dem",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-06"
        },
        {
            "lat": 35.6768601,
            "lng": 139.7638947,
            "title": "New Motorhome Models from Direct Cars: DN-75, Dune Rover, and Nomadoa",
            "slug": "new-motorhome-models-direct-cars-dn75-dune-rover",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-05"
        },
        {
            "lat": 42.4693872,
            "lng": -8.8949654,
            "title": "O Grove: Ban on Motorhomes and Tourist Apartments, Glamping Instead of Campgrounds",
            "slug": "o-grove-veto-autocaravanas-y-pisos-turisticos-y",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-05"
        },
        {
            "lat": -26.6544338,
            "lng": 153.0933668,
            "title": "Zone RV Customers Demand Investigation After Losing $10 Million",
            "slug": "angry-customers-lost-10m-zone-rv-collapse-urge",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "AU",
            "date": "2026-04-05"
        },
        {
            "lat": 42.7955359,
            "lng": 140.9344304,
            "title": "Former School in Hokkaido Becomes Gathering Spot for Motorhomes",
            "slug": "former-school-hokkaido-becomes-gathering-spot",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-05"
        },
        {
            "lat": 36.0189315,
            "lng": 129.3429384,
            "title": "Multifunctional Camping Ground for Workers in Pohang to Open on May 17",
            "slug": "multifunctional-camping-ground-workers-pohang",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "KR",
            "date": "2026-04-05"
        },
        {
            "lat": 45.943161,
            "lng": 24.96676,
            "title": "Spanish Turn Dacia Jogger into the 'Most Affordable' Camper",
            "slug": "spaniolii-au-transformat-dacia-jogger-in-cel-mai",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "RO",
            "date": "2026-04-05"
        },
        {
            "lat": 22.7553667,
            "lng": 121.1506,
            "title": "Dispute Over Additional Overnight Fee for Motorhome at Resort",
            "slug": "dispute-over-additional-overnight-fee-motorhome",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "TW",
            "date": "2026-04-05"
        },
        {
            "lat": 13.7524938,
            "lng": 100.4935089,
            "title": "Electric Camper Van for Five People",
            "slug": "la-impresionante-furgoneta-electrica-convertida",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "TH",
            "date": "2026-04-05"
        },
        {
            "lat": 38.4671207,
            "lng": -121.334754,
            "title": "Airstream Motorhomes: Iconic Retro Campers in Pictures",
            "slug": "airstreamwohnwagen-die-kultigsten-retrocamper",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-05"
        },
        {
            "lat": 48.1148016,
            "lng": 3.0665531,
            "title": "Upside-Down House: Miniature Wheeled Home for French Mountains",
            "slug": "perevernutyy-dom-miniatyurnyy-dom-kolesakh",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-05"
        },
        {
            "lat": 36.3509372,
            "lng": 25.7673712,
            "title": "New Parking Restrictions for Motorhomes and Caravans in Greece",
            "slug": "new-parking-restrictions-motorhomes-caravans",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "GR",
            "date": "2026-04-05"
        },
        {
            "lat": 37.3696865,
            "lng": 27.2684841,
            "title": "Strict Regulations for Tents and Caravans in Didim",
            "slug": "yasak-1-nisanda-basladi-didimde-cadir-ve-karavan",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "TR",
            "date": "2026-04-05"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "Kia PV5 Transforms into a Camper in 5 Minutes",
            "slug": "esta-kia-se-transforma-en-5-minutos-en-una-camper",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-05"
        },
        {
            "lat": 51.8203938,
            "lng": 8.6588368,
            "title": "Family travels across Europe in converted fire truck",
            "slug": "junge-familie-aus-hoevelhof-reist-mit-altem",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-05"
        },
        {
            "lat": 49.9433503,
            "lng": 7.8928797,
            "title": "Caravan Detaches on Autobahn and Causes Accident",
            "slug": "wohnwagen-loest-sich-auf-autobahn-und-verursacht",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-05"
        },
        {
            "lat": 54.2820009,
            "lng": -0.4011868,
            "title": "Motorhome and campervan bans risk driving tourists out of Britain",
            "slug": "motorhome-campervan-bans-risk-driving-tourists-2026",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-05"
        },
        {
            "lat": 37.9552355,
            "lng": 23.6802925,
            "title": "Fires on Kifissou Avenue: Van and Motorhome Burned",
            "slug": "fires-kifissou-avenue-van-motorhome-burned",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "GR",
            "date": "2026-04-05"
        },
        {
            "lat": 40.3725088,
            "lng": -1.5750772,
            "title": "Calomarde studies expansion of motorhome parking areas",
            "slug": "calomarde-estudia-ampliar-las-zonas-de",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-05"
        },
        {
            "lat": 42.343926,
            "lng": -3.696977,
            "title": "Motorhomes parked outside designated areas on Eduardo Ontañón street in Burgos",
            "slug": "autocaravanas-fuera-de-zonas-habilitadas-en-la",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-05"
        },
        {
            "lat": 41.87194,
            "lng": 12.56738,
            "title": "Fiamma Launches Safe Door Van: New Lock System for Camper Vans",
            "slug": "fiamma-lance-safe-door-van-une-nouvelle-serrure",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-05"
        },
        {
            "lat": 38.4192537,
            "lng": 27.128469,
            "title": "Joint Motion for Caravans",
            "slug": "karavan-icin-ortak-oenerge-gercek-haberci",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "TR",
            "date": "2026-04-05"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Ari 458 Pro: The Smallest and Most Affordable Electric Motorhome",
            "slug": "mas-pequena-y-barata-imposible-la-ari-458-pro",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-05"
        },
        {
            "lat": 51.165691,
            "lng": 10.451526,
            "title": "Knaus BoxLife 600 DQ Platinum Selection: A Compact and Well-Equipped Camper Van",
            "slug": "knaus-boxlife-600-dq-platinum-selection-una",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-05"
        },
        {
            "lat": 37.9552355,
            "lng": 23.6802925,
            "title": "Three Fires at Dawn on Sunday – Van and Motorhome Burned in Moschato",
            "slug": "three-fires-dawn-sunday-van-motorhome-burned",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "GR",
            "date": "2026-04-05"
        },
        {
            "lat": 36.9621788,
            "lng": 140.0467207,
            "title": "RV Park in Nasushiobara Ranks Third in Popularity Vote",
            "slug": "rv-park-nasushiobara-ranks-third-popularity-vote",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-05"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "New Road Sign S-128 for Motorhomes in Spain",
            "slug": "es-oficial-esta-es-la-nueva-senal-s128-que-afecta",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-05"
        },
        {
            "lat": 51.165691,
            "lng": 10.451526,
            "title": "Motorhome and Caravan Insurance: Top-Rated Providers According to Customers",
            "slug": "wohnmobil-wohnwagenversicherung-diese-anbieter",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-05"
        },
        {
            "lat": 51.2254018,
            "lng": 6.7763137,
            "title": "Dethleffs Globetrail 75k Iconic Edition based on Fiat Ducato",
            "slug": "hasta-180-cv-maximo-lujo-cocina-y-banos-completos",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-05"
        },
        {
            "lat": 57.7825634,
            "lng": 14.165719,
            "title": "Caravan caught fire among thousands of young people",
            "slug": "husvagn-boerjade-brinna-mitt-bland-tusentals-unga",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "SE",
            "date": "2026-04-05"
        },
        {
            "lat": 52.132633,
            "lng": 5.291266,
            "title": "Growth of motorhomes in the Netherlands across generations",
            "slug": "waarom-de-camper-nederland-zo-hard-groeit-en",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "NL",
            "date": "2026-04-05"
        },
        {
            "lat": 37.9552355,
            "lng": 23.6802925,
            "title": "Van and motorhome burned in Moschato - Arson considered for successive fires",
            "slug": "fire-destroys-van-motorhome-moschato",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "GR",
            "date": "2026-04-05"
        },
        {
            "lat": 44.016521,
            "lng": 21.005859,
            "title": "Five Caravans for 2026: From Affordable to Luxury",
            "slug": "pet-sjajnih-karavana-za-2026-od-pristupacnih",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "RS",
            "date": "2026-04-05"
        },
        {
            "lat": 51.165691,
            "lng": 10.451526,
            "title": "High rating for the Kia EV6 AWD GT-Line electric tow car in test with caravan",
            "slug": "topwertung-fuer-den-ezugwagen-kia-ev6-awd-gtline",
            "type": "news",
            "category_slug": "review",
            "category_name": "Reviews",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-05"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Dacia Jogger Adventure: Concept for Europe's Most Affordable Camper",
            "slug": "dacia-jogger-adventure-asi-imaginamos-como-podria",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-05"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Cost of Renting a Motorhome in Spain",
            "slug": "precio-diario-de-alquilar-un-motorhome-en-espana",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-05"
        },
        {
            "lat": 61.92411,
            "lng": 25.748151,
            "title": "Female couple in motorhome encounters mixed attitudes across Europe",
            "slug": "asuntoautolla-euroopan-laepi-reissannut-naispari-2",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FI",
            "date": "2026-04-05"
        },
        {
            "lat": 63.0957722,
            "lng": 21.6159187,
            "title": "Female couple in motorhome encounters mixed attitudes across Europe",
            "slug": "asuntoautolla-euroopan-laepi-reissannut-naispari-3",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FI",
            "date": "2026-04-05"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "New Citroën Holidays Camper Cheaper Than Volkswagen California",
            "slug": "la-nueva-furgoneta-camper-de-citroen-es-mas",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-05"
        },
        {
            "lat": 61.92411,
            "lng": 25.748151,
            "title": "Female couple in motorhome encounters mixed attitudes across Europe",
            "slug": "asuntoautolla-euroopan-laepi-reissannut-naispari-4",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FI",
            "date": "2026-04-05"
        },
        {
            "lat": 61.92411,
            "lng": 25.748151,
            "title": "Female couple in motorhome encounters mixed attitudes across Europe",
            "slug": "asuntoautolla-euroopan-laepi-reissannut-naispari",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FI",
            "date": "2026-04-05"
        },
        {
            "lat": 61.92411,
            "lng": 25.748151,
            "title": "Women's Motorhome Trip Across Europe Reveals Varied Attitudes",
            "slug": "asuntoautolla-euroopan-laepi-reissannut-naispari-1",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FI",
            "date": "2026-04-05"
        },
        {
            "lat": 61.92411,
            "lng": 25.748151,
            "title": "Female couple in motorhome encounters mixed attitudes across Europe",
            "slug": "asuntoautolla-euroopan-laepi-reissannut-naispari-2026",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FI",
            "date": "2026-04-05"
        },
        {
            "lat": 40.7104835,
            "lng": 14.772345,
            "title": "Motorhome driver damages car and flees",
            "slug": "alla-guida-di-un-camper-danneggia-auto-e-scappa",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-05"
        },
        {
            "lat": 59.8786976,
            "lng": 8.5941579,
            "title": "New Motorhome Disposal Station in Tinn",
            "slug": "bobil-tinn-stor-takk-til-tinn-kommune-rjukan",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "NO",
            "date": "2026-04-05"
        },
        {
            "lat": -24.883847,
            "lng": 113.6570703,
            "title": "Highway Reopens After Cyclone Narelle",
            "slug": "travellers-celebrate-major-highway-reopens-after",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "AU",
            "date": "2026-04-05"
        },
        {
            "lat": 36.7168315,
            "lng": -76.2494453,
            "title": "Family displaced after RV fire spreads to Chesapeake house",
            "slug": "family-displaced-after-rv-fire-spreads-chesapeake",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-05"
        },
        {
            "lat": 30.659867,
            "lng": 104.063315,
            "title": "Affordable motorhome with dual powertrain and layout options presented",
            "slug": "affordable-motorhome-dual-powertrain-layout",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "CN",
            "date": "2026-04-05"
        },
        {
            "lat": 38.970836,
            "lng": -97.758927,
            "title": "RV Fire at Culver Campground",
            "slug": "culver-campground-rv-fire-displaces-father-son",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-05"
        },
        {
            "lat": 53.4623324,
            "lng": 12.0293606,
            "title": "Instead of Full Campsites: Apps for Finding Legal Parking Alternatives",
            "slug": "statt-voller-campingplaetze-diese-app-zeigt-2026",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-04"
        },
        {
            "lat": 29.4749586,
            "lng": -82.8591997,
            "title": "Camper destroyed in fire on US-19 in Chiefland",
            "slug": "camper-destroyed-fire-along-us19-chiefland-wcjb",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-04"
        },
        {
            "lat": 47.1152695,
            "lng": -2.1040102,
            "title": "In Brittany, Camping-car park multiplies service areas",
            "slug": "en-bretagne-campingcar-park-multiplie-les-aires",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-04"
        },
        {
            "lat": 51.066411,
            "lng": 4.2812346,
            "title": "Free weighing campaign for motorhomes and caravans in Puurs-Sint-Amands",
            "slug": "gratis-weegactie-voor-campers-en-caravans-2026",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "BE",
            "date": "2026-04-04"
        },
        {
            "lat": 35.9603948,
            "lng": -83.9210261,
            "title": "One dead after RV overturns on I-640 East",
            "slug": "knoxville-police-investigating-serious-crash",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-04"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "Recall of Fiat Ducato and equivalents due to defective fuel hose",
            "slug": "pourquoi-votre-campingcar-pourrait-finir-au",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-04"
        },
        {
            "lat": 48.233048,
            "lng": 8.9991483,
            "title": "Sonnencamping Motorhome Site in Albstadt",
            "slug": "wohnmobilstellplatz-sonnencamping-albstadt",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-04"
        },
        {
            "lat": 65.3134652,
            "lng": 21.4900252,
            "title": "Norwegian motorhomes take over Piteå during Easter",
            "slug": "norska-husbilar-tar-oever-pitea-pask-98-procent",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "SE",
            "date": "2026-04-04"
        },
        {
            "lat": 35.86166,
            "lng": 104.195397,
            "title": "Discount on SAIC Maxus V80 Motorhome",
            "slug": "discount-saic-maxus-v80-motorhome",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "CN",
            "date": "2026-04-04"
        },
        {
            "lat": 61.52401,
            "lng": 105.318756,
            "title": "Sales of the Adria Sonic Plus 700 SL motorhome begin",
            "slug": "nachalis-prodazhi-avtodoma-adria-sonic-plus-700-sl",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "RU",
            "date": "2026-04-04"
        },
        {
            "lat": 58.3019613,
            "lng": -134.4196751,
            "title": "Fire in mobile home at Auke Bay RV Park",
            "slug": "fire-engulfs-mobile-home-auke-bay-rv-park",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-04"
        },
        {
            "lat": 51.0424768,
            "lng": 4.3244863,
            "title": "Free Weighing for Motorhomes in Breendonk",
            "slug": "kilogram-te-zwaar-dat-al-500-euro-boete-gratis",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "BE",
            "date": "2026-04-04"
        },
        {
            "lat": 42.7902379,
            "lng": 10.3402239,
            "title": "Fatal Accident Involving Motorhome in Livorno",
            "slug": "livorno-muore-scooter-nello-scontro-con-un-camper",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-04"
        },
        {
            "lat": 36.7006416,
            "lng": -5.421687,
            "title": "Caravan Rescue in Benaocaz After Becoming Stuck",
            "slug": "rescate-de-caravana-en-benaocaz-tras-quedar",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-04"
        },
        {
            "lat": 40.5888567,
            "lng": 34.7590333,
            "title": "Caravan Burned to the Ground, Gas Cylinder Explosion Averts Disaster",
            "slug": "karavan-kuele-doendue-patlamayan-tuep-felaketi",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "TR",
            "date": "2026-04-04"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "Daniel Guichard Explains Choosing a Motorhome for Tours",
            "slug": "je-naime-pas-voyager-daniel-guichard-revele",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-04"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "Daniel Guichard Moves into a Motorhome for Touring",
            "slug": "daniel-guichard-ce-campingcar-dans-lequel-il-elu",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-04"
        },
        {
            "lat": 35.3619929,
            "lng": 137.2541668,
            "title": "Motorhome Overturns, Two Large Trucks Collide on Chuo Expressway",
            "slug": "motorhome-overturns-two-large-trucks-collide-chuo",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-04"
        },
        {
            "lat": 55.378051,
            "lng": -3.435973,
            "title": "Wales tourism tax will hit affordable caravan holidays hardest",
            "slug": "wales-tourism-tax-hit-affordable-caravan-holidays",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-04"
        },
        {
            "lat": 42.6759606,
            "lng": -2.7852928,
            "title": "Woman trapped, man injured after motorhome overturns in Burgos",
            "slug": "atrapada-una-mujer-y-un-hombre-herido-tras-volcar",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-04"
        },
        {
            "lat": 40.3966461,
            "lng": -77.2890283,
            "title": "Ari 458 Pro as a Mini-Camper",
            "slug": "ari-458-pro-surprises-minicamper-yahoo-autos",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-04"
        },
        {
            "lat": 48.7142691,
            "lng": 8.7397624,
            "title": "Head-on collision of two motorhomes",
            "slug": "frontalzusammenstoss-zweier-wohnmobile",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-04"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "National Parks with RV Hookups: Leaders in 2026",
            "slug": "national-park-rv-hookups-parks-lead-2026-nomad",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-04"
        },
        {
            "lat": 42.6759606,
            "lng": -2.7852928,
            "title": "Two injured in motorhome rollover in Burgos",
            "slug": "dos-heridos-al-volcar-una-autocaravana-en-burgos",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-04"
        },
        {
            "lat": 51.9617153,
            "lng": 8.2252425,
            "title": "Unique motorhome from Harsewinkel attracts attention at campsites",
            "slug": "einzigartiges-wohnmobil-aus-harsewinkel-ist-der",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-04"
        },
        {
            "lat": 42.7902379,
            "lng": 10.3402239,
            "title": "Accident on Romito: Motorcycle-Camper Collision",
            "slug": "grave-incidente-sul-romito-scontro-tra-camper-e",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-04"
        },
        {
            "lat": 49.0240684,
            "lng": 12.9714474,
            "title": "Defective motorhome causes traffic jam on B 85 highway",
            "slug": "defektes-wohnmobil-sorgt-fuer-stau-b-85-pnpde",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-04"
        },
        {
            "lat": 45.4610389,
            "lng": 10.4845346,
            "title": "In Lonato, a Camper Area to Replace Greenhouses",
            "slug": "lonato-al-posto-delle-serre-larea-per-camper",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "IT",
            "date": "2026-04-04"
        },
        {
            "lat": 44.6200885,
            "lng": -110.5606893,
            "title": "Which National Park Has The Most RV Hookups",
            "slug": "national-park-rv-hookups-islandscom",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-04"
        },
        {
            "lat": 41.6012796,
            "lng": -85.8590603,
            "title": "Forest River Announces Key Personnel Changes",
            "slug": "forest-river-announces-key-personnel-changes",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-04"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "Stores That Allow Overnight Parking in Georgia",
            "slug": "stores-allow-overnight-parking-georgia-national",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-04"
        },
        {
            "lat": 51.165691,
            "lng": 10.451526,
            "title": "German Holidays: Instead of Mallorca, a Caravan",
            "slug": "niemieckie-wakacje-zamiast-majorki-przyczepa",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-04"
        },
        {
            "lat": -38.8813069,
            "lng": -71.1740024,
            "title": "Motorhome completely frozen in Patagonia",
            "slug": "calor-de-cuiaba-ao-gelo-da-patagonia-casal-vive",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "AR",
            "date": "2026-04-04"
        },
        {
            "lat": 43.8921149,
            "lng": -1.2618375,
            "title": "Simple Vans: Affordable DIY kits for van conversion",
            "slug": "simple-vans-le-van-amenage-a-portee-de-main-les",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-04"
        },
        {
            "lat": 51.066411,
            "lng": 4.2812346,
            "title": "Free Weighing Campaign for Motorhomes and Caravans in Puurs-Sint-Amands",
            "slug": "gratis-weegactie-voor-campers-en-caravans",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "BE",
            "date": "2026-04-04"
        },
        {
            "lat": 35.86166,
            "lng": 104.195397,
            "title": "Review of a 2020 Noyou Maxus V80 Motorhome",
            "slug": "review-2020-noyou-maxus-v80-motorhome",
            "type": "news",
            "category_slug": "review",
            "category_name": "Reviews",
            "category_color": "#4E8097",
            "country_code": "CN",
            "date": "2026-04-04"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "New regulations for motorhomes and camper vans in the Canary Islands",
            "slug": "la-dgt-lo-hace-oficial-cambia-las-normas-para",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-04"
        },
        {
            "lat": 47.9209556,
            "lng": 9.7542772,
            "title": "Motorhome catches fire on B30 near Bad Waldsee",
            "slug": "wohnmobil-brennt-auf-b30-bei-bad-waldsee-aus",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-04"
        },
        {
            "lat": 48.968549,
            "lng": 8.3097117,
            "title": "Major Operation in Rheinstetten: Motorhome Rolls from Parking Lot into Rhine",
            "slug": "grosseinsatz-bei-rheinstetten-wohnmobil-rollt-von",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-04"
        },
        {
            "lat": 48.4114907,
            "lng": 1.5967084,
            "title": "New narrow and short camper van produced in France with two sleeping berths",
            "slug": "un-nouveau-van-etroit-tres-court-et-produit-en",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-04"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Couple lives in motorhome for four years to save money",
            "slug": "juanma-y-tony-pareja-viviendo-durante-cuatro-anos",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-04"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "Volkswagen ID. Buzz US Relaunch Plan: 2027 Model Details and Camper Version",
            "slug": "volkswagen-id-buzz-us-relaunch-plan-2027-model",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-04"
        },
        {
            "lat": 52.0232042,
            "lng": 5.5518002,
            "title": "Bankrupt Camper Manufacturer Accused of Fraud",
            "slug": "failliete-camperbouwer-beticht-van-oplichting",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "NL",
            "date": "2026-04-04"
        },
        {
            "lat": 37.3886303,
            "lng": -5.9953403,
            "title": "Basque Motorhome Association organizes parking half an hour from La Cartuja stadium",
            "slug": "la-asociacion-vasca-de-autocaravanas-organiza-un",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-04"
        },
        {
            "lat": 45.943161,
            "lng": 24.96676,
            "title": "Romanians among Europeans least interested in camping and motorhome holidays",
            "slug": "romanii-printre-europenii-cei-mai-putin",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "RO",
            "date": "2026-04-04"
        },
        {
            "lat": 43.882825,
            "lng": -1.1457945,
            "title": "Startup in Landes offers budget kits for van conversion",
            "slug": "dans-les-landes-cette-startup-locale-trouve-une",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-04"
        },
        {
            "lat": 36.204824,
            "lng": 138.252924,
            "title": "Caravan package priced from 4.19 million yen",
            "slug": "caravan-package-priced-419-million-yen",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-04"
        },
        {
            "lat": 36.204824,
            "lng": 138.252924,
            "title": "Japanese Compact Motorhome Based on Daihatsu Hijet",
            "slug": "kdo-pravi-da-avtodomi-morajo-biti-ogromni-japonci",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-04"
        },
        {
            "lat": 50.503887,
            "lng": 4.469936,
            "title": "Life in a Camper: Kat's Experience",
            "slug": "kat-leeft-haar-camper-ik-ben-bevroren-en-vraag-me",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "BE",
            "date": "2026-04-04"
        },
        {
            "lat": 51.165691,
            "lng": 10.451526,
            "title": "Test of the Knaus Boxtime 630 MX motorhome with new furniture construction",
            "slug": "campingbus-mit-revolutionaerem-moebelbau-im-test",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-04"
        },
        {
            "lat": 47.8532383,
            "lng": 8.7704457,
            "title": "Registering a primary residence in a caravan: where is it allowed on Lake Constance and in the Black Forest?",
            "slug": "erstwohnsitz-im-wohnwagen-wo-ist-das-erlaubt-am-2026",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-04"
        },
        {
            "lat": 46.151241,
            "lng": 14.995463,
            "title": "Preview: We Become Campers • To the Delicacies and Attractions of Slovenia",
            "slug": "vorschau-wir-werden-camper-zu-den-koestlichkeiten",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "SI",
            "date": "2026-04-04"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "Video test of the Carthago Chic c-Line I4.9 LE motorhome",
            "slug": "essai-en-video-du-chic-cline-i49-le-la-nouvelle",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-04"
        },
        {
            "lat": 46.7227062,
            "lng": 2.5046503,
            "title": "Upgrade for the Canal de Berry campsite in Saint-Amand-Montrond",
            "slug": "lagon-nouveaux-sanitaires-aire-de-campingcars",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-04"
        },
        {
            "lat": 36.204824,
            "lng": 138.252924,
            "title": "Nissan Serena Review for Dog-Friendly Travel",
            "slug": "nissan-serena-review-dogfriendly-travel",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-04"
        },
        {
            "lat": 35.3619929,
            "lng": 137.2541668,
            "title": "Motorhome carrying family of five overturns on expressway",
            "slug": "motorhome-carrying-family-five-overturns",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-04"
        },
        {
            "lat": 35.3619929,
            "lng": 137.2541668,
            "title": "Motorhome carrying family overturns on expressway, three injured",
            "slug": "motorhome-carrying-family-overturns-highway-three",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-04"
        },
        {
            "lat": 35.7767683,
            "lng": 140.3183376,
            "title": "JAL Launches RV Rental Service with Mileage Accrual",
            "slug": "jal-launches-motorhome-rental-service-mileage",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-04"
        },
        {
            "lat": 48.669026,
            "lng": 19.699024,
            "title": "Nissan introduces electric caravan",
            "slug": "nissan-ma-v-ponuke-aj-elektricky-karavan-trendsk",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "SK",
            "date": "2026-04-03"
        },
        {
            "lat": 35.6768601,
            "lng": 139.7638947,
            "title": "New Lexivy Place Liv'n Camper with Semi-Custom System up to 270 Variations",
            "slug": "new-lexivy-place-livn-camper-semicustom-system-up",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-03"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Fiat turns Ducato into an affordable camper van",
            "slug": "fiat-convierte-la-ducato-en-la-mejor-camper-para",
            "type": "news",
            "category_slug": "builds",
            "category_name": "Builds",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-03"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "Thor Industries Stock: Impact of RV Demand Cycles",
            "slug": "thor-industries-inc-stock-rv-demand-cycles-matter",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-03"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Motorhome Routes in Northern Spain",
            "slug": "rutas-en-autocaravana-por-el-norte-de-espana",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-03"
        },
        {
            "lat": 36.204824,
            "lng": 138.252924,
            "title": "Over 60 motorhomes dispatched to earthquake-affected region",
            "slug": "over-60-motorhomes-dispatched-earthquakeaffected",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-03"
        },
        {
            "lat": 55.8949215,
            "lng": -3.4642504,
            "title": "Caravan crash on major Scottish road",
            "slug": "caravan-crash-major-scots-road-cops-close-off-area",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-03"
        },
        {
            "lat": 50.5064292,
            "lng": 7.4304199,
            "title": "Nighttime Caravan Fire in Datzeroth",
            "slug": "naechtlicher-wohnwagenbrand-datzeroth-fordert",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-03"
        },
        {
            "lat": -23.3782137,
            "lng": 150.5134227,
            "title": "Impact of Fuel Crisis on Caravanners",
            "slug": "another-lockdown-longterm-caravanners-dealing",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "AU",
            "date": "2026-04-03"
        },
        {
            "lat": -40.900557,
            "lng": 174.885971,
            "title": "Tourism Holdings Ltd: New Zealand's motorhome rental leader",
            "slug": "tourism-holdings-ltd-accion-lider-neozelandes-en",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "NZ",
            "date": "2026-04-03"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Spaniards book motorhome road trips four months in advance",
            "slug": "los-espanoles-reservan-sus-roadtrips-en",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-03"
        },
        {
            "lat": 51.919438,
            "lng": 19.145136,
            "title": "Autonomous Travel House on Wheels: Cost, Design, and Availability in Russia",
            "slug": "avtonomnyy-dom-kolyosakh-puteshestviy-stoimost",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "PL",
            "date": "2026-04-03"
        },
        {
            "lat": 39.5695818,
            "lng": 2.6500745,
            "title": "Living in a motorhome as a necessity on Spanish islands",
            "slug": "wonen-een-camper-als-pure-noodzaak-plaats-van",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-03"
        },
        {
            "lat": 42.1405445,
            "lng": -8.8070821,
            "title": "Val Miñor now has the largest motorhome park in Galicia",
            "slug": "o-val-minor-ya-disfruta-del-complejo-de-caravanas",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-03"
        },
        {
            "lat": 35.0834524,
            "lng": 137.156737,
            "title": "Carstay adds three new motorhomes and three overnight stations",
            "slug": "carstay-adds-three-new-motorhomes-three-overnight-1",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-03"
        },
        {
            "lat": 60.128161,
            "lng": 18.643501,
            "title": "Motorhome worth 9 million can be driven with a category B license",
            "slug": "autocamper-til-9-millioner-ma-kores-pa-kategori",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "SE",
            "date": "2026-04-03"
        },
        {
            "lat": 42.0708765,
            "lng": -83.2465957,
            "title": "Camper fire and explosion in Roane County",
            "slug": "camper-fire-explosion-roane-county-prompts-911",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-03"
        },
        {
            "lat": 47.9209556,
            "lng": 9.7542772,
            "title": "Motorhome burned out on highway",
            "slug": "wohnmobil-ausgebrannt-diebildschirmzeitung",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-03"
        },
        {
            "lat": 48.7142691,
            "lng": 8.7397624,
            "title": "Several Injured After Motorhome Accident in Calw",
            "slug": "calw-mehrere-verletzte-nach-wohnmobilunfall",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-03"
        },
        {
            "lat": 37.6697494,
            "lng": -4.2377031,
            "title": "Albendin opens new motorhome area",
            "slug": "albendin-estrena-su-nueva-area-de-autocaravanas",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-03"
        },
        {
            "lat": 36.204824,
            "lng": 138.252924,
            "title": "New Motorhomes and Stations on Carstay",
            "slug": "new-motorhomes-stations-carstay",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-03"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Where to watch the 2026 solar eclipse in Spain while traveling by camper van",
            "slug": "media-espana-mirando-al-cielo-y-tu-en-el-sitio",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-03"
        },
        {
            "lat": 46.818188,
            "lng": 8.227512,
            "title": "Rules for Registering a Caravan as a Primary Residence",
            "slug": "erstwohnsitz-wohnwagen-diese-vorschriften-muessen",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "CH",
            "date": "2026-04-03"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "81-year-old woman lives in a tiny camper in her daughter's backyard",
            "slug": "oma-van-81-woont-alleen-een-piepkleine-camper-de",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-03"
        },
        {
            "lat": 61.4882583,
            "lng": 8.8454889,
            "title": "Caravan Accident Near Maurvangen",
            "slug": "trafikkulykke-ved-maurvangen-fjukenno",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "NO",
            "date": "2026-04-03"
        },
        {
            "lat": 48.7142691,
            "lng": 8.7397624,
            "title": "Several Injured After Motorhome Accident in Calw",
            "slug": "mehrere-verletzte-nach-wohnmobilunfall-bnnde",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-03"
        },
        {
            "lat": 54.5026287,
            "lng": -0.6706598,
            "title": "Motorhome and campervan ban made permanent in UK",
            "slug": "motorhome-campervan-ban-made-permanent-uk-tourism",
            "type": "news",
            "category_slug": "ban",
            "category_name": "Bans & Fines",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-03"
        },
        {
            "lat": 51.165691,
            "lng": 10.451526,
            "title": "Family travels Germany in graffiti-covered caravan",
            "slug": "vorschau-wir-werden-camper-heimatcamping-zwischen",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-03"
        },
        {
            "lat": 40.4062872,
            "lng": -113.1966394,
            "title": "Camper fire in Tooele County",
            "slug": "camper-fire-causes-brief-response-tooele-county",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-03"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "Outbound Preview: A Van-Life Game",
            "slug": "outbound-preview-openworld-lowstakes-vanlife",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-03"
        },
        {
            "lat": 64.963051,
            "lng": -19.020835,
            "title": "Outbound Preview: Open-World Van-Life Crafting Adventure",
            "slug": "outbound-preview-openworld-lowstakes-vanlife-2026",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "IS",
            "date": "2026-04-03"
        },
        {
            "lat": 48.7142691,
            "lng": 8.7397624,
            "title": "Head-on collision of two motorhomes in Calw",
            "slug": "badenwuerttemberg-frontalzusammenstoss-zwischen",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-03"
        },
        {
            "lat": 51.165691,
            "lng": 10.451526,
            "title": "We Become Campers: With a Caravan to France",
            "slug": "wir-werden-camper-mit-dem-wohnauflieger-nach",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-03"
        },
        {
            "lat": 26.6831222,
            "lng": -80.2593689,
            "title": "Loxahatchee Council Considers RV Regulation Updates",
            "slug": "lox-council-considers-updates-rv-regulations",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-03"
        },
        {
            "lat": 48.7142691,
            "lng": 8.7397624,
            "title": "Motorhome Collision in Calw: Four Injured",
            "slug": "wohnmobile-krachen-ineinander-vier-verletzte-bei",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-03"
        },
        {
            "lat": 45.6433431,
            "lng": 4.2299344,
            "title": "Caravans block town of Montrond-les-Bains for five hours",
            "slug": "loire-57-caravanes-ont-bloque-la-ville-de",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-03"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "Family with three children forced to leave forest after months living in caravan",
            "slug": "una-familia-con-tres-hijos-tiene-que-abandonar-un",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-03"
        },
        {
            "lat": 51.165691,
            "lng": 10.451526,
            "title": "Safe Dog Boxes in Motorhomes: Review of 11 Providers",
            "slug": "hund-im-wohnmobil-diese-boxen-retten-leben-11",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "DE",
            "date": "2026-04-03"
        },
        {
            "lat": 50.8214626,
            "lng": -0.1400561,
            "title": "Caravans and motorhomes pitch up in city park",
            "slug": "caravans-motorhomes-pitch-up-one-citys-main-parks",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "GB",
            "date": "2026-04-03"
        },
        {
            "lat": -23.6533509,
            "lng": -46.5279039,
            "title": "WERCHTAY 100W Solar Panel for RVs and Campers",
            "slug": "camping-off-grid-solar-werchtay-100w",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "BR",
            "date": "2026-04-03"
        },
        {
            "lat": 28.5242796,
            "lng": -80.6818558,
            "title": "For Decades, NASA Astronauts Have Been Carried to the Launchpad in Motorhomes",
            "slug": "decades-nasa-astronauts-carried-launchpad",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-03"
        },
        {
            "lat": 36.7213028,
            "lng": -4.4216366,
            "title": "Motorhome: Why This Destination Attracts",
            "slug": "campingcar-pourquoi-cette-destination-attire-tf1",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-03"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "Mobile Home or Caravan in the Garden at Easter: Little-Known Rule Risks Heavy Fine",
            "slug": "mobilhome-ou-caravane-dans-le-jardin-a-paques",
            "type": "news",
            "category_slug": "law",
            "category_name": "Law & Regulations",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-03"
        },
        {
            "lat": 46.227638,
            "lng": 2.213749,
            "title": "Compact French Motorhome Fleurette 60 LG",
            "slug": "un-campingcar-100-francais-hyper-compact-et-haut",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "FR",
            "date": "2026-04-03"
        },
        {
            "lat": 46.818188,
            "lng": 8.227512,
            "title": "Motorhome Water Heater Market: Industry Structure and Forecast Report",
            "slug": "markt-fuer-wohnmobilwarmwasserbereiter",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "CH",
            "date": "2026-04-03"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "Camp & Park Accounting launches RV park deal analyzer tool",
            "slug": "camp-park-accounting-launches-rv-park-deal",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-03"
        },
        {
            "lat": 35.4587305,
            "lng": -94.7879436,
            "title": "Cherokee Nation Opens Sallisaw Creek Park",
            "slug": "cherokee-nation-hosts-grand-opening-sallisaw",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-03"
        },
        {
            "lat": 35.5010653,
            "lng": 138.7653041,
            "title": "Dog-Friendly RV Park in Yamanashi",
            "slug": "new-samoyedfriendly-rv-park-opens-yamanashi",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-03"
        },
        {
            "lat": 37.09024,
            "lng": -95.712891,
            "title": "Why Paid Media Is Harder for RV Dealers",
            "slug": "paid-media-harder-rv-dealers-today-rv-pro",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-03"
        },
        {
            "lat": 41.6012796,
            "lng": -85.8590603,
            "title": "Indiana Governor Mike Braun to Return to RV Industry Power Breakfast",
            "slug": "indiana-gov-mike-braun-returning-rv-ind-power",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "US",
            "date": "2026-04-03"
        },
        {
            "lat": 51.919438,
            "lng": 19.145136,
            "title": "Compact Wheeled Home Katrin Presented",
            "slug": "predstavlen-kompaktnyy-dom-kolyosakh-katrin",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "PL",
            "date": "2026-04-03"
        },
        {
            "lat": 35.3619929,
            "lng": 137.2541668,
            "title": "Motorhome overturns on expressway, two trucks involved, three including children transported",
            "slug": "motorhome-overturns-expressway-two-trucks",
            "type": "news",
            "category_slug": "incident",
            "category_name": "Incidents",
            "category_color": "#4E8097",
            "country_code": "JP",
            "date": "2026-04-03"
        },
        {
            "lat": 61.52401,
            "lng": 105.318756,
            "title": "Motorhome Prices in Russia Have Doubled",
            "slug": "tseny-avtodoma-rossii-vyrosli-vdvoe",
            "type": "news",
            "category_slug": "industry",
            "category_name": "Industry",
            "category_color": "#4E8097",
            "country_code": "RU",
            "date": "2026-04-03"
        },
        {
            "lat": 40.463667,
            "lng": -3.74922,
            "title": "Baix Penedès Region Launches Motorhome Network with Four Municipalities",
            "slug": "el-baix-penedes-arranca-la-red-para-autocaravanas",
            "type": "news",
            "category_slug": "opening",
            "category_name": "Openings",
            "category_color": "#4E8097",
            "country_code": "ES",
            "date": "2026-04-03"
        },
        {
            "lat": 46.818188,
            "lng": 8.227512,
            "title": "Checklist for preparing a motorhome for the spring season",
            "slug": "check-statt-schreck-todoliste-fuer-camper-im",
            "type": "news",
            "category_slug": "lifestyle",
            "category_name": "Lifestyle",
            "category_color": "#4E8097",
            "country_code": "CH",
            "date": "2026-04-03"
        }
    ]
}
 

Request      

GET api/map/data

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET /api/map/pois?north=&south=&east=&west=&categories=campsite,fuel&locale=ru

Возвращает POI в пределах bbox. Загружается при moveend карты.

Example request:
curl --request GET \
    --get "https://openvan.camp/api/map/pois" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/map/pois"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/map/pois'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "pois": [
        {
            "id": 1,
            "lat": 48.8566,
            "lng": 2.3522,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Paris Centre"
        },
        {
            "id": 2,
            "lat": 52.52,
            "lng": 13.405,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 3,
            "lat": 41.9028,
            "lng": 12.4964,
            "type": "poi",
            "category": "fuel",
            "title": "ENI Rome"
        },
        {
            "id": 28311,
            "lat": 41.2360551,
            "lng": 1.8209265,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2504,
            "lat": 50.8663,
            "lng": -1.5326,
            "type": "poi",
            "category": "campsite",
            "title": "Matley Wood"
        },
        {
            "id": 2505,
            "lat": 50.8881465,
            "lng": -1.5285173,
            "type": "poi",
            "category": "campsite",
            "title": "Ashurst Caravan & Camping Site"
        },
        {
            "id": 2507,
            "lat": 52.6645878,
            "lng": -0.6380434,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2508,
            "lat": 50.8988106,
            "lng": -1.2988444,
            "type": "poi",
            "category": "campsite",
            "title": "Paulines Lodge Scout activity centre"
        },
        {
            "id": 2509,
            "lat": 48.663889,
            "lng": -2.843889,
            "type": "poi",
            "category": "campsite",
            "title": "Belle vue"
        },
        {
            "id": 2510,
            "lat": 45.4282078,
            "lng": 4.9282589,
            "type": "poi",
            "category": "campsite",
            "title": "Camping du Bontemps"
        },
        {
            "id": 2511,
            "lat": 45.879444,
            "lng": 6.640833,
            "type": "poi",
            "category": "campsite",
            "title": "Bornand"
        },
        {
            "id": 2512,
            "lat": 45.904167,
            "lng": -1.215278,
            "type": "poi",
            "category": "campsite",
            "title": "La Brande"
        },
        {
            "id": 2513,
            "lat": 44.499167,
            "lng": -1.079167,
            "type": "poi",
            "category": "campsite",
            "title": "Lou Broustaricq"
        },
        {
            "id": 2514,
            "lat": 43.705,
            "lng": 7.050556,
            "type": "poi",
            "category": "campsite",
            "title": "Camping la Camassade"
        },
        {
            "id": 2515,
            "lat": 44.106667,
            "lng": 2.689722,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Les Cantarelles - Camping Aveyron"
        },
        {
            "id": 2516,
            "lat": 45.6592339,
            "lng": 0.5571119,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Les Gorges du Chambon Ciela Village"
        },
        {
            "id": 2839,
            "lat": 40.1531229,
            "lng": 9.5113046,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Silana"
        },
        {
            "id": 2461,
            "lat": 56.0121337,
            "lng": 37.6268951,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2462,
            "lat": 36.9136782,
            "lng": 25.5886386,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2465,
            "lat": 40.6367041,
            "lng": 26.6051527,
            "type": "poi",
            "category": "campsite",
            "title": "Gökçetepe Tabiat Parkı"
        },
        {
            "id": 2466,
            "lat": 50.6794833,
            "lng": 14.6529141,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2467,
            "lat": 49.0383898,
            "lng": 37.5816062,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2468,
            "lat": 49.0429712,
            "lng": 37.5942465,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2469,
            "lat": 66.0710441,
            "lng": 22.7200258,
            "type": "poi",
            "category": "campsite",
            "title": "Morjärv Camping"
        },
        {
            "id": 2470,
            "lat": 58.599794,
            "lng": 22.773674,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2471,
            "lat": 65.4758226,
            "lng": 34.0893852,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 56159,
            "lat": 15.8428342,
            "lng": -5.7896377,
            "type": "poi",
            "category": "shower",
            "title": "341"
        },
        {
            "id": 27508,
            "lat": 46.509467,
            "lng": 6.5337433,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30014,
            "lat": 54.4459181,
            "lng": 11.0873906,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 43583,
            "lat": 43.6820727,
            "lng": 133.6099605,
            "type": "poi",
            "category": "caravan_site",
            "title": "1"
        },
        {
            "id": 2517,
            "lat": 48.1072445,
            "lng": 0.3411791,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Château de Chanteloup"
        },
        {
            "id": 2518,
            "lat": 48.719722,
            "lng": 3.037778,
            "type": "poi",
            "category": "campsite",
            "title": "Charbonnieres"
        },
        {
            "id": 2519,
            "lat": 44.4981705,
            "lng": 1.0662656,
            "type": "poi",
            "category": "campsite",
            "title": "Le Ch'timi"
        },
        {
            "id": 56161,
            "lat": 15.843936,
            "lng": -5.7897129,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2520,
            "lat": 49.8563539,
            "lng": 4.7929466,
            "type": "poi",
            "category": "campsite",
            "title": "Base de loisirs d'Haulmé"
        },
        {
            "id": 2521,
            "lat": 46.5206796,
            "lng": -0.2845078,
            "type": "poi",
            "category": "campsite",
            "title": "Côté Lac"
        },
        {
            "id": 2522,
            "lat": 43.2407744,
            "lng": 6.5734098,
            "type": "poi",
            "category": "campsite",
            "title": "Parc Saint-James-Montana"
        },
        {
            "id": 2523,
            "lat": 48.168889,
            "lng": -4.289444,
            "type": "poi",
            "category": "campsite",
            "title": "Iroise"
        },
        {
            "id": 2524,
            "lat": 44.2969829,
            "lng": 4.7868612,
            "type": "poi",
            "category": "campsite",
            "title": "La Simioune"
        },
        {
            "id": 2525,
            "lat": 44.7283254,
            "lng": 1.5970592,
            "type": "poi",
            "category": "campsite",
            "title": "Château de Lacomté Camping"
        },
        {
            "id": 2526,
            "lat": 45.37,
            "lng": 1.144167,
            "type": "poi",
            "category": "campsite",
            "title": "Landisses Municipal"
        },
        {
            "id": 2527,
            "lat": 43.690278,
            "lng": 7.156389,
            "type": "poi",
            "category": "campsite",
            "title": "Le Todos"
        },
        {
            "id": 2528,
            "lat": 44.976111,
            "lng": 1.046944,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Le Vézère Périgord"
        },
        {
            "id": 2529,
            "lat": 43.4765798,
            "lng": 6.6387165,
            "type": "poi",
            "category": "campsite",
            "title": "Lei Suves"
        },
        {
            "id": 29,
            "lat": 37.7650546,
            "lng": 21.2985946,
            "type": "poi",
            "category": "campsite",
            "title": "Kourouta"
        },
        {
            "id": 30,
            "lat": 39.4438944,
            "lng": 20.2580632,
            "type": "poi",
            "category": "campsite",
            "title": "Ναυτίλος"
        },
        {
            "id": 31,
            "lat": 38.0994422,
            "lng": 23.7916676,
            "type": "poi",
            "category": "campsite",
            "title": "Nea Kifissia"
        },
        {
            "id": 32,
            "lat": 37.5322251,
            "lng": 22.8914468,
            "type": "poi",
            "category": "campsite",
            "title": "New Triton"
        },
        {
            "id": 33,
            "lat": 37.616111,
            "lng": 23.158611,
            "type": "poi",
            "category": "campsite",
            "title": "Nicolas II"
        },
        {
            "id": 37,
            "lat": 39.0193696,
            "lng": 23.2255815,
            "type": "poi",
            "category": "campsite",
            "title": "Pefki"
        },
        {
            "id": 2472,
            "lat": 65.4810919,
            "lng": 34.0887827,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 15008,
            "lat": 52.0868044,
            "lng": 0.0735878,
            "type": "poi",
            "category": "caravan_site",
            "title": "Apple Acre Caravan Park"
        },
        {
            "id": 17225,
            "lat": 38.9797036,
            "lng": -5.7888924,
            "type": "poi",
            "category": "caravan_site",
            "title": "CP Villanueva de la Serena"
        },
        {
            "id": 27509,
            "lat": 52.0385739,
            "lng": -0.7656765,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52349,
            "lat": -13.8476838,
            "lng": 34.5455665,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52350,
            "lat": -13.8477437,
            "lng": 34.5459246,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 56162,
            "lat": 15.8444629,
            "lng": -5.7901507,
            "type": "poi",
            "category": "shower",
            "title": "382"
        },
        {
            "id": 56163,
            "lat": 15.8448367,
            "lng": -5.7901999,
            "type": "poi",
            "category": "shower",
            "title": "373"
        },
        {
            "id": 2530,
            "lat": 44.992778,
            "lng": 0.598611,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Lestaubière"
        },
        {
            "id": 2531,
            "lat": 45.932222,
            "lng": 1.290278,
            "type": "poi",
            "category": "campsite",
            "title": "Leychoisier"
        },
        {
            "id": 2532,
            "lat": 44.8808723,
            "lng": 0.8855581,
            "type": "poi",
            "category": "campsite",
            "title": "Le Port de Limeuil ****"
        },
        {
            "id": 2533,
            "lat": 45.506667,
            "lng": 5.207222,
            "type": "poi",
            "category": "campsite",
            "title": "Loisirs du Moulin"
        },
        {
            "id": 2534,
            "lat": 47.058889,
            "lng": 3.816944,
            "type": "poi",
            "category": "campsite",
            "title": "r de Bezolle"
        },
        {
            "id": 2535,
            "lat": 48.6647118,
            "lng": -3.7809098,
            "type": "poi",
            "category": "campsite",
            "title": "Domaine de Mesqueau"
        },
        {
            "id": 2536,
            "lat": 44.364722,
            "lng": 2.865,
            "type": "poi",
            "category": "campsite",
            "title": "illac"
        },
        {
            "id": 2537,
            "lat": 44.658889,
            "lng": 0.879167,
            "type": "poi",
            "category": "campsite",
            "title": "Le Moulin de David"
        },
        {
            "id": 2538,
            "lat": 47.2962727,
            "lng": -2.5368486,
            "type": "poi",
            "category": "campsite",
            "title": "Oceanic"
        },
        {
            "id": 2539,
            "lat": 44.945556,
            "lng": 1.441111,
            "type": "poi",
            "category": "campsite",
            "title": "Paille Basse"
        },
        {
            "id": 2540,
            "lat": 44.906667,
            "lng": 1.292222,
            "type": "poi",
            "category": "campsite",
            "title": "Camping La Palombière"
        },
        {
            "id": 2541,
            "lat": 48.0025,
            "lng": 1.233333,
            "type": "poi",
            "category": "campsite",
            "title": "Le Val Fleury"
        },
        {
            "id": 2542,
            "lat": 43.450833,
            "lng": 6.633611,
            "type": "poi",
            "category": "campsite",
            "title": "Pecheurs"
        },
        {
            "id": 2553,
            "lat": 53.191389,
            "lng": 6.024722,
            "type": "poi",
            "category": "campsite",
            "title": "Bergumermeer"
        },
        {
            "id": 2554,
            "lat": 51.8984215,
            "lng": 5.1838575,
            "type": "poi",
            "category": "campsite",
            "title": "Betuwestrand"
        },
        {
            "id": 2840,
            "lat": 49.7889399,
            "lng": 6.8437367,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2488,
            "lat": 43.4599826,
            "lng": 41.2249772,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2489,
            "lat": 43.4861099,
            "lng": 41.2428307,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2490,
            "lat": 52.5136224,
            "lng": 17.1865382,
            "type": "poi",
            "category": "campsite",
            "title": "Wronczynek"
        },
        {
            "id": 2491,
            "lat": 52.4923098,
            "lng": 17.2465298,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2493,
            "lat": 47.9213611,
            "lng": 18.0021275,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2494,
            "lat": 49.7908845,
            "lng": 17.6359458,
            "type": "poi",
            "category": "campsite",
            "title": "Autokemp Budišov n.B."
        },
        {
            "id": 2495,
            "lat": 42.7825139,
            "lng": 17.8756436,
            "type": "poi",
            "category": "campsite",
            "title": "Auto Kamp Rogač"
        },
        {
            "id": 2496,
            "lat": 65.5163178,
            "lng": 33.9995341,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2497,
            "lat": 65.550636,
            "lng": 33.8257379,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2498,
            "lat": 52.793927,
            "lng": 10.8853127,
            "type": "poi",
            "category": "campsite",
            "title": "Waldbad und Campingplatz Dähre"
        },
        {
            "id": 2499,
            "lat": 45.932995,
            "lng": 23.1619049,
            "type": "poi",
            "category": "campsite",
            "title": "Căsuțe"
        },
        {
            "id": 2500,
            "lat": 54.2213561,
            "lng": 12.5448415,
            "type": "poi",
            "category": "campsite",
            "title": "Wasserwanderrastplatz Pantlitz"
        },
        {
            "id": 2502,
            "lat": 65.5634729,
            "lng": 33.7607621,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2503,
            "lat": 44.8861337,
            "lng": 37.7480461,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 47669,
            "lat": 48.0035047,
            "lng": -122.2208436,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 56164,
            "lat": 15.8439336,
            "lng": -5.789999,
            "type": "poi",
            "category": "shower",
            "title": "387"
        },
        {
            "id": 56218,
            "lat": -34.0297562,
            "lng": 151.0418365,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27582,
            "lat": 53.6067662,
            "lng": 6.7038254,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29910,
            "lat": 50.6518758,
            "lng": 4.2343198,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2555,
            "lat": 52.8563506,
            "lng": 4.7171451,
            "type": "poi",
            "category": "campsite",
            "title": "Callassande Roompot"
        },
        {
            "id": 47704,
            "lat": 18.5089045,
            "lng": -72.2727107,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 47706,
            "lat": 18.5089271,
            "lng": -72.2726822,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28318,
            "lat": 49.8902524,
            "lng": 8.8390132,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28319,
            "lat": 49.8902629,
            "lng": 8.8387686,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28320,
            "lat": 49.8907413,
            "lng": 8.8386251,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28321,
            "lat": 49.8908546,
            "lng": 8.8382782,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28322,
            "lat": 49.8906544,
            "lng": 8.839173,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50018,
            "lat": 34.1079311,
            "lng": -99.7544462,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30762,
            "lat": 44.3928805,
            "lng": 33.973997,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30023,
            "lat": 53.8968315,
            "lng": 11.4550419,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30025,
            "lat": 54.0936814,
            "lng": 12.1183,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28323,
            "lat": 49.8910146,
            "lng": 8.8385864,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28324,
            "lat": 49.8909455,
            "lng": 8.8390968,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 49927,
            "lat": -13.1171399,
            "lng": 142.9897158,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30718,
            "lat": 53.8906495,
            "lng": 25.3009609,
            "type": "poi",
            "category": "shower",
            "title": "Баня"
        },
        {
            "id": 30755,
            "lat": 49.9210075,
            "lng": 14.211025,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30757,
            "lat": 45.2943942,
            "lng": 13.5745689,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30758,
            "lat": 45.2959226,
            "lng": 13.5721722,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30759,
            "lat": 45.2961908,
            "lng": 13.5713292,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30760,
            "lat": 45.299017,
            "lng": 13.5711512,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50017,
            "lat": 33.7589739,
            "lng": -98.3867744,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 57247,
            "lat": 48.5982738,
            "lng": 7.6940806,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28343,
            "lat": 49.4090897,
            "lng": 8.6799844,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 7528,
            "lat": 46.5099751,
            "lng": 9.854667,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7529,
            "lat": 41.3752047,
            "lng": 2.167475,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7530,
            "lat": 47.3893236,
            "lng": 8.6946424,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7531,
            "lat": 47.3329915,
            "lng": 8.5352832,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7532,
            "lat": 47.3634467,
            "lng": 8.5354984,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7533,
            "lat": 47.366683,
            "lng": 8.5405993,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen mit \"wasserspeiendem Schwan\""
        },
        {
            "id": 7534,
            "lat": 47.3377886,
            "lng": 8.5362019,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7535,
            "lat": 47.3415132,
            "lng": 8.5344025,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notwasserbrunnen"
        },
        {
            "id": 7536,
            "lat": 47.3783213,
            "lng": 8.5097242,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen mit wasserspeiender Dogge"
        },
        {
            "id": 7537,
            "lat": 47.3509803,
            "lng": 8.5204128,
            "type": "poi",
            "category": "drinking_water",
            "title": "Dragonerbrunnen"
        },
        {
            "id": 7538,
            "lat": 50.0335436,
            "lng": 8.4282792,
            "type": "poi",
            "category": "drinking_water",
            "title": "Faulbornquelle (Schwefel)"
        },
        {
            "id": 7539,
            "lat": 47.3847295,
            "lng": 8.5479977,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen Rigiplatz"
        },
        {
            "id": 7540,
            "lat": 47.3339218,
            "lng": 8.5242976,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7541,
            "lat": 47.3352632,
            "lng": 8.524921,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7542,
            "lat": 47.4094105,
            "lng": 8.5378065,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnenplastik \"Mädchen mit Fisch, Knabe mit Hund\""
        },
        {
            "id": 7543,
            "lat": 47.3516757,
            "lng": 8.5265659,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notwasserbrunnen"
        },
        {
            "id": 7544,
            "lat": 47.3543635,
            "lng": 8.5261178,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7545,
            "lat": 47.3811871,
            "lng": 8.5031196,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7546,
            "lat": 47.4067048,
            "lng": 8.5130864,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 57248,
            "lat": 48.5982978,
            "lng": 7.6930793,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 57249,
            "lat": 43.8380904,
            "lng": 6.0167227,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 57252,
            "lat": 48.5980541,
            "lng": 7.6934806,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 57280,
            "lat": 27.9741416,
            "lng": -82.8296211,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 57281,
            "lat": 27.973521,
            "lng": -82.829707,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 57282,
            "lat": 27.9732557,
            "lng": -82.8297807,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 57283,
            "lat": 27.9728992,
            "lng": -82.8299202,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 7549,
            "lat": 47.3583586,
            "lng": 8.5269061,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notwasserbrunnen"
        },
        {
            "id": 2966,
            "lat": 43.833302,
            "lng": 4.9460437,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 7550,
            "lat": 40.413707,
            "lng": -3.6957228,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7551,
            "lat": 51.1671923,
            "lng": 4.4282131,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7552,
            "lat": 47.3866,
            "lng": 8.0518192,
            "type": "poi",
            "category": "drinking_water",
            "title": "Froschbrunnen"
        },
        {
            "id": 7553,
            "lat": 47.2454545,
            "lng": 8.726039,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7554,
            "lat": 47.2391588,
            "lng": 8.7354119,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7555,
            "lat": 43.3756156,
            "lng": -3.7347195,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de Santa Matilde"
        },
        {
            "id": 7556,
            "lat": 43.3844064,
            "lng": -3.7331815,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7557,
            "lat": 47.3315719,
            "lng": 8.7111766,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7558,
            "lat": 47.399629,
            "lng": 8.5143144,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7559,
            "lat": 47.4773717,
            "lng": 8.3107974,
            "type": "poi",
            "category": "drinking_water",
            "title": "Träne-Brünneli"
        },
        {
            "id": 7560,
            "lat": 48.7655383,
            "lng": 8.4908187,
            "type": "poi",
            "category": "drinking_water",
            "title": "Paul Ochner Brunnen"
        },
        {
            "id": 7561,
            "lat": 47.3414917,
            "lng": 9.3272666,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7562,
            "lat": 39.679785,
            "lng": -0.2730593,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7563,
            "lat": 49.941229,
            "lng": 9.1079213,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7564,
            "lat": 51.5642143,
            "lng": -2.5560989,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7565,
            "lat": 49.784118,
            "lng": 8.8971286,
            "type": "poi",
            "category": "drinking_water",
            "title": "Eberhardtsbrunnen"
        },
        {
            "id": 7566,
            "lat": 45.5236615,
            "lng": 5.950335,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7567,
            "lat": 49.5711757,
            "lng": 8.8096504,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7568,
            "lat": 49.9030129,
            "lng": 9.8303538,
            "type": "poi",
            "category": "drinking_water",
            "title": "Marienbrünnchen"
        },
        {
            "id": 7569,
            "lat": 50.1585898,
            "lng": 8.5018153,
            "type": "poi",
            "category": "drinking_water",
            "title": "Stahlquelle"
        },
        {
            "id": 7570,
            "lat": 44.4298882,
            "lng": 8.9299382,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7571,
            "lat": 44.4339732,
            "lng": 8.9287935,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7572,
            "lat": 50.1602681,
            "lng": 6.821704,
            "type": "poi",
            "category": "drinking_water",
            "title": "Sauerbrunnen"
        },
        {
            "id": 7573,
            "lat": 44.5842636,
            "lng": 8.9679899,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7574,
            "lat": 54.9562514,
            "lng": 9.4199063,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7575,
            "lat": 54.958078,
            "lng": 9.4218515,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7576,
            "lat": 54.95843,
            "lng": 9.4230598,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7577,
            "lat": 54.9597939,
            "lng": 9.4205924,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7578,
            "lat": 54.9558222,
            "lng": 9.4217051,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7579,
            "lat": 44.4095856,
            "lng": 8.9382732,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 57322,
            "lat": 13.7034896,
            "lng": 44.7317001,
            "type": "poi",
            "category": "shower",
            "title": "حمامات"
        },
        {
            "id": 32291,
            "lat": 38.9477188,
            "lng": 20.7513944,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30781,
            "lat": 36.6058934,
            "lng": 24.9517966,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30782,
            "lat": 36.6059474,
            "lng": 24.9517521,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 57385,
            "lat": 28.1417182,
            "lng": -15.4346317,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 7582,
            "lat": 50.0255916,
            "lng": 8.165404,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7583,
            "lat": 41.6255757,
            "lng": -0.8865348,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7584,
            "lat": 48.6965298,
            "lng": 9.6690829,
            "type": "poi",
            "category": "drinking_water",
            "title": "Sauerbrunnen"
        },
        {
            "id": 7585,
            "lat": 48.7005656,
            "lng": 9.6600269,
            "type": "poi",
            "category": "drinking_water",
            "title": "Sauerbrunnen"
        },
        {
            "id": 7586,
            "lat": 47.4290537,
            "lng": 8.4910635,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7587,
            "lat": 47.3611842,
            "lng": 8.5327652,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notwasserbrunnen"
        },
        {
            "id": 7588,
            "lat": 47.4288056,
            "lng": 8.4815024,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7589,
            "lat": 45.7236577,
            "lng": 4.9133707,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7590,
            "lat": 45.7591118,
            "lng": 4.8360696,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7591,
            "lat": 48.696905,
            "lng": 9.6699031,
            "type": "poi",
            "category": "drinking_water",
            "title": "Sauerbrunnen"
        },
        {
            "id": 7592,
            "lat": 44.330089,
            "lng": 9.1551452,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7593,
            "lat": 44.3323353,
            "lng": 9.1578197,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7594,
            "lat": 44.3304827,
            "lng": 9.1582976,
            "type": "poi",
            "category": "drinking_water",
            "title": "A Vëgia"
        },
        {
            "id": 7595,
            "lat": 44.3103768,
            "lng": 9.1938895,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7596,
            "lat": 44.4001035,
            "lng": 8.9820683,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7597,
            "lat": 44.4039838,
            "lng": 8.9543507,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7598,
            "lat": 44.4077278,
            "lng": 8.9611738,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7599,
            "lat": 49.4997971,
            "lng": 8.664527,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7600,
            "lat": 44.4289675,
            "lng": 8.8933009,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7601,
            "lat": 44.4314647,
            "lng": 8.9394554,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7602,
            "lat": 44.4311653,
            "lng": 8.9432365,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7603,
            "lat": 42.4658963,
            "lng": -2.4390124,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de la Mujer"
        },
        {
            "id": 7604,
            "lat": 49.5274742,
            "lng": 8.7490335,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7605,
            "lat": 47.3777925,
            "lng": 8.5930476,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7606,
            "lat": 48.2003978,
            "lng": 8.2456924,
            "type": "poi",
            "category": "drinking_water",
            "title": "Franz Mayer Brunnen"
        },
        {
            "id": 7607,
            "lat": 40.0556171,
            "lng": 0.0642784,
            "type": "poi",
            "category": "drinking_water",
            "title": "Font del Senyor"
        },
        {
            "id": 7608,
            "lat": 51.225745,
            "lng": 7.1440825,
            "type": "poi",
            "category": "drinking_water",
            "title": "Trinkwasser AWG"
        },
        {
            "id": 7609,
            "lat": 47.350443,
            "lng": 8.1844675,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7610,
            "lat": 47.3499435,
            "lng": 8.1863668,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7611,
            "lat": 47.3611431,
            "lng": 8.1847468,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7612,
            "lat": 47.3566889,
            "lng": 8.1775545,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7613,
            "lat": 44.408438,
            "lng": 8.9245653,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 27596,
            "lat": 44.5504764,
            "lng": 6.4753216,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27525,
            "lat": 36.7435903,
            "lng": -3.8950544,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27526,
            "lat": 36.7438059,
            "lng": -3.8976807,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30783,
            "lat": 36.6060014,
            "lng": 24.9517495,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 57386,
            "lat": 28.1437892,
            "lng": -15.4322507,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30029,
            "lat": 44.8171644,
            "lng": 14.3406762,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 46355,
            "lat": 34.8731785,
            "lng": -81.7353301,
            "type": "poi",
            "category": "caravan_site",
            "title": "Bubba's RV Park"
        },
        {
            "id": 7615,
            "lat": 44.4594045,
            "lng": 8.9854886,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7616,
            "lat": 37.1884142,
            "lng": -1.9830509,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente Temprana"
        },
        {
            "id": 7618,
            "lat": 45.6061107,
            "lng": 9.2940425,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7620,
            "lat": 50.0743793,
            "lng": 8.6781108,
            "type": "poi",
            "category": "drinking_water",
            "title": "Königsbrünnchen"
        },
        {
            "id": 7621,
            "lat": 47.3694233,
            "lng": 8.5591857,
            "type": "poi",
            "category": "drinking_water",
            "title": "Wandbrunnen mit wasserspeiendem Löwenkopf"
        },
        {
            "id": 7622,
            "lat": 47.3470321,
            "lng": 8.5330291,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7623,
            "lat": 45.4209487,
            "lng": 5.9372583,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7624,
            "lat": 47.3727827,
            "lng": 8.5505355,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7625,
            "lat": 51.9571396,
            "lng": -1.3064181,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7626,
            "lat": 44.4078718,
            "lng": 8.9520812,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7627,
            "lat": 45.5094555,
            "lng": 9.4316367,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7628,
            "lat": 47.3136178,
            "lng": 4.7135234,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7629,
            "lat": 47.3327294,
            "lng": 8.5327476,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7630,
            "lat": 45.4974597,
            "lng": 9.2255043,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7631,
            "lat": 45.4951681,
            "lng": 9.2226441,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7632,
            "lat": 45.4926708,
            "lng": 9.2233939,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7633,
            "lat": 45.494076,
            "lng": 9.2254668,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7634,
            "lat": 45.4946821,
            "lng": 9.2223342,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7635,
            "lat": 44.4198946,
            "lng": 8.9211969,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7636,
            "lat": 47.3800843,
            "lng": 8.5483012,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7637,
            "lat": 45.7436278,
            "lng": 4.8611512,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7638,
            "lat": 48.4325999,
            "lng": 8.2122721,
            "type": "poi",
            "category": "drinking_water",
            "title": "Sophienquelle"
        },
        {
            "id": 7639,
            "lat": 48.4517708,
            "lng": 8.2433077,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7640,
            "lat": 44.4060978,
            "lng": 8.9431299,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7641,
            "lat": 45.744069,
            "lng": 4.8706274,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7642,
            "lat": 44.4014972,
            "lng": 8.9519809,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 50068,
            "lat": 35.6707931,
            "lng": 137.9114051,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 32292,
            "lat": 55.8765168,
            "lng": 37.4646047,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 32293,
            "lat": 51.1429399,
            "lng": 13.8073323,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 7644,
            "lat": 44.3997679,
            "lng": 8.9508995,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7645,
            "lat": 45.7472916,
            "lng": 4.89391,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7647,
            "lat": 49.447943,
            "lng": 8.689915,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drei Eichen Brunnen"
        },
        {
            "id": 7648,
            "lat": 46.5020362,
            "lng": 6.6954733,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7649,
            "lat": 46.5184473,
            "lng": 6.5896971,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7650,
            "lat": 46.51793,
            "lng": 6.5929976,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7651,
            "lat": 49.4278106,
            "lng": 8.6996439,
            "type": "poi",
            "category": "drinking_water",
            "title": "Schneeberg"
        },
        {
            "id": 7652,
            "lat": 48.2835362,
            "lng": 8.1661963,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7653,
            "lat": 48.2404755,
            "lng": 8.1787089,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7654,
            "lat": 48.1941548,
            "lng": 8.1853991,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7655,
            "lat": 46.516618,
            "lng": 6.6046682,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7656,
            "lat": 46.51373,
            "lng": 6.6070345,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7657,
            "lat": 44.4174538,
            "lng": 8.9550701,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7658,
            "lat": 44.4100513,
            "lng": 8.9541616,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7659,
            "lat": 42.4654652,
            "lng": -2.4417294,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7660,
            "lat": 47.3697713,
            "lng": 8.6953156,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7661,
            "lat": 47.3700272,
            "lng": 8.6939425,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7662,
            "lat": 47.3693751,
            "lng": 8.6933471,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7663,
            "lat": 47.3626745,
            "lng": 8.7007116,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7664,
            "lat": 46.5138896,
            "lng": 6.6004488,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7665,
            "lat": 44.3929302,
            "lng": 9.0050601,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7666,
            "lat": 48.8054706,
            "lng": 9.214651,
            "type": "poi",
            "category": "drinking_water",
            "title": "Polizeibrunnen"
        },
        {
            "id": 7667,
            "lat": 44.3862218,
            "lng": 9.0377063,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7668,
            "lat": 44.3864549,
            "lng": 9.0358695,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7669,
            "lat": 45.717705,
            "lng": 4.9046859,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7670,
            "lat": 44.416253,
            "lng": 8.8739634,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7671,
            "lat": 47.3215224,
            "lng": 8.7569242,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7672,
            "lat": 46.5170598,
            "lng": 6.59497,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7673,
            "lat": 46.5207175,
            "lng": 6.5869471,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7674,
            "lat": 44.3890712,
            "lng": 7.3714647,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 57442,
            "lat": 44.3891277,
            "lng": 8.6476591,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 57444,
            "lat": 51.8615611,
            "lng": 6.6087464,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 57445,
            "lat": 51.8613015,
            "lng": 6.6094981,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30030,
            "lat": 44.816739,
            "lng": 14.3415095,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28364,
            "lat": 38.5316185,
            "lng": -0.1593148,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28365,
            "lat": 38.5315831,
            "lng": -0.1593514,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28366,
            "lat": 38.5319458,
            "lng": -0.1587963,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 37526,
            "lat": -33.2498849,
            "lng": 115.8417417,
            "type": "poi",
            "category": "caravan_site",
            "title": "Brunswick Caravan Park"
        },
        {
            "id": 247,
            "lat": 54.674235,
            "lng": 10.0330784,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 248,
            "lat": 49.9105709,
            "lng": 13.5331337,
            "type": "poi",
            "category": "campsite",
            "title": "Kobylka"
        },
        {
            "id": 249,
            "lat": 59.45382,
            "lng": 10.704438,
            "type": "poi",
            "category": "campsite",
            "title": "Lurvelegg"
        },
        {
            "id": 250,
            "lat": 41.4324168,
            "lng": 23.5917141,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 251,
            "lat": 60.3009794,
            "lng": 24.6220313,
            "type": "poi",
            "category": "campsite",
            "title": "Kattilaniemen leirikeskus"
        },
        {
            "id": 252,
            "lat": 48.5142903,
            "lng": 14.51041,
            "type": "poi",
            "category": "campsite",
            "title": "Campingplatz Freistadt"
        },
        {
            "id": 253,
            "lat": 61.7188956,
            "lng": 17.1787614,
            "type": "poi",
            "category": "campsite",
            "title": "Malnbadens Camping & Vandrarhem"
        },
        {
            "id": 254,
            "lat": 59.185695,
            "lng": 15.8941922,
            "type": "poi",
            "category": "campsite",
            "title": "Fiskeboda Camping"
        },
        {
            "id": 255,
            "lat": 60.3115491,
            "lng": 24.4887678,
            "type": "poi",
            "category": "campsite",
            "title": "Iso-Holman pieni telttailualue"
        },
        {
            "id": 256,
            "lat": 46.5641092,
            "lng": 20.6285585,
            "type": "poi",
            "category": "campsite",
            "title": "Gyopárosi Kemping"
        },
        {
            "id": 257,
            "lat": 60.5861287,
            "lng": 16.5098814,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 259,
            "lat": 47.8540492,
            "lng": 10.1464684,
            "type": "poi",
            "category": "campsite",
            "title": "Umweltstation Unterallgäu"
        },
        {
            "id": 37527,
            "lat": 48.2832625,
            "lng": -116.3507381,
            "type": "poi",
            "category": "caravan_site",
            "title": "Trestle Creek"
        },
        {
            "id": 7676,
            "lat": 51.5124774,
            "lng": -0.3483708,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7677,
            "lat": 46.506355,
            "lng": 6.6266881,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7678,
            "lat": 46.5074276,
            "lng": 6.6242976,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7679,
            "lat": 47.5725655,
            "lng": 7.5925042,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7680,
            "lat": 46.5025058,
            "lng": 6.6935707,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7682,
            "lat": 44.4053193,
            "lng": 8.967158,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7683,
            "lat": 48.8100822,
            "lng": 9.216519,
            "type": "poi",
            "category": "drinking_water",
            "title": "Auquell-Brunnen"
        },
        {
            "id": 7684,
            "lat": 44.559768,
            "lng": 9.1727935,
            "type": "poi",
            "category": "drinking_water",
            "title": "Ciappa Sueňa"
        },
        {
            "id": 7685,
            "lat": 44.5638389,
            "lng": 9.1648626,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontana Buccaiusa"
        },
        {
            "id": 7687,
            "lat": 44.5597677,
            "lng": 9.1772771,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7688,
            "lat": 44.5254534,
            "lng": 9.1571683,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7689,
            "lat": 44.5228166,
            "lng": 9.1578949,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7690,
            "lat": 41.9191702,
            "lng": 8.7387126,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 30034,
            "lat": 44.8188841,
            "lng": 14.3487425,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28371,
            "lat": 38.5326469,
            "lng": -0.1574504,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28372,
            "lat": 38.5329178,
            "lng": -0.1569351,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27527,
            "lat": 36.7322851,
            "lng": -3.9773264,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28373,
            "lat": 38.5328909,
            "lng": -0.1569825,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28376,
            "lat": 38.5335818,
            "lng": -0.1556667,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52362,
            "lat": -33.5259992,
            "lng": -58.2112105,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28383,
            "lat": 38.5348454,
            "lng": -0.1537964,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 7693,
            "lat": 48.5605803,
            "lng": 9.0920079,
            "type": "poi",
            "category": "drinking_water",
            "title": "Jungbrunnen"
        },
        {
            "id": 7694,
            "lat": 48.5638837,
            "lng": 9.0931921,
            "type": "poi",
            "category": "drinking_water",
            "title": "Kirnbachbrunnen"
        },
        {
            "id": 7695,
            "lat": 54.9573519,
            "lng": 9.4229972,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7696,
            "lat": 50.7744865,
            "lng": 6.0835375,
            "type": "poi",
            "category": "drinking_water",
            "title": "Möschebrunnen"
        },
        {
            "id": 7697,
            "lat": 46.505171,
            "lng": 6.6695487,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7698,
            "lat": 48.8225108,
            "lng": 2.3086836,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7699,
            "lat": 48.773403,
            "lng": 9.1946108,
            "type": "poi",
            "category": "drinking_water",
            "title": "Salamanderbrunnen"
        },
        {
            "id": 7700,
            "lat": 52.1626949,
            "lng": 4.3487449,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7701,
            "lat": 52.1608011,
            "lng": 4.3627022,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7702,
            "lat": 46.5132835,
            "lng": 9.8618524,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7703,
            "lat": 49.1956641,
            "lng": 8.0365588,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7704,
            "lat": 47.3453001,
            "lng": 8.1974573,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7705,
            "lat": 47.324813,
            "lng": 8.2582628,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7706,
            "lat": 44.3308397,
            "lng": 9.1707342,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7707,
            "lat": 44.3240839,
            "lng": 9.1777131,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7708,
            "lat": 44.1490277,
            "lng": 8.2841096,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7709,
            "lat": 44.0713133,
            "lng": 7.2570853,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7710,
            "lat": 48.9985898,
            "lng": 8.4728529,
            "type": "poi",
            "category": "drinking_water",
            "title": "Bäderbrünnele"
        },
        {
            "id": 7711,
            "lat": 48.9747208,
            "lng": 8.4531954,
            "type": "poi",
            "category": "drinking_water",
            "title": "Wolfsbrunnen"
        },
        {
            "id": 7712,
            "lat": 48.9993605,
            "lng": 8.4695084,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7713,
            "lat": 49.0118117,
            "lng": 8.3844364,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7714,
            "lat": 48.9578387,
            "lng": 8.4668676,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7716,
            "lat": 48.9986438,
            "lng": 8.4871451,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7717,
            "lat": 49.000897,
            "lng": 8.4717096,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7718,
            "lat": 49.050615,
            "lng": 8.3758337,
            "type": "poi",
            "category": "drinking_water",
            "title": "Trogbrunnen"
        },
        {
            "id": 7719,
            "lat": 49.0542754,
            "lng": 8.380745,
            "type": "poi",
            "category": "drinking_water",
            "title": "Trogbrunnen"
        },
        {
            "id": 7720,
            "lat": 48.9664548,
            "lng": 8.3983315,
            "type": "poi",
            "category": "drinking_water",
            "title": "Rüppurrer Brünnele"
        },
        {
            "id": 7721,
            "lat": 48.9911582,
            "lng": 8.4886368,
            "type": "poi",
            "category": "drinking_water",
            "title": "Hotzerbrunnen"
        },
        {
            "id": 7722,
            "lat": 48.5003999,
            "lng": 9.0481401,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 28393,
            "lat": 38.536236,
            "lng": -0.149651,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28428,
            "lat": 46.9664462,
            "lng": 6.8730982,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2967,
            "lat": 45.324372,
            "lng": 4.8359087,
            "type": "poi",
            "category": "campsite",
            "title": "Les Guyots"
        },
        {
            "id": 7724,
            "lat": 47.5658431,
            "lng": 7.6217167,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7726,
            "lat": 46.5044633,
            "lng": 6.7010201,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7727,
            "lat": 48.3889705,
            "lng": 9.0606094,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7728,
            "lat": 46.8979929,
            "lng": 8.486983,
            "type": "poi",
            "category": "drinking_water",
            "title": "Quelle am Rundweg Gitschenen"
        },
        {
            "id": 7729,
            "lat": 45.7739358,
            "lng": 8.5916751,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7730,
            "lat": 46.0720939,
            "lng": 9.1680496,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7731,
            "lat": 46.0727202,
            "lng": 9.1669765,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7732,
            "lat": 46.0760173,
            "lng": 9.1734029,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7733,
            "lat": 46.0952747,
            "lng": 9.1900493,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7734,
            "lat": 45.7973023,
            "lng": 8.5686133,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7735,
            "lat": 45.7722283,
            "lng": 8.5768351,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7736,
            "lat": 36.9192386,
            "lng": -3.4959351,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de las Adelfas"
        },
        {
            "id": 7737,
            "lat": 45.5135954,
            "lng": 9.2198516,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7738,
            "lat": 47.2622174,
            "lng": 8.0655557,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7739,
            "lat": 47.2603372,
            "lng": 8.0642637,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7740,
            "lat": 47.2590248,
            "lng": 8.2345548,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7741,
            "lat": 50.1597664,
            "lng": 8.1023165,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen"
        },
        {
            "id": 7742,
            "lat": 46.5142711,
            "lng": 6.6235631,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7743,
            "lat": 44.1482204,
            "lng": 8.2816889,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7744,
            "lat": 45.4396464,
            "lng": 5.9211227,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7745,
            "lat": 42.7841076,
            "lng": -2.1197848,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7746,
            "lat": 45.5019769,
            "lng": 9.1756372,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7747,
            "lat": 45.4584046,
            "lng": 9.1672768,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7748,
            "lat": 48.8374403,
            "lng": 2.2720831,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7749,
            "lat": 45.4699474,
            "lng": 9.1596846,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7750,
            "lat": 45.4709129,
            "lng": 9.1616488,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7751,
            "lat": 46.517165,
            "lng": 6.6033696,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7752,
            "lat": 45.9415185,
            "lng": 9.4173219,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7753,
            "lat": 46.5140413,
            "lng": 6.6236398,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7754,
            "lat": 45.4891021,
            "lng": 9.1907583,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7755,
            "lat": 44.4243601,
            "lng": 8.8195994,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7756,
            "lat": 50.1788663,
            "lng": 7.505261,
            "type": "poi",
            "category": "drinking_water",
            "title": "Schönecker Stahlbrunnen"
        },
        {
            "id": 7757,
            "lat": 45.4737824,
            "lng": 9.2038858,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7758,
            "lat": 43.5539309,
            "lng": 5.5791196,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7759,
            "lat": 47.7503653,
            "lng": 9.3355851,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7760,
            "lat": 48.7558524,
            "lng": 2.2839234,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7762,
            "lat": 45.5361293,
            "lng": 9.247103,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7763,
            "lat": 47.5591528,
            "lng": 8.1116314,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7764,
            "lat": 47.394618,
            "lng": 8.5220262,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7765,
            "lat": 47.3996826,
            "lng": 8.529612,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7766,
            "lat": 48.644741,
            "lng": 8.1929835,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7767,
            "lat": 48.640571,
            "lng": 8.1860229,
            "type": "poi",
            "category": "drinking_water",
            "title": "Wittig-Brunnen"
        },
        {
            "id": 7768,
            "lat": 47.397059,
            "lng": 8.522915,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notwasserbrunnen"
        },
        {
            "id": 7769,
            "lat": 47.4004287,
            "lng": 8.5273559,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7770,
            "lat": 47.4032177,
            "lng": 8.5220445,
            "type": "poi",
            "category": "drinking_water",
            "title": "Holzbrunnen Käferberg"
        },
        {
            "id": 7771,
            "lat": 43.4064062,
            "lng": -8.1699373,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fonte de San Agostiño"
        },
        {
            "id": 7772,
            "lat": 43.4073424,
            "lng": -8.1720662,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7773,
            "lat": 43.407707,
            "lng": -8.1752588,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fonte de Porto"
        },
        {
            "id": 7774,
            "lat": 43.4057011,
            "lng": -8.1705501,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7775,
            "lat": 44.4585067,
            "lng": 8.7703207,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7776,
            "lat": 43.4077543,
            "lng": -8.171835,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7777,
            "lat": 43.405378,
            "lng": -8.1717953,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7778,
            "lat": 44.4734516,
            "lng": 8.7985084,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7779,
            "lat": 42.1816561,
            "lng": -2.1796399,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de Pedro"
        },
        {
            "id": 7780,
            "lat": 45.4683131,
            "lng": 9.2318354,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7781,
            "lat": 42.188479,
            "lng": -2.1808248,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7782,
            "lat": 42.2098917,
            "lng": -2.2397873,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7783,
            "lat": 49.3903727,
            "lng": 8.7038688,
            "type": "poi",
            "category": "drinking_water",
            "title": "Kolonialbrunnen"
        },
        {
            "id": 7784,
            "lat": 48.7772486,
            "lng": 9.1801153,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7785,
            "lat": 40.6307963,
            "lng": -4.1792161,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de la Naranjera"
        },
        {
            "id": 7786,
            "lat": 47.3755221,
            "lng": 8.5494214,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notwasserbrunnen"
        },
        {
            "id": 7787,
            "lat": 40.5521885,
            "lng": -3.6533622,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7788,
            "lat": 42.2133112,
            "lng": -2.167709,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7789,
            "lat": 50.8075681,
            "lng": 7.5610387,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7790,
            "lat": 51.9663586,
            "lng": 6.8581187,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7792,
            "lat": 47.3880701,
            "lng": 8.750369,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7793,
            "lat": 44.2762264,
            "lng": 7.7497745,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7794,
            "lat": 44.2752813,
            "lng": 7.7502869,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7795,
            "lat": 44.2766063,
            "lng": 7.7502096,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7796,
            "lat": 44.2900181,
            "lng": 7.7496206,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7797,
            "lat": 44.2944481,
            "lng": 7.7451913,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7798,
            "lat": 44.3062061,
            "lng": 7.7117211,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7799,
            "lat": 44.3035082,
            "lng": 7.7081537,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 25347,
            "lat": 43.4678264,
            "lng": 5.6558931,
            "type": "poi",
            "category": "toilets",
            "title": "Toilets"
        },
        {
            "id": 25348,
            "lat": 45.7444204,
            "lng": 4.8236592,
            "type": "poi",
            "category": "toilets",
            "title": "Sanitaire Public de la Place de l’Hippodrome"
        },
        {
            "id": 50173,
            "lat": 43.3259833,
            "lng": -88.2849067,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 7802,
            "lat": 44.2649728,
            "lng": 7.7337266,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7803,
            "lat": 44.2787154,
            "lng": 7.738872,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7804,
            "lat": 46.6835318,
            "lng": 7.8678472,
            "type": "poi",
            "category": "drinking_water",
            "title": "Oele"
        },
        {
            "id": 7805,
            "lat": 45.5357411,
            "lng": 5.9475198,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7807,
            "lat": 53.2650446,
            "lng": -6.315187,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7808,
            "lat": 46.3490809,
            "lng": 7.1556421,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7809,
            "lat": 46.356338,
            "lng": 7.1642474,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7810,
            "lat": 46.3427526,
            "lng": 7.1641885,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7811,
            "lat": 46.3387329,
            "lng": 7.1640949,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7812,
            "lat": 47.3563838,
            "lng": 8.5206289,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7813,
            "lat": 47.3418502,
            "lng": 8.5175923,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7814,
            "lat": 48.8445185,
            "lng": 9.1428869,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7815,
            "lat": 46.3528642,
            "lng": 7.1521857,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7816,
            "lat": 47.4982066,
            "lng": 7.7013743,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen"
        },
        {
            "id": 7817,
            "lat": 47.4009595,
            "lng": 8.5201971,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7818,
            "lat": 47.2016025,
            "lng": 8.5371919,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7819,
            "lat": 40.6142819,
            "lng": -4.1556546,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente del Cervunal"
        },
        {
            "id": 7820,
            "lat": 44.544153,
            "lng": 8.9559811,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7821,
            "lat": 44.520717,
            "lng": 8.9880487,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7822,
            "lat": 42.805812,
            "lng": -1.5225865,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7823,
            "lat": 48.0020917,
            "lng": -1.7731108,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7824,
            "lat": 45.0516445,
            "lng": 5.4495458,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7825,
            "lat": 49.5496192,
            "lng": 7.2295699,
            "type": "poi",
            "category": "drinking_water",
            "title": "Wassertretanlage"
        },
        {
            "id": 7826,
            "lat": 47.5573235,
            "lng": 7.6189398,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7827,
            "lat": 51.8317435,
            "lng": -1.3014615,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7828,
            "lat": 44.4078161,
            "lng": 9.180787,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7829,
            "lat": 45.5647467,
            "lng": 5.9285009,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7830,
            "lat": 46.5172951,
            "lng": 6.493977,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7831,
            "lat": 44.3469549,
            "lng": 9.1578966,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7832,
            "lat": 50.8054303,
            "lng": 6.482785,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7833,
            "lat": 40.4866776,
            "lng": 9.6649609,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7834,
            "lat": 40.2890962,
            "lng": 9.4943776,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7835,
            "lat": 40.439986,
            "lng": 9.6177269,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7836,
            "lat": 47.5742902,
            "lng": 7.6103696,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7837,
            "lat": 48.7831573,
            "lng": -3.0471961,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7838,
            "lat": 48.7074168,
            "lng": 8.2324459,
            "type": "poi",
            "category": "drinking_water",
            "title": "Wolfsbrunnen"
        },
        {
            "id": 7839,
            "lat": 47.7087753,
            "lng": 8.6260348,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7840,
            "lat": 47.5545569,
            "lng": 7.5973765,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7841,
            "lat": 40.0552212,
            "lng": 0.0644245,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7842,
            "lat": 40.0549723,
            "lng": 0.0646915,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7843,
            "lat": 46.2334604,
            "lng": 7.3401757,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 50198,
            "lat": 36.3212176,
            "lng": 59.640833,
            "type": "poi",
            "category": "shower",
            "title": "عدالتیان"
        },
        {
            "id": 7846,
            "lat": 46.2346175,
            "lng": 7.3612494,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7847,
            "lat": 46.2896758,
            "lng": 7.3970403,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7848,
            "lat": 54.6833064,
            "lng": 9.9934975,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7850,
            "lat": 48.572409,
            "lng": 8.2262676,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7851,
            "lat": 37.3716847,
            "lng": -6.0491141,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7852,
            "lat": 42.8555085,
            "lng": -1.623006,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7853,
            "lat": 47.5229369,
            "lng": 8.0923218,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7854,
            "lat": 46.6010302,
            "lng": 6.3693848,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7855,
            "lat": 47.3920452,
            "lng": 8.0446523,
            "type": "poi",
            "category": "drinking_water",
            "title": "Hartmann von Kyburg Brunnen"
        },
        {
            "id": 7856,
            "lat": 46.5598345,
            "lng": 9.8451861,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7857,
            "lat": 48.5482963,
            "lng": 8.2023987,
            "type": "poi",
            "category": "drinking_water",
            "title": "Karl-Friedrich-Brunnen"
        },
        {
            "id": 7858,
            "lat": 45.5164506,
            "lng": 9.1352009,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7859,
            "lat": 44.3863328,
            "lng": 9.039829,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7860,
            "lat": 44.3878802,
            "lng": 9.0423772,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7861,
            "lat": 47.5282458,
            "lng": 8.4674869,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7862,
            "lat": 47.3506472,
            "lng": 8.5262519,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7863,
            "lat": 47.7971941,
            "lng": 1.02664,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7864,
            "lat": 44.8288826,
            "lng": 8.2575838,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7865,
            "lat": 46.6337847,
            "lng": 8.5977579,
            "type": "poi",
            "category": "drinking_water",
            "title": "Faunbrunnen"
        },
        {
            "id": 7866,
            "lat": 48.8478893,
            "lng": 2.3992736,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 7867,
            "lat": 54.1752323,
            "lng": 7.8936701,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7868,
            "lat": 47.3664219,
            "lng": 8.5331196,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7869,
            "lat": 47.3655256,
            "lng": 8.5321706,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen mit \"wasserspeiendem Schwan\""
        },
        {
            "id": 7870,
            "lat": 47.357747,
            "lng": 8.5305655,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7871,
            "lat": 44.3878822,
            "lng": 9.0534025,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7872,
            "lat": 44.3854283,
            "lng": 9.0602393,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7873,
            "lat": 48.8480669,
            "lng": 2.2646701,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 7874,
            "lat": 47.2753229,
            "lng": 8.5744711,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7875,
            "lat": 50.9423988,
            "lng": -0.7507095,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7876,
            "lat": 44.3849446,
            "lng": 9.0608064,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7877,
            "lat": 44.386276,
            "lng": 9.0417079,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7878,
            "lat": 45.1646977,
            "lng": 9.2115758,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7879,
            "lat": 37.3559042,
            "lng": -2.2942387,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente Santiago Apostol"
        },
        {
            "id": 7880,
            "lat": 44.3782806,
            "lng": 9.0979772,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 50301,
            "lat": -41.8606635,
            "lng": -73.8217595,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 47664,
            "lat": -21.6274778,
            "lng": 165.7626092,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30049,
            "lat": 52.8441951,
            "lng": 18.7907926,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 7883,
            "lat": 43.9685751,
            "lng": 6.5082384,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7884,
            "lat": 43.9898261,
            "lng": 6.4546229,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7886,
            "lat": 47.3404709,
            "lng": 8.5048136,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7889,
            "lat": 44.4022383,
            "lng": 9.0304473,
            "type": "poi",
            "category": "drinking_water",
            "title": "Aegua du Perteusu"
        },
        {
            "id": 7890,
            "lat": 44.3947551,
            "lng": 9.0234756,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7891,
            "lat": 51.5129861,
            "lng": 7.4829755,
            "type": "poi",
            "category": "drinking_water",
            "title": "Trinkbrunnen"
        },
        {
            "id": 7892,
            "lat": 42.2204539,
            "lng": -2.1034042,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7893,
            "lat": 47.1644775,
            "lng": -2.1686057,
            "type": "poi",
            "category": "drinking_water",
            "title": "La Source"
        },
        {
            "id": 7894,
            "lat": 47.3467556,
            "lng": 8.0520572,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7895,
            "lat": 44.3978679,
            "lng": 9.0626119,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7896,
            "lat": 44.3803473,
            "lng": 9.060538,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7897,
            "lat": 43.5557318,
            "lng": 6.9386166,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7898,
            "lat": 48.7015011,
            "lng": 9.6444336,
            "type": "poi",
            "category": "drinking_water",
            "title": "Schickardt-Brunnen"
        },
        {
            "id": 7899,
            "lat": 44.542807,
            "lng": 9.1790702,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7900,
            "lat": 44.5408626,
            "lng": 9.1999637,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7901,
            "lat": 47.3281355,
            "lng": 8.5246005,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7902,
            "lat": 47.3291537,
            "lng": 8.5246515,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7903,
            "lat": 40.4458451,
            "lng": -3.6761993,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7906,
            "lat": 47.3679048,
            "lng": 8.545038,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7907,
            "lat": 47.5488505,
            "lng": 8.1151394,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7908,
            "lat": 47.3357501,
            "lng": 8.8564612,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7909,
            "lat": 45.5687431,
            "lng": 5.9190894,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7910,
            "lat": 46.5000446,
            "lng": 6.7030388,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7911,
            "lat": 47.3210012,
            "lng": 8.52747,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7912,
            "lat": 40.6451349,
            "lng": -3.9910349,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7913,
            "lat": 47.3363553,
            "lng": 8.5141664,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7914,
            "lat": 48.3677403,
            "lng": -4.759171,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7915,
            "lat": 47.3870135,
            "lng": 8.4908195,
            "type": "poi",
            "category": "drinking_water",
            "title": "Knabe mit Aal"
        },
        {
            "id": 50304,
            "lat": 6.3108363,
            "lng": 100.2456034,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30840,
            "lat": 51.3935438,
            "lng": 12.3269022,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30845,
            "lat": 49.2484673,
            "lng": 11.0941546,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30846,
            "lat": 49.2486849,
            "lng": 11.094158,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 7917,
            "lat": 53.4223225,
            "lng": -1.4362492,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7918,
            "lat": 53.4222359,
            "lng": -1.4350261,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7919,
            "lat": 53.4221841,
            "lng": -1.4340067,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7920,
            "lat": 47.3585076,
            "lng": 8.4976557,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen Oggenfuss"
        },
        {
            "id": 7921,
            "lat": 46.9601103,
            "lng": 6.8102474,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7922,
            "lat": 47.2135622,
            "lng": 7.5325212,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7923,
            "lat": 49.4839026,
            "lng": 8.4754762,
            "type": "poi",
            "category": "drinking_water",
            "title": "Trinkbrunnen am Wasserturm"
        },
        {
            "id": 7924,
            "lat": 49.4841747,
            "lng": 8.4757262,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7925,
            "lat": 44.4551666,
            "lng": 8.6624303,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7926,
            "lat": 44.4280855,
            "lng": 8.5962965,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fonte Terrin"
        },
        {
            "id": 7927,
            "lat": 44.1348648,
            "lng": 7.2418478,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7928,
            "lat": 44.680862,
            "lng": 8.7050218,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fonte Santa Limbania"
        },
        {
            "id": 7929,
            "lat": 44.6780262,
            "lng": 8.7034232,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fonte San Rocco 2"
        },
        {
            "id": 7930,
            "lat": 46.2424547,
            "lng": 6.0241094,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7931,
            "lat": 47.7210229,
            "lng": 9.2338144,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7932,
            "lat": 44.3178265,
            "lng": 8.4747776,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7933,
            "lat": 44.4847494,
            "lng": 8.8393768,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7934,
            "lat": 47.791762,
            "lng": 1.0671251,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7935,
            "lat": 44.3180857,
            "lng": 8.4709117,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7936,
            "lat": 48.7559449,
            "lng": 9.229495,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen Rohracker"
        },
        {
            "id": 7937,
            "lat": 49.85391,
            "lng": 8.9931267,
            "type": "poi",
            "category": "drinking_water",
            "title": "Sausteige"
        },
        {
            "id": 7938,
            "lat": 44.4246037,
            "lng": 8.8494831,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7939,
            "lat": 44.425609,
            "lng": 8.8477322,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7940,
            "lat": 44.4369027,
            "lng": 8.6459321,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fonte Fasciun"
        },
        {
            "id": 7941,
            "lat": 47.5221723,
            "lng": 8.1800452,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7942,
            "lat": 44.424553,
            "lng": 8.8477457,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7943,
            "lat": 50.8866257,
            "lng": 8.2858949,
            "type": "poi",
            "category": "drinking_water",
            "title": "Heilige Ilsequelle"
        },
        {
            "id": 7944,
            "lat": 40.2024837,
            "lng": -0.2286659,
            "type": "poi",
            "category": "drinking_water",
            "title": "Font de la Torre"
        },
        {
            "id": 7945,
            "lat": 45.4074838,
            "lng": 6.1854516,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7946,
            "lat": 45.5129343,
            "lng": 9.449163,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7947,
            "lat": 45.5151052,
            "lng": 9.4540325,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7948,
            "lat": 49.3908497,
            "lng": 8.8300133,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7950,
            "lat": 45.5449879,
            "lng": 9.2420645,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7951,
            "lat": 45.546514,
            "lng": 9.2442497,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7952,
            "lat": 44.4341582,
            "lng": 8.7099624,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 28459,
            "lat": 49.3939156,
            "lng": 8.8103498,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 43611,
            "lat": 43.6800031,
            "lng": 133.6094478,
            "type": "poi",
            "category": "caravan_site",
            "title": "9"
        },
        {
            "id": 7954,
            "lat": 45.5361936,
            "lng": 9.1918016,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7955,
            "lat": 45.5363384,
            "lng": 9.190899,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7956,
            "lat": 45.5414511,
            "lng": 9.1908366,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7957,
            "lat": 45.5407535,
            "lng": 9.1901001,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7958,
            "lat": 45.5409925,
            "lng": 9.1926511,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7959,
            "lat": 45.7664354,
            "lng": 8.6142275,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7960,
            "lat": 47.3850652,
            "lng": 8.791723,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7962,
            "lat": 36.7461774,
            "lng": -3.8800228,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7963,
            "lat": 45.9275729,
            "lng": 9.3304899,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7964,
            "lat": 45.929442,
            "lng": 9.3396961,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7965,
            "lat": 45.9329213,
            "lng": 9.3544363,
            "type": "poi",
            "category": "drinking_water",
            "title": "Acqua Bianca"
        },
        {
            "id": 7966,
            "lat": 45.9429974,
            "lng": 9.3574295,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7967,
            "lat": 44.4273501,
            "lng": 8.8440499,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7968,
            "lat": 48.6824301,
            "lng": 9.6259365,
            "type": "poi",
            "category": "drinking_water",
            "title": "Sauerbrunnen"
        },
        {
            "id": 7969,
            "lat": 44.4246672,
            "lng": 8.8485622,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7970,
            "lat": 44.4322373,
            "lng": 8.4774101,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7971,
            "lat": 44.4320196,
            "lng": 8.4778746,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7972,
            "lat": 44.4297178,
            "lng": 8.4741256,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7973,
            "lat": 46.1091627,
            "lng": 7.2364114,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7974,
            "lat": 48.5593786,
            "lng": 8.1679794,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7975,
            "lat": 44.334833,
            "lng": 8.3442188,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7976,
            "lat": 46.7383045,
            "lng": 7.6133679,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7977,
            "lat": 47.442286,
            "lng": 7.8249931,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7978,
            "lat": 50.2294297,
            "lng": 8.4509106,
            "type": "poi",
            "category": "drinking_water",
            "title": "Feldbergborn"
        },
        {
            "id": 7979,
            "lat": 45.4620254,
            "lng": 9.1594824,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7980,
            "lat": 39.4090173,
            "lng": -0.7837061,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de la Estrella"
        },
        {
            "id": 7981,
            "lat": 43.5549146,
            "lng": 6.9388396,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7982,
            "lat": 42.915823,
            "lng": 2.2074293,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7983,
            "lat": 42.9160364,
            "lng": 2.2070912,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7984,
            "lat": 45.9308249,
            "lng": 9.4329226,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7985,
            "lat": 45.5656252,
            "lng": 5.9394298,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7986,
            "lat": 45.7800428,
            "lng": 8.6335143,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7987,
            "lat": 45.7869442,
            "lng": 8.6193024,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7988,
            "lat": 48.0705086,
            "lng": 8.4015471,
            "type": "poi",
            "category": "drinking_water",
            "title": "Romäusquelle"
        },
        {
            "id": 7989,
            "lat": 47.4007253,
            "lng": 8.5172153,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7990,
            "lat": 44.4382832,
            "lng": 8.8544705,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7991,
            "lat": 40.4812719,
            "lng": -3.669598,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 30050,
            "lat": 54.5737425,
            "lng": 13.4680245,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 43612,
            "lat": 43.6778221,
            "lng": 133.6092395,
            "type": "poi",
            "category": "caravan_site",
            "title": "18"
        },
        {
            "id": 48071,
            "lat": 32.7858779,
            "lng": -79.7856851,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 7993,
            "lat": 40.4818256,
            "lng": -3.667237,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7994,
            "lat": 40.481571,
            "lng": -3.6667048,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7996,
            "lat": 36.745112,
            "lng": -3.8759507,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7997,
            "lat": 36.75136,
            "lng": -3.876534,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente Cantarero"
        },
        {
            "id": 7998,
            "lat": 36.7488002,
            "lng": -3.8785599,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 7999,
            "lat": 47.3609138,
            "lng": 8.4872776,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8000,
            "lat": 36.7910354,
            "lng": -3.895286,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8002,
            "lat": 45.4608268,
            "lng": 5.8640212,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8003,
            "lat": 48.4542154,
            "lng": 7.9957169,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8004,
            "lat": 40.496832,
            "lng": -3.7193045,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8005,
            "lat": 40.4789782,
            "lng": -3.7394375,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8006,
            "lat": 40.5056312,
            "lng": -3.710109,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8007,
            "lat": 40.4918554,
            "lng": -3.7229501,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8008,
            "lat": 47.1100683,
            "lng": 6.8294921,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8009,
            "lat": 40.5088746,
            "lng": -3.703219,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8010,
            "lat": 40.5091616,
            "lng": -3.6906289,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8011,
            "lat": 40.5068538,
            "lng": -3.685531,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8012,
            "lat": 40.5028865,
            "lng": -3.6614202,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8013,
            "lat": 47.7597703,
            "lng": 7.5487663,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8014,
            "lat": 47.7590234,
            "lng": 7.5498017,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8015,
            "lat": 47.7581102,
            "lng": 7.5507601,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8016,
            "lat": 47.7597786,
            "lng": 7.5493708,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8017,
            "lat": 47.7617521,
            "lng": 7.5484034,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8018,
            "lat": 47.7616578,
            "lng": 7.5492356,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8019,
            "lat": 47.3646246,
            "lng": 8.5378423,
            "type": "poi",
            "category": "drinking_water",
            "title": "Bluntschlibrunnen"
        },
        {
            "id": 8020,
            "lat": 47.802075,
            "lng": 0.9907065,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8021,
            "lat": 46.103268,
            "lng": 7.2006664,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8022,
            "lat": 46.1050423,
            "lng": 7.1986193,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8023,
            "lat": 48.6473298,
            "lng": 8.168241,
            "type": "poi",
            "category": "drinking_water",
            "title": "Neugrittbrunnen 1981"
        },
        {
            "id": 8024,
            "lat": 44.4618049,
            "lng": 8.838898,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8025,
            "lat": 40.4556859,
            "lng": -3.6137479,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8026,
            "lat": 47.3945407,
            "lng": 8.7727304,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8027,
            "lat": 47.4107941,
            "lng": 8.7928802,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8028,
            "lat": 47.3641112,
            "lng": 8.5261455,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brauerbrunnen"
        },
        {
            "id": 8029,
            "lat": 40.0390119,
            "lng": 0.053866,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8030,
            "lat": 47.3929285,
            "lng": 8.5511825,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 30051,
            "lat": 54.3417757,
            "lng": 13.5039881,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8033,
            "lat": 44.4028025,
            "lng": 8.9508335,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 30144,
            "lat": 53.2078737,
            "lng": 12.7863513,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8034,
            "lat": 47.5164402,
            "lng": 8.1877642,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8035,
            "lat": 44.380366,
            "lng": 9.0520628,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8036,
            "lat": 44.3801579,
            "lng": 9.0518108,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8037,
            "lat": 47.135452,
            "lng": 8.0111186,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8038,
            "lat": 40.05472,
            "lng": 0.0559272,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8039,
            "lat": 40.0530363,
            "lng": 0.060015,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8040,
            "lat": 46.086366,
            "lng": 7.2410343,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8041,
            "lat": 50.896414,
            "lng": -0.4110784,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8042,
            "lat": 47.5344201,
            "lng": 8.1567318,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8043,
            "lat": 47.3762652,
            "lng": 8.5266665,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fischbrunnen"
        },
        {
            "id": 8044,
            "lat": 47.5238031,
            "lng": 8.1799464,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8045,
            "lat": 45.1531033,
            "lng": 9.184437,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8046,
            "lat": 41.366902,
            "lng": 2.158492,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8047,
            "lat": 41.3671144,
            "lng": 2.1452856,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8048,
            "lat": 41.3671107,
            "lng": 2.1444154,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8049,
            "lat": 41.3762275,
            "lng": 2.1527574,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8050,
            "lat": 47.3758826,
            "lng": 8.5233165,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8051,
            "lat": 47.3791232,
            "lng": 8.4954871,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8053,
            "lat": 47.3103674,
            "lng": 8.6491523,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8054,
            "lat": 47.3743565,
            "lng": 8.5254056,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8055,
            "lat": 47.4023779,
            "lng": 8.4893214,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8056,
            "lat": 50.593224,
            "lng": -1.2055357,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8057,
            "lat": 48.9892976,
            "lng": 9.4083763,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8058,
            "lat": 41.3378783,
            "lng": -3.0597833,
            "type": "poi",
            "category": "drinking_water",
            "title": "Tarancueña"
        },
        {
            "id": 8059,
            "lat": 47.3730866,
            "lng": 8.5333989,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8060,
            "lat": 47.3615291,
            "lng": 8.7840251,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8061,
            "lat": 48.9651339,
            "lng": 8.6114026,
            "type": "poi",
            "category": "drinking_water",
            "title": "Wette"
        },
        {
            "id": 8063,
            "lat": 47.4234553,
            "lng": 8.5661132,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 3912,
            "lat": 52.3494818,
            "lng": 0.5320994,
            "type": "poi",
            "category": "campsite",
            "title": "Woodlands Park"
        },
        {
            "id": 8064,
            "lat": 47.352257,
            "lng": 8.507129,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8066,
            "lat": 47.5477233,
            "lng": 8.6222226,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8067,
            "lat": 47.3629755,
            "lng": 8.7983082,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8068,
            "lat": 48.7645608,
            "lng": 9.422618,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fallenhauquelle"
        },
        {
            "id": 8069,
            "lat": 45.5603073,
            "lng": 5.925362,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Saint-Martin"
        },
        {
            "id": 8070,
            "lat": 47.1234764,
            "lng": 8.0289756,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8071,
            "lat": 38.2606265,
            "lng": -0.6942386,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8072,
            "lat": 38.2613755,
            "lng": -0.6951863,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8073,
            "lat": 38.2705573,
            "lng": -0.6974399,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8074,
            "lat": 38.2709175,
            "lng": -0.6969072,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8075,
            "lat": 38.2675073,
            "lng": -0.6978789,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8076,
            "lat": 47.0274483,
            "lng": 7.4965612,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8077,
            "lat": 47.029035,
            "lng": 7.5014099,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8078,
            "lat": 45.434792,
            "lng": 9.1087219,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8079,
            "lat": 47.3686956,
            "lng": 8.5343104,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8080,
            "lat": 42.7668871,
            "lng": -1.6095016,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8081,
            "lat": 47.1316027,
            "lng": 8.0152628,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8082,
            "lat": 47.4866444,
            "lng": 8.1991574,
            "type": "poi",
            "category": "drinking_water",
            "title": "Mühlehaldebrunnen"
        },
        {
            "id": 8083,
            "lat": 47.4833728,
            "lng": 8.1763617,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8084,
            "lat": 47.4842409,
            "lng": 8.1863164,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8085,
            "lat": 47.1742952,
            "lng": 7.460634,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8086,
            "lat": 45.5562988,
            "lng": 9.173404,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8087,
            "lat": 45.5557801,
            "lng": 9.1846714,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8088,
            "lat": 50.0507288,
            "lng": 7.7665336,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8089,
            "lat": 50.0508501,
            "lng": 7.7668079,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8090,
            "lat": 50.050538,
            "lng": 7.7658868,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8091,
            "lat": 48.6592368,
            "lng": 8.265784,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8092,
            "lat": 50.2720074,
            "lng": 8.5408719,
            "type": "poi",
            "category": "drinking_water",
            "title": "Alte Obernhainer Quelle"
        },
        {
            "id": 8093,
            "lat": 49.2296156,
            "lng": 7.103738,
            "type": "poi",
            "category": "drinking_water",
            "title": "Matzenbrunnen"
        },
        {
            "id": 8094,
            "lat": 47.4849711,
            "lng": 8.2054536,
            "type": "poi",
            "category": "drinking_water",
            "title": "Kirchhofbrunnen"
        },
        {
            "id": 8095,
            "lat": 49.5409602,
            "lng": 7.2904701,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 48100,
            "lat": 27.1023398,
            "lng": 33.8383353,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50405,
            "lat": 41.0397919,
            "lng": 75.5313465,
            "type": "poi",
            "category": "shower",
            "title": "Кыргызская баня"
        },
        {
            "id": 27752,
            "lat": 51.4499909,
            "lng": 8.3441633,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27753,
            "lat": 43.0339549,
            "lng": 6.1611519,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8097,
            "lat": 51.5630213,
            "lng": -0.1682941,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8098,
            "lat": 44.583766,
            "lng": 9.0224511,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8100,
            "lat": 47.3671242,
            "lng": 8.6379009,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8101,
            "lat": 48.6664305,
            "lng": 8.2570176,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8102,
            "lat": 48.668971,
            "lng": 8.2588229,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8103,
            "lat": 36.492132,
            "lng": -5.1877832,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente Arroyo Abrón"
        },
        {
            "id": 8104,
            "lat": 48.3950157,
            "lng": 8.4060869,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8105,
            "lat": 44.5725577,
            "lng": 9.1165229,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8106,
            "lat": 48.3900755,
            "lng": 8.3692564,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8107,
            "lat": 48.7903015,
            "lng": 8.2310402,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8108,
            "lat": 42.4653067,
            "lng": -2.4282405,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8109,
            "lat": 47.3623576,
            "lng": 8.7204657,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8110,
            "lat": 47.4031285,
            "lng": 8.5139683,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8111,
            "lat": 47.1878435,
            "lng": 7.7018903,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8112,
            "lat": 39.9886474,
            "lng": -0.0344688,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8113,
            "lat": 48.7238314,
            "lng": 8.1921474,
            "type": "poi",
            "category": "drinking_water",
            "title": "Gasseckbrünnele"
        },
        {
            "id": 8114,
            "lat": 44.4551487,
            "lng": 9.0209842,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8115,
            "lat": 46.11095,
            "lng": 7.2184523,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8116,
            "lat": 45.7992746,
            "lng": 8.8288701,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8117,
            "lat": 47.2960431,
            "lng": 9.6570913,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8118,
            "lat": 45.5528508,
            "lng": 9.1939012,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8119,
            "lat": 45.5508562,
            "lng": 9.1858123,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8120,
            "lat": 47.8658528,
            "lng": 7.7326269,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen"
        },
        {
            "id": 8121,
            "lat": 47.2940085,
            "lng": 9.6633581,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8122,
            "lat": 47.3552836,
            "lng": 8.724958,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8123,
            "lat": 47.2985427,
            "lng": 8.4493177,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8124,
            "lat": 48.5675268,
            "lng": 9.059654,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen Kaltenbüchle"
        },
        {
            "id": 8125,
            "lat": 47.5872383,
            "lng": 7.6545702,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8126,
            "lat": 46.188281,
            "lng": 7.2074355,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8127,
            "lat": 47.5946145,
            "lng": 7.6464363,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8128,
            "lat": 47.5938451,
            "lng": 7.6421524,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8129,
            "lat": 40.4455005,
            "lng": -3.8592801,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8130,
            "lat": 37.9129156,
            "lng": -6.7248668,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8131,
            "lat": 44.4252946,
            "lng": 8.6213217,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8132,
            "lat": 44.4333149,
            "lng": 8.6171736,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fonte Spinsu"
        },
        {
            "id": 30175,
            "lat": 45.749744,
            "lng": 13.6559468,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30859,
            "lat": 41.340773,
            "lng": 36.2651319,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30860,
            "lat": 41.3446699,
            "lng": 36.256269,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30861,
            "lat": 41.3466836,
            "lng": 36.2531924,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28906,
            "lat": 52.5188572,
            "lng": 5.0738688,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8134,
            "lat": 53.3488877,
            "lng": -6.5306928,
            "type": "poi",
            "category": "drinking_water",
            "title": "CHC at The West Wing"
        },
        {
            "id": 8135,
            "lat": 42.2088382,
            "lng": -2.2397066,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8136,
            "lat": 47.3692806,
            "lng": 8.5908081,
            "type": "poi",
            "category": "drinking_water",
            "title": "Findlingsbrunnen"
        },
        {
            "id": 8137,
            "lat": 47.3742091,
            "lng": 8.5911842,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8138,
            "lat": 47.2911059,
            "lng": 9.6634712,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8139,
            "lat": 47.4352857,
            "lng": 8.7170059,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8140,
            "lat": 47.4363112,
            "lng": 8.7172125,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8141,
            "lat": 47.3650582,
            "lng": 8.5540209,
            "type": "poi",
            "category": "drinking_water",
            "title": "Quelle"
        },
        {
            "id": 8142,
            "lat": 51.9886275,
            "lng": 9.2530409,
            "type": "poi",
            "category": "drinking_water",
            "title": "Friedrichsquelle"
        },
        {
            "id": 8143,
            "lat": 44.8991876,
            "lng": -0.6402433,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8144,
            "lat": 44.9012856,
            "lng": -0.6436901,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8145,
            "lat": 44.9004983,
            "lng": -0.6467272,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8146,
            "lat": 47.3651667,
            "lng": 8.502468,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notwasserbrunnen"
        },
        {
            "id": 8147,
            "lat": 47.5433606,
            "lng": 7.8718577,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8148,
            "lat": 44.3893857,
            "lng": 8.6444001,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8149,
            "lat": 39.8296492,
            "lng": -6.0347578,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente del Francés"
        },
        {
            "id": 8150,
            "lat": 47.9106166,
            "lng": 7.774246,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8151,
            "lat": 45.554681,
            "lng": 9.180467,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8152,
            "lat": 47.5858659,
            "lng": 7.6574772,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8153,
            "lat": 45.552392,
            "lng": 9.1809759,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8154,
            "lat": 45.55119,
            "lng": 9.1821107,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8155,
            "lat": 45.0697188,
            "lng": 5.5499644,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8156,
            "lat": 42.467088,
            "lng": -2.4244184,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8157,
            "lat": 42.4718558,
            "lng": -2.4329294,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8158,
            "lat": 42.4716018,
            "lng": -2.436449,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8159,
            "lat": 47.3940915,
            "lng": 8.5421742,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8160,
            "lat": 47.3898352,
            "lng": 8.5490429,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8161,
            "lat": 39.6898972,
            "lng": -0.4225233,
            "type": "poi",
            "category": "drinking_water",
            "title": "Font de Sant Josep"
        },
        {
            "id": 8162,
            "lat": 48.3110327,
            "lng": 7.9405888,
            "type": "poi",
            "category": "drinking_water",
            "title": "Katharinenbrunnen"
        },
        {
            "id": 8163,
            "lat": 51.986566,
            "lng": 9.2547441,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnenausgabe"
        },
        {
            "id": 8164,
            "lat": 47.5855876,
            "lng": 7.6519329,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8165,
            "lat": 47.497201,
            "lng": 8.1196964,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 50411,
            "lat": 42.4992142,
            "lng": -71.2651529,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30867,
            "lat": 53.6502276,
            "lng": 10.833626,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50444,
            "lat": -44.7052316,
            "lng": 169.108175,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8167,
            "lat": 47.5822222,
            "lng": 7.6547331,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8169,
            "lat": 47.3402731,
            "lng": 8.6691516,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8171,
            "lat": 47.6833472,
            "lng": 9.2029862,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8172,
            "lat": 43.5848773,
            "lng": 1.4534512,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 8173,
            "lat": 47.3834366,
            "lng": 8.6729696,
            "type": "poi",
            "category": "drinking_water",
            "title": "Dorfbrunnen Zimikon"
        },
        {
            "id": 8174,
            "lat": 45.6704804,
            "lng": 9.657106,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8175,
            "lat": 45.6623086,
            "lng": 9.6771123,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8176,
            "lat": 45.6628628,
            "lng": 9.6752592,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8177,
            "lat": 45.6632636,
            "lng": 9.676301,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8178,
            "lat": 45.6595311,
            "lng": 9.6728113,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8179,
            "lat": 45.6595695,
            "lng": 9.6746841,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8180,
            "lat": 45.6582303,
            "lng": 9.6692131,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8181,
            "lat": 42.4619835,
            "lng": -2.406319,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8182,
            "lat": 42.462185,
            "lng": -2.4085626,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8183,
            "lat": 45.4646163,
            "lng": 9.19244,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8184,
            "lat": 45.4634738,
            "lng": 9.1937656,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8185,
            "lat": 48.7851686,
            "lng": 9.5066504,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8186,
            "lat": 48.8249645,
            "lng": 9.7104421,
            "type": "poi",
            "category": "drinking_water",
            "title": "Moltenwaldbrunnen"
        },
        {
            "id": 8187,
            "lat": 47.2874904,
            "lng": 8.6705268,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8188,
            "lat": 45.6612075,
            "lng": 9.6758748,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8189,
            "lat": 47.3407384,
            "lng": 8.6669951,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8190,
            "lat": 47.5882083,
            "lng": 7.6843707,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8191,
            "lat": 47.2667388,
            "lng": 8.851571,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8192,
            "lat": 45.044045,
            "lng": 6.2938391,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8193,
            "lat": 45.5495033,
            "lng": 9.1951825,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8194,
            "lat": 53.746276,
            "lng": 9.0616209,
            "type": "poi",
            "category": "drinking_water",
            "title": "Water for free"
        },
        {
            "id": 8195,
            "lat": 51.2266713,
            "lng": 8.9983757,
            "type": "poi",
            "category": "drinking_water",
            "title": "Hollenstein Brunnen"
        },
        {
            "id": 8196,
            "lat": 47.569523,
            "lng": 7.6518964,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8197,
            "lat": 45.4182175,
            "lng": 9.069604,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8198,
            "lat": 45.5489748,
            "lng": 9.1909508,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8199,
            "lat": 45.5489503,
            "lng": 9.1914242,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8200,
            "lat": 48.7606744,
            "lng": 9.5483124,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen"
        },
        {
            "id": 8201,
            "lat": 44.2781126,
            "lng": 7.7369995,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8202,
            "lat": 44.2689323,
            "lng": 7.7281544,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8203,
            "lat": 47.3596068,
            "lng": 8.499976,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 30877,
            "lat": 54.9743443,
            "lng": 10.4203621,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28526,
            "lat": 41.07514,
            "lng": 1.1254096,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 1032,
            "lat": 54.7077365,
            "lng": 20.616052,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 8205,
            "lat": 47.2784724,
            "lng": 8.860406,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8206,
            "lat": 47.6926211,
            "lng": 9.1937473,
            "type": "poi",
            "category": "drinking_water",
            "title": "Dorfbrunnen"
        },
        {
            "id": 8207,
            "lat": 44.3861128,
            "lng": 7.5439852,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8208,
            "lat": 45.4036522,
            "lng": 9.0378957,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8209,
            "lat": 45.4018717,
            "lng": 9.0366046,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8211,
            "lat": 45.0460209,
            "lng": 5.0544429,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8212,
            "lat": 43.3775106,
            "lng": -3.7210132,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de La Plata"
        },
        {
            "id": 8213,
            "lat": 50.8663682,
            "lng": -0.0558785,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8214,
            "lat": 43.3646693,
            "lng": -3.7145314,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de La Edilla"
        },
        {
            "id": 8215,
            "lat": 41.8078792,
            "lng": -2.1005798,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente del Madero"
        },
        {
            "id": 8216,
            "lat": 41.5898935,
            "lng": -2.4328889,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8217,
            "lat": 40.3119995,
            "lng": 0.1211946,
            "type": "poi",
            "category": "drinking_water",
            "title": "Font de la Vila"
        },
        {
            "id": 8218,
            "lat": 49.8264283,
            "lng": 8.5344015,
            "type": "poi",
            "category": "drinking_water",
            "title": "Goller Brünchen"
        },
        {
            "id": 8219,
            "lat": 45.2281834,
            "lng": 6.7414508,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine"
        },
        {
            "id": 8220,
            "lat": 41.7644862,
            "lng": -2.4761151,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8221,
            "lat": 50.825269,
            "lng": -0.2921811,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8222,
            "lat": 47.2682954,
            "lng": 8.8610567,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8223,
            "lat": 47.2678394,
            "lng": 8.8521499,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8224,
            "lat": 45.8083123,
            "lng": 9.0884129,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8225,
            "lat": 45.6728834,
            "lng": 9.6656496,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8226,
            "lat": 45.5474522,
            "lng": 9.189499,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8227,
            "lat": 44.4307919,
            "lng": 8.6985602,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fonte Lupara"
        },
        {
            "id": 8228,
            "lat": 44.4215431,
            "lng": 8.6763947,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8229,
            "lat": 44.4245051,
            "lng": 8.6762633,
            "type": "poi",
            "category": "drinking_water",
            "title": "Sopra Brassetto"
        },
        {
            "id": 8230,
            "lat": 44.4223793,
            "lng": 8.6778156,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brassetto"
        },
        {
            "id": 8231,
            "lat": 44.4164609,
            "lng": 8.6777766,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8232,
            "lat": 40.842553,
            "lng": -3.4647752,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8233,
            "lat": 48.0516678,
            "lng": 7.6811948,
            "type": "poi",
            "category": "drinking_water",
            "title": "Wasenweiler Dorfbrunnen"
        },
        {
            "id": 8234,
            "lat": 48.0506666,
            "lng": 7.6799552,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8235,
            "lat": 45.5556236,
            "lng": 9.1925487,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8236,
            "lat": 45.6602766,
            "lng": 9.6756984,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8237,
            "lat": 44.411543,
            "lng": 8.6778215,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8238,
            "lat": 45.4377429,
            "lng": 9.2202272,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8239,
            "lat": 46.1837176,
            "lng": 5.3307203,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8240,
            "lat": 45.6883296,
            "lng": 9.6155579,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8241,
            "lat": 40.9253381,
            "lng": -3.1471931,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8242,
            "lat": 45.5471426,
            "lng": 9.1816902,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 30346,
            "lat": 54.4563217,
            "lng": 11.2730203,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 651,
            "lat": 44.0379355,
            "lng": 40.4296764,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 652,
            "lat": 43.9714878,
            "lng": 40.4715268,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 653,
            "lat": 43.9582855,
            "lng": 40.6602971,
            "type": "poi",
            "category": "campsite",
            "title": "сгоревший дом"
        },
        {
            "id": 654,
            "lat": 43.9665152,
            "lng": 40.6074575,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 655,
            "lat": 43.1873547,
            "lng": 18.9352125,
            "type": "poi",
            "category": "campsite",
            "title": "Eco Village Milogora"
        },
        {
            "id": 656,
            "lat": 43.6725747,
            "lng": 17.9139128,
            "type": "poi",
            "category": "campsite",
            "title": "Camp Oaza"
        },
        {
            "id": 657,
            "lat": 44.2813888,
            "lng": 17.2630081,
            "type": "poi",
            "category": "campsite",
            "title": "Auto Camp Vinac"
        },
        {
            "id": 658,
            "lat": 60.763757,
            "lng": 21.4233358,
            "type": "poi",
            "category": "campsite",
            "title": "Rairanta SF-Caravan"
        },
        {
            "id": 659,
            "lat": 45.3951204,
            "lng": 16.6275214,
            "type": "poi",
            "category": "campsite",
            "title": "Appartment Camp Vitkovic"
        },
        {
            "id": 660,
            "lat": 50.4502876,
            "lng": 14.1565601,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 661,
            "lat": 46.9776983,
            "lng": 25.5696474,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Hóvirág"
        },
        {
            "id": 664,
            "lat": 50.3176443,
            "lng": 13.0270057,
            "type": "poi",
            "category": "campsite",
            "title": "Tábořiště Ve Mlýně"
        },
        {
            "id": 1361,
            "lat": 66.2110897,
            "lng": 33.1409439,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 8244,
            "lat": 50.1314238,
            "lng": 8.0656219,
            "type": "poi",
            "category": "drinking_water",
            "title": "Schwalbenbrunnen"
        },
        {
            "id": 8245,
            "lat": 50.13746,
            "lng": 8.0677803,
            "type": "poi",
            "category": "drinking_water",
            "title": "Weinbrunnen"
        },
        {
            "id": 8246,
            "lat": 50.1444169,
            "lng": 8.0758755,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brodelbrunnen"
        },
        {
            "id": 8248,
            "lat": 47.4661741,
            "lng": 7.8115744,
            "type": "poi",
            "category": "drinking_water",
            "title": "Gausibrunnen"
        },
        {
            "id": 8249,
            "lat": 45.7552215,
            "lng": 4.8401375,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8250,
            "lat": 45.6636418,
            "lng": 9.6773868,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8251,
            "lat": 45.3199564,
            "lng": 6.086631,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8252,
            "lat": 52.0300419,
            "lng": -1.8259644,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8253,
            "lat": 45.815764,
            "lng": 8.8330353,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8254,
            "lat": 45.8891128,
            "lng": 8.7888711,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontana dei Ciclisti"
        },
        {
            "id": 8255,
            "lat": 41.9524485,
            "lng": 2.6160452,
            "type": "poi",
            "category": "drinking_water",
            "title": "Font Picant de la Fanera"
        },
        {
            "id": 8256,
            "lat": 41.9861494,
            "lng": -2.352213,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8257,
            "lat": 40.0169378,
            "lng": 0.0254188,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8258,
            "lat": 48.9921629,
            "lng": 8.4149448,
            "type": "poi",
            "category": "drinking_water",
            "title": "Grottenbrunnen"
        },
        {
            "id": 8259,
            "lat": 48.694035,
            "lng": 9.701359,
            "type": "poi",
            "category": "drinking_water",
            "title": "Barbarossabrunnen"
        },
        {
            "id": 8260,
            "lat": 48.6138507,
            "lng": 8.210454,
            "type": "poi",
            "category": "drinking_water",
            "title": "Harzbrunnenquelle"
        },
        {
            "id": 8261,
            "lat": 51.2291238,
            "lng": 4.425756,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8262,
            "lat": 40.060858,
            "lng": 0.060116,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 28532,
            "lat": 43.5577476,
            "lng": 4.0466874,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30347,
            "lat": 54.4564937,
            "lng": 11.2729969,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 47707,
            "lat": 18.5089327,
            "lng": -72.2726787,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27587,
            "lat": 46.2085199,
            "lng": 6.1630088,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 680,
            "lat": 48.1775917,
            "lng": 37.9810163,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 8264,
            "lat": 39.8817821,
            "lng": -0.5135417,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de San Rafael"
        },
        {
            "id": 8265,
            "lat": 45.5571919,
            "lng": 8.9713635,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8266,
            "lat": 42.7629908,
            "lng": -1.486613,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8267,
            "lat": 45.8312236,
            "lng": 9.3313549,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8269,
            "lat": 45.6605597,
            "lng": 9.6570241,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8270,
            "lat": 48.595655,
            "lng": 8.1230156,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen"
        },
        {
            "id": 8271,
            "lat": 48.5978716,
            "lng": 8.1229201,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen"
        },
        {
            "id": 8274,
            "lat": 45.5905795,
            "lng": 8.7097281,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8275,
            "lat": 41.6394356,
            "lng": -0.871932,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8276,
            "lat": 43.1089562,
            "lng": 6.3562249,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8277,
            "lat": 45.8344408,
            "lng": 9.3189528,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8278,
            "lat": 49.5934254,
            "lng": 6.5680332,
            "type": "poi",
            "category": "drinking_water",
            "title": "Hubertusquelle"
        },
        {
            "id": 8279,
            "lat": 41.9673882,
            "lng": 2.6219736,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8280,
            "lat": 47.3984456,
            "lng": 8.5300943,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8281,
            "lat": 40.436855,
            "lng": -3.8192777,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de la Poza"
        },
        {
            "id": 8282,
            "lat": 49.459473,
            "lng": 8.1089992,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnenstube"
        },
        {
            "id": 8283,
            "lat": 44.4511488,
            "lng": 8.6959593,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8284,
            "lat": 48.7946225,
            "lng": 8.4134792,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen"
        },
        {
            "id": 8285,
            "lat": 53.1708362,
            "lng": -1.7828413,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8289,
            "lat": 49.4694653,
            "lng": 7.4445139,
            "type": "poi",
            "category": "drinking_water",
            "title": "Freiwillige Feuerwehr Glan-Münchweiler"
        },
        {
            "id": 8290,
            "lat": 45.4765123,
            "lng": 9.1839461,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8291,
            "lat": 45.7514404,
            "lng": 4.8474107,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8292,
            "lat": 46.0611251,
            "lng": 8.8050807,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8293,
            "lat": 45.762094,
            "lng": 4.8314103,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8294,
            "lat": 45.4747902,
            "lng": 9.1720038,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8295,
            "lat": 47.3479587,
            "lng": 8.7192881,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8296,
            "lat": 43.5276753,
            "lng": 5.4450054,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 30410,
            "lat": 48.3168364,
            "lng": 14.334653,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50500,
            "lat": 38.7068953,
            "lng": -76.5313501,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28541,
            "lat": 39.539166,
            "lng": 2.4180268,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2102,
            "lat": 34.8593834,
            "lng": 24.1100828,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 8298,
            "lat": 40.0488778,
            "lng": 0.0688623,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8300,
            "lat": 44.4363069,
            "lng": 8.6367088,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8301,
            "lat": 47.382338,
            "lng": 8.5354353,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8302,
            "lat": 47.3834326,
            "lng": 8.5334292,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8303,
            "lat": 47.3802419,
            "lng": 8.5396604,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8304,
            "lat": 44.4111256,
            "lng": 8.6438989,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8305,
            "lat": 44.4286333,
            "lng": 8.6339374,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fonte Giordan"
        },
        {
            "id": 8306,
            "lat": 47.4680364,
            "lng": 8.1382006,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8307,
            "lat": 47.3615085,
            "lng": 8.6985634,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8308,
            "lat": 47.4673131,
            "lng": 8.1506196,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8309,
            "lat": 47.4600112,
            "lng": 8.1312447,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8310,
            "lat": 47.4641961,
            "lng": 8.1389007,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8311,
            "lat": 47.467552,
            "lng": 7.8144933,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8312,
            "lat": 47.37715,
            "lng": 8.5240048,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8313,
            "lat": 47.3783801,
            "lng": 8.5232919,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8314,
            "lat": 42.3658582,
            "lng": 2.8336067,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8315,
            "lat": 41.6417693,
            "lng": -2.613155,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de los Enamorados"
        },
        {
            "id": 8316,
            "lat": 47.3771487,
            "lng": 8.54217,
            "type": "poi",
            "category": "drinking_water",
            "title": "Berlinerbrunnen"
        },
        {
            "id": 8317,
            "lat": 45.6845827,
            "lng": 9.686254,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8318,
            "lat": 45.5373696,
            "lng": 9.2100262,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8319,
            "lat": 45.5346572,
            "lng": 9.210697,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8320,
            "lat": 45.5282357,
            "lng": 9.2101398,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8321,
            "lat": 47.3977292,
            "lng": 8.5420049,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8322,
            "lat": 39.963992,
            "lng": -0.3944955,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de la Era Concejo"
        },
        {
            "id": 8323,
            "lat": 39.952358,
            "lng": -0.3324312,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8324,
            "lat": 43.5899735,
            "lng": 1.4919122,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8325,
            "lat": 36.8802649,
            "lng": -5.4095602,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente del Algarrobo"
        },
        {
            "id": 8326,
            "lat": 47.3621935,
            "lng": 8.5324476,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8327,
            "lat": 47.3700938,
            "lng": 8.5135305,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 27942,
            "lat": 41.128027,
            "lng": 1.3456007,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28545,
            "lat": 52.5615939,
            "lng": 4.626511,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8329,
            "lat": 40.0546848,
            "lng": 0.0521233,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8330,
            "lat": 47.3736904,
            "lng": 8.5296444,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8331,
            "lat": 51.2317888,
            "lng": 7.8523571,
            "type": "poi",
            "category": "drinking_water",
            "title": "Campingstation HolidayClean"
        },
        {
            "id": 8332,
            "lat": 36.8832744,
            "lng": -5.3948725,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente Alta"
        },
        {
            "id": 8333,
            "lat": 50.4483695,
            "lng": 7.7924156,
            "type": "poi",
            "category": "drinking_water",
            "title": "Heilborn"
        },
        {
            "id": 8334,
            "lat": 47.384089,
            "lng": 8.5742761,
            "type": "poi",
            "category": "drinking_water",
            "title": "Tigerbrunnen"
        },
        {
            "id": 8335,
            "lat": 47.3824835,
            "lng": 8.5778979,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8336,
            "lat": 47.3786848,
            "lng": 8.5757286,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8337,
            "lat": 47.3755753,
            "lng": 8.6076448,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8338,
            "lat": 47.3689127,
            "lng": 8.5839553,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8339,
            "lat": 47.353186,
            "lng": 8.7128138,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8340,
            "lat": 37.3878164,
            "lng": -6.0012114,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8341,
            "lat": 47.3828913,
            "lng": 8.6356657,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8342,
            "lat": 47.3895395,
            "lng": 8.6918938,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8343,
            "lat": 47.3010163,
            "lng": 8.6907254,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8344,
            "lat": 47.3196951,
            "lng": 8.5845929,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8345,
            "lat": 47.3724977,
            "lng": 8.566233,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8346,
            "lat": 46.365356,
            "lng": 6.1910002,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8347,
            "lat": 40.0566066,
            "lng": 0.0617325,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8348,
            "lat": 47.3447336,
            "lng": 8.6186589,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8349,
            "lat": 47.3627011,
            "lng": 8.5791712,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8350,
            "lat": 47.3673876,
            "lng": 8.5787457,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8351,
            "lat": 48.1511038,
            "lng": 7.7499403,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8352,
            "lat": 39.9828819,
            "lng": -0.0260107,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8353,
            "lat": 41.9759874,
            "lng": -1.6764984,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8354,
            "lat": 40.0566954,
            "lng": 0.071859,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8355,
            "lat": 40.0574016,
            "lng": 0.0797286,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8357,
            "lat": 47.3328523,
            "lng": 8.7114142,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8358,
            "lat": 45.4331074,
            "lng": 9.1049954,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8359,
            "lat": 47.5293478,
            "lng": 7.8178814,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8360,
            "lat": 48.9973086,
            "lng": 9.8658389,
            "type": "poi",
            "category": "drinking_water",
            "title": "Heiligenbrunnen"
        },
        {
            "id": 8361,
            "lat": 43.6661518,
            "lng": 1.2253671,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 26253,
            "lat": 52.9066579,
            "lng": -1.5040936,
            "type": "poi",
            "category": "toilets",
            "title": "Toilets"
        },
        {
            "id": 26254,
            "lat": 52.9538649,
            "lng": -1.1876589,
            "type": "poi",
            "category": "toilets",
            "title": "Toilets"
        },
        {
            "id": 26255,
            "lat": 52.9377513,
            "lng": -1.5044143,
            "type": "poi",
            "category": "toilets",
            "title": "Toilets"
        },
        {
            "id": 26256,
            "lat": 47.2602125,
            "lng": 8.8547245,
            "type": "poi",
            "category": "toilets",
            "title": "Toilets"
        },
        {
            "id": 27944,
            "lat": 42.2609335,
            "lng": -8.7682754,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8363,
            "lat": 46.946758,
            "lng": 8.305594,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8364,
            "lat": 46.8929819,
            "lng": 8.3050229,
            "type": "poi",
            "category": "drinking_water",
            "title": "019"
        },
        {
            "id": 8365,
            "lat": 46.8733028,
            "lng": 8.2811696,
            "type": "poi",
            "category": "drinking_water",
            "title": "018"
        },
        {
            "id": 8366,
            "lat": 48.8672033,
            "lng": 2.3175552,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8368,
            "lat": 51.2545657,
            "lng": 9.7898953,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8369,
            "lat": 51.2536402,
            "lng": 9.7880411,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8370,
            "lat": 47.3986552,
            "lng": 8.7763589,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8371,
            "lat": 49.1066814,
            "lng": 9.2994892,
            "type": "poi",
            "category": "drinking_water",
            "title": "Koppenbruennle"
        },
        {
            "id": 8373,
            "lat": 48.7464065,
            "lng": 8.55259,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8374,
            "lat": 43.312886,
            "lng": -1.8997486,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8375,
            "lat": 43.3133742,
            "lng": -1.8985296,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8376,
            "lat": 49.2266,
            "lng": 8.7105891,
            "type": "poi",
            "category": "drinking_water",
            "title": "Schwefelquelle"
        },
        {
            "id": 8378,
            "lat": 48.1536885,
            "lng": 9.745201,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8384,
            "lat": 46.6739447,
            "lng": 9.5837452,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8385,
            "lat": 46.6701949,
            "lng": 9.5768607,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8386,
            "lat": 40.8685872,
            "lng": -3.7784636,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente del Hornillo"
        },
        {
            "id": 8387,
            "lat": 40.8634297,
            "lng": -3.7945027,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8388,
            "lat": 47.41611,
            "lng": 8.5407422,
            "type": "poi",
            "category": "drinking_water",
            "title": "Trinkbrunnen Wahlenpark Nord"
        },
        {
            "id": 8389,
            "lat": 47.4145552,
            "lng": 8.5367158,
            "type": "poi",
            "category": "drinking_water",
            "title": "Trinkbrunnen Oerlikerpark West"
        },
        {
            "id": 8390,
            "lat": 48.540293,
            "lng": 9.7886751,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8391,
            "lat": 44.4640189,
            "lng": 8.9927371,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8392,
            "lat": 44.4689408,
            "lng": 8.9954353,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8393,
            "lat": 44.4660362,
            "lng": 8.9927458,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8394,
            "lat": 44.4656116,
            "lng": 8.9928001,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8395,
            "lat": 45.9118231,
            "lng": 6.3171282,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8396,
            "lat": 45.6735047,
            "lng": 9.6615638,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8397,
            "lat": 47.302385,
            "lng": 8.5919305,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8398,
            "lat": 47.2660887,
            "lng": 8.6767327,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8399,
            "lat": 47.3465016,
            "lng": 8.8754424,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8400,
            "lat": 47.3512464,
            "lng": 8.8664845,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8401,
            "lat": 47.3668361,
            "lng": 8.8445845,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 47720,
            "lat": 18.6574953,
            "lng": -72.2492328,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30419,
            "lat": 40.7986792,
            "lng": 17.5564103,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28547,
            "lat": 52.5630129,
            "lng": 4.6359102,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28548,
            "lat": 52.5637291,
            "lng": 4.6260285,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28549,
            "lat": 52.5638525,
            "lng": 4.6324742,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28565,
            "lat": 40.3991289,
            "lng": -3.7049144,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30896,
            "lat": 48.1604519,
            "lng": 17.134987,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30472,
            "lat": 45.3894366,
            "lng": 36.7413395,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8403,
            "lat": 47.3784236,
            "lng": 8.805537,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8404,
            "lat": 47.3941359,
            "lng": 8.7767637,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8405,
            "lat": 47.3936879,
            "lng": 8.7768266,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8407,
            "lat": 47.3928838,
            "lng": 8.4584034,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8408,
            "lat": 47.3670738,
            "lng": 8.5236446,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8409,
            "lat": 46.1766575,
            "lng": 7.5742006,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8410,
            "lat": 46.1788191,
            "lng": 7.5752285,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8411,
            "lat": 46.1790486,
            "lng": 7.5755082,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8412,
            "lat": 46.1789565,
            "lng": 7.5758847,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8413,
            "lat": 46.1793092,
            "lng": 7.5759381,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8414,
            "lat": 46.1781634,
            "lng": 7.5740869,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8415,
            "lat": 47.3626592,
            "lng": 8.5047479,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8416,
            "lat": 44.6527743,
            "lng": 9.529066,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8417,
            "lat": 47.3448076,
            "lng": 8.7319821,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8418,
            "lat": 45.7086431,
            "lng": 9.3582909,
            "type": "poi",
            "category": "drinking_water",
            "title": "sorgente"
        },
        {
            "id": 8419,
            "lat": 47.2986816,
            "lng": 8.490239,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8420,
            "lat": 37.1764322,
            "lng": -1.9877819,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de Serena"
        },
        {
            "id": 8421,
            "lat": 48.3843555,
            "lng": 2.2303231,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8422,
            "lat": 41.6388555,
            "lng": -2.6129205,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8423,
            "lat": 37.17812,
            "lng": -2.0732979,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8424,
            "lat": 40.0661723,
            "lng": 0.0573647,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente del Santo Padre"
        },
        {
            "id": 8425,
            "lat": 50.7919737,
            "lng": 0.2138613,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8426,
            "lat": 48.4644751,
            "lng": 8.9762077,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notstandsarbeit 1933"
        },
        {
            "id": 8427,
            "lat": 47.3757797,
            "lng": 7.7467549,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8428,
            "lat": 47.3330081,
            "lng": 8.5178824,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8429,
            "lat": 49.6808388,
            "lng": 6.8201777,
            "type": "poi",
            "category": "drinking_water",
            "title": "Quellfassung"
        },
        {
            "id": 8430,
            "lat": 43.1358699,
            "lng": -2.4869873,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8432,
            "lat": 43.1393999,
            "lng": -2.4854071,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8433,
            "lat": 47.4943073,
            "lng": 8.7264008,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8434,
            "lat": 47.3594567,
            "lng": 8.5356852,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fischerbrunnen"
        },
        {
            "id": 8435,
            "lat": 47.5563273,
            "lng": 8.1023507,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8436,
            "lat": 47.2387775,
            "lng": 8.7185235,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8437,
            "lat": 47.1351334,
            "lng": 7.4144363,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8438,
            "lat": 46.1796796,
            "lng": 7.5747316,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8439,
            "lat": 47.3665045,
            "lng": 8.5267357,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8440,
            "lat": 47.4521872,
            "lng": 8.3371524,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8441,
            "lat": 51.7805961,
            "lng": 8.8218186,
            "type": "poi",
            "category": "drinking_water",
            "title": "Liboriusquelle"
        },
        {
            "id": 8442,
            "lat": 51.7812919,
            "lng": 8.8220713,
            "type": "poi",
            "category": "drinking_water",
            "title": "Arminiusquelle"
        },
        {
            "id": 30897,
            "lat": 48.1606936,
            "lng": 17.1347574,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27591,
            "lat": 54.8370828,
            "lng": 9.5248609,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2202,
            "lat": 44.5004005,
            "lng": 33.6851335,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 8444,
            "lat": 47.233852,
            "lng": 8.7354102,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8445,
            "lat": 47.5545178,
            "lng": 9.126846,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8446,
            "lat": 47.5056211,
            "lng": 8.055917,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8447,
            "lat": 47.5071462,
            "lng": 8.0511539,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8448,
            "lat": 47.5073812,
            "lng": 8.0503868,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8450,
            "lat": 47.3662791,
            "lng": 8.5479312,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8451,
            "lat": 47.5069401,
            "lng": 8.0416482,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8452,
            "lat": 47.5081996,
            "lng": 8.0405194,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8453,
            "lat": 47.215085,
            "lng": 7.41524,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8454,
            "lat": 47.197843,
            "lng": 7.395027,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8455,
            "lat": 47.2284064,
            "lng": 7.4252806,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8456,
            "lat": 47.2299911,
            "lng": 7.4208973,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8457,
            "lat": 48.5629432,
            "lng": 8.077872,
            "type": "poi",
            "category": "drinking_water",
            "title": "Bruder-Klaus-Quelle"
        },
        {
            "id": 8458,
            "lat": 47.3981962,
            "lng": 8.5328087,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8459,
            "lat": 47.052788,
            "lng": 6.8206729,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8460,
            "lat": 43.1386174,
            "lng": -2.4859787,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8461,
            "lat": 47.2109495,
            "lng": 7.3643736,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8462,
            "lat": 47.1826948,
            "lng": 7.3672435,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8463,
            "lat": 45.7075372,
            "lng": 9.49825,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8464,
            "lat": 43.3844991,
            "lng": -5.8249072,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de los Cuatro Caños"
        },
        {
            "id": 8465,
            "lat": 47.4016692,
            "lng": 8.5014662,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8466,
            "lat": 50.8033171,
            "lng": 8.1389025,
            "type": "poi",
            "category": "drinking_water",
            "title": "Goldschmieds Born"
        },
        {
            "id": 8467,
            "lat": 46.5145391,
            "lng": 4.6772802,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8468,
            "lat": 47.359031,
            "lng": 9.0725701,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8469,
            "lat": 47.2536063,
            "lng": 8.6919164,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8470,
            "lat": 47.5110737,
            "lng": 2.1532672,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8471,
            "lat": 40.0434284,
            "lng": -0.3531351,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de la Santa Cruz"
        },
        {
            "id": 8472,
            "lat": 46.993989,
            "lng": 6.9376596,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8473,
            "lat": 47.3817628,
            "lng": 8.5123218,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8474,
            "lat": 47.3911361,
            "lng": 8.5364215,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notwasserbrunnen"
        },
        {
            "id": 8475,
            "lat": 47.3931909,
            "lng": 8.5355283,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8476,
            "lat": 47.4082716,
            "lng": 8.5467797,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 30898,
            "lat": 52.5339118,
            "lng": 13.3842639,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30901,
            "lat": 52.5336611,
            "lng": 13.3843638,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28578,
            "lat": 48.4455658,
            "lng": 8.6763,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8478,
            "lat": 47.4754406,
            "lng": 8.2810437,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8479,
            "lat": 49.6150083,
            "lng": 8.9125504,
            "type": "poi",
            "category": "drinking_water",
            "title": "Kiliansbrunnen"
        },
        {
            "id": 8480,
            "lat": 44.4727929,
            "lng": 8.7334993,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8481,
            "lat": 44.468084,
            "lng": 8.7130814,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8482,
            "lat": 51.8259913,
            "lng": -3.1003594,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8483,
            "lat": 51.8239914,
            "lng": -3.0983807,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8484,
            "lat": 51.8173489,
            "lng": -3.0656989,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8486,
            "lat": 40.0544412,
            "lng": -0.3504359,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8487,
            "lat": 40.0549732,
            "lng": -0.3495471,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8488,
            "lat": 51.3728639,
            "lng": 7.7309968,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8489,
            "lat": 45.4578178,
            "lng": 9.1651745,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8490,
            "lat": 47.4546524,
            "lng": 8.0781862,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8491,
            "lat": 47.4539085,
            "lng": 8.0783757,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8492,
            "lat": 47.28692,
            "lng": 8.6824031,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8493,
            "lat": 47.2472969,
            "lng": 8.7261589,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8494,
            "lat": 45.4815111,
            "lng": 9.2086602,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8495,
            "lat": 41.4899537,
            "lng": 2.1886588,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8496,
            "lat": 51.670514,
            "lng": -1.2675585,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8497,
            "lat": 43.5763789,
            "lng": 1.4857738,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8498,
            "lat": 45.7314259,
            "lng": 6.0132913,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8499,
            "lat": 47.8914276,
            "lng": 8.2103358,
            "type": "poi",
            "category": "drinking_water",
            "title": "Hierabrunnen"
        },
        {
            "id": 8500,
            "lat": 47.8486838,
            "lng": 8.1627455,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8501,
            "lat": 47.8011003,
            "lng": 8.1350427,
            "type": "poi",
            "category": "drinking_water",
            "title": "Krummenkreuzbrunnen"
        },
        {
            "id": 8502,
            "lat": 47.796248,
            "lng": 8.1326498,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8503,
            "lat": 44.7942441,
            "lng": -0.6739582,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8504,
            "lat": 44.4139701,
            "lng": 8.954206,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8505,
            "lat": 44.4235801,
            "lng": 8.948468,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8506,
            "lat": 44.4280607,
            "lng": 8.9493435,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8507,
            "lat": 44.4150492,
            "lng": 8.9570022,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8508,
            "lat": 46.4717588,
            "lng": 6.8341304,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8509,
            "lat": 47.2175103,
            "lng": 8.8338071,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8510,
            "lat": 47.9698742,
            "lng": 7.8609273,
            "type": "poi",
            "category": "drinking_water",
            "title": "Schusterbrunnen"
        },
        {
            "id": 8511,
            "lat": 47.9713588,
            "lng": 7.8529116,
            "type": "poi",
            "category": "drinking_water",
            "title": "Jägerbrünnele"
        },
        {
            "id": 8512,
            "lat": 48.8861269,
            "lng": 8.8972548,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8513,
            "lat": 48.8865406,
            "lng": 8.8970372,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8514,
            "lat": 49.3403377,
            "lng": 6.6029979,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8515,
            "lat": 44.4244023,
            "lng": 8.9479228,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 43622,
            "lat": 32.5735063,
            "lng": 50.6386887,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 52384,
            "lat": 29.8095886,
            "lng": -99.5730062,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 47731,
            "lat": 18.5394081,
            "lng": -72.301255,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30495,
            "lat": 59.1359112,
            "lng": 18.4036433,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 880,
            "lat": 57.7323265,
            "lng": 27.0012396,
            "type": "poi",
            "category": "campsite",
            "title": "Utsali telkimiskoht"
        },
        {
            "id": 882,
            "lat": 44.545548,
            "lng": 34.101721,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 883,
            "lat": 55.9855619,
            "lng": 37.2278031,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 884,
            "lat": 44.5267796,
            "lng": 38.9662559,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 885,
            "lat": 44.0442593,
            "lng": 40.1724029,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 886,
            "lat": 44.0121354,
            "lng": 39.1716514,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 888,
            "lat": 38.3390037,
            "lng": 16.461239,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Afrodite"
        },
        {
            "id": 8517,
            "lat": 47.130108,
            "lng": 8.5561896,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8519,
            "lat": 47.3866409,
            "lng": 8.7522419,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8520,
            "lat": 39.9931716,
            "lng": -0.0326258,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8521,
            "lat": 39.523554,
            "lng": -0.4171099,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8522,
            "lat": 39.523765,
            "lng": -0.4174609,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8523,
            "lat": 39.9924233,
            "lng": -0.0238611,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8524,
            "lat": 39.9920559,
            "lng": -0.0241578,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8525,
            "lat": 39.9927,
            "lng": -0.0248073,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8526,
            "lat": 39.9936184,
            "lng": -0.0230972,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8527,
            "lat": 39.9942414,
            "lng": -0.0235126,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8528,
            "lat": 39.9945125,
            "lng": -0.0240667,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8529,
            "lat": 39.9938054,
            "lng": -0.0253515,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8530,
            "lat": 39.9933827,
            "lng": -0.0248866,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8531,
            "lat": 47.5103137,
            "lng": 6.8506753,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8532,
            "lat": 42.7786604,
            "lng": -8.8915755,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8533,
            "lat": 45.3300902,
            "lng": 5.6635866,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8534,
            "lat": 39.5253766,
            "lng": -0.4166215,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8535,
            "lat": 44.5644442,
            "lng": 6.4972104,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8536,
            "lat": 40.0274725,
            "lng": 0.0410771,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8537,
            "lat": 47.6863028,
            "lng": 8.6272277,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8538,
            "lat": 47.6876292,
            "lng": 8.6264402,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8539,
            "lat": 47.6831111,
            "lng": 8.6278289,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8540,
            "lat": 52.3636732,
            "lng": 9.755291,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8541,
            "lat": 44.4475929,
            "lng": 9.4232824,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8542,
            "lat": 51.3058834,
            "lng": 7.9396015,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8543,
            "lat": 51.3072451,
            "lng": 7.9416319,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8544,
            "lat": 51.3067511,
            "lng": 7.9404703,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8545,
            "lat": 51.3062868,
            "lng": 7.9405509,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8546,
            "lat": 51.773702,
            "lng": 0.9231715,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 37536,
            "lat": 39.1051625,
            "lng": -87.3963296,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 28040,
            "lat": 52.1822346,
            "lng": -1.7236031,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28579,
            "lat": 40.8588034,
            "lng": -3.6153295,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50615,
            "lat": -14.5738857,
            "lng": 35.1773998,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28057,
            "lat": 39.9060833,
            "lng": 8.5165393,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2841,
            "lat": 53.9051868,
            "lng": -1.7748214,
            "type": "poi",
            "category": "campsite",
            "title": "Robin Hole Camping Site"
        },
        {
            "id": 8548,
            "lat": 51.7739166,
            "lng": 0.9313517,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8549,
            "lat": 44.4069762,
            "lng": 8.9573537,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8550,
            "lat": 43.3409038,
            "lng": -3.6743499,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8551,
            "lat": 47.3588989,
            "lng": 8.3486775,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8552,
            "lat": 47.3524853,
            "lng": 8.3398224,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8554,
            "lat": 47.3487936,
            "lng": 8.3394092,
            "type": "poi",
            "category": "drinking_water",
            "title": "Kapuzinerbrunnen"
        },
        {
            "id": 8555,
            "lat": 47.5385464,
            "lng": 8.1995876,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8556,
            "lat": 47.5431118,
            "lng": 8.213906,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8557,
            "lat": 44.9766638,
            "lng": 6.5076235,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8558,
            "lat": 47.3511339,
            "lng": 8.3431645,
            "type": "poi",
            "category": "drinking_water",
            "title": "Zeughausbrunnen"
        },
        {
            "id": 8559,
            "lat": 47.3509252,
            "lng": 8.341328,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8560,
            "lat": 47.3513559,
            "lng": 8.3416733,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8561,
            "lat": 47.3520501,
            "lng": 8.3425023,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8562,
            "lat": 49.002953,
            "lng": 2.7876397,
            "type": "poi",
            "category": "drinking_water",
            "title": "Point d'eau"
        },
        {
            "id": 8563,
            "lat": 49.0067576,
            "lng": 2.7332737,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8564,
            "lat": 48.9030792,
            "lng": 2.4582121,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8565,
            "lat": 48.6757748,
            "lng": 8.1811669,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8566,
            "lat": 47.2990081,
            "lng": 8.6866901,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8567,
            "lat": 45.4938373,
            "lng": 5.9882618,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8568,
            "lat": 47.5299406,
            "lng": 7.8089577,
            "type": "poi",
            "category": "drinking_water",
            "title": "Unterdorf-Brunnen"
        },
        {
            "id": 8569,
            "lat": 47.5271865,
            "lng": 7.8138354,
            "type": "poi",
            "category": "drinking_water",
            "title": "Kreuz-Brunnen"
        },
        {
            "id": 8570,
            "lat": 47.5273984,
            "lng": 7.8145075,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8571,
            "lat": 41.493237,
            "lng": 2.1858581,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8572,
            "lat": 47.5209496,
            "lng": 9.9135018,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8573,
            "lat": 47.3531594,
            "lng": 8.3423403,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8574,
            "lat": 45.5557247,
            "lng": 8.9712168,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8575,
            "lat": 47.3462915,
            "lng": 8.3461467,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8576,
            "lat": 47.3425512,
            "lng": 8.347671,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8577,
            "lat": 43.6449704,
            "lng": 1.5270922,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8578,
            "lat": 53.3841163,
            "lng": -6.6002263,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8579,
            "lat": 47.3971571,
            "lng": 8.0484422,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8580,
            "lat": 43.2931723,
            "lng": 5.3591932,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8582,
            "lat": 46.5236366,
            "lng": 6.627298,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8583,
            "lat": 47.3935794,
            "lng": 8.5447286,
            "type": "poi",
            "category": "drinking_water",
            "title": "Bambi-Brunnen"
        },
        {
            "id": 50622,
            "lat": -14.5743168,
            "lng": 35.1773001,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8585,
            "lat": 45.9029761,
            "lng": 9.4950207,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8586,
            "lat": 41.4430014,
            "lng": 2.2206174,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8587,
            "lat": 45.8900158,
            "lng": 6.1285344,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8588,
            "lat": 51.7923718,
            "lng": 1.1682643,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8589,
            "lat": 43.4809706,
            "lng": -8.2407052,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fonte de San Roque"
        },
        {
            "id": 8590,
            "lat": 47.2848362,
            "lng": 7.4541388,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8591,
            "lat": 47.2856495,
            "lng": 7.4548938,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8592,
            "lat": 41.8109915,
            "lng": 2.0939004,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8593,
            "lat": 41.5972724,
            "lng": 1.5645158,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8594,
            "lat": 51.3290518,
            "lng": 8.162724,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8595,
            "lat": 48.9287873,
            "lng": 8.3258359,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8596,
            "lat": 49.4279084,
            "lng": 8.4914038,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8597,
            "lat": 49.427355,
            "lng": 8.4911144,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8598,
            "lat": 45.561331,
            "lng": 5.8978435,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8599,
            "lat": 47.3517428,
            "lng": 8.3409678,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8600,
            "lat": 41.6915012,
            "lng": 2.3522685,
            "type": "poi",
            "category": "drinking_water",
            "title": "Font de Can Parera"
        },
        {
            "id": 8601,
            "lat": 48.9688069,
            "lng": 2.7573355,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8602,
            "lat": 46.2795646,
            "lng": 7.3161029,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8603,
            "lat": 48.8632194,
            "lng": 2.162942,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8604,
            "lat": 43.6013005,
            "lng": 1.4421463,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8605,
            "lat": 43.5939468,
            "lng": 1.4361414,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8606,
            "lat": 43.5930796,
            "lng": 1.4352445,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8607,
            "lat": 42.3265929,
            "lng": 9.2211857,
            "type": "poi",
            "category": "drinking_water",
            "title": "Funtana di a piazza"
        },
        {
            "id": 8608,
            "lat": 45.5599325,
            "lng": 8.9715965,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8609,
            "lat": 51.7745592,
            "lng": -1.3581654,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8610,
            "lat": 47.3821457,
            "lng": 8.541903,
            "type": "poi",
            "category": "drinking_water",
            "title": "Pilgerbrunnen"
        },
        {
            "id": 8611,
            "lat": 47.3838032,
            "lng": 8.5423311,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8612,
            "lat": 44.4026363,
            "lng": 8.9513558,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8613,
            "lat": 50.2839858,
            "lng": 8.0648925,
            "type": "poi",
            "category": "drinking_water",
            "title": "Römerquelle"
        },
        {
            "id": 8614,
            "lat": 47.3913467,
            "lng": 8.0801116,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8615,
            "lat": 47.5283885,
            "lng": 8.4234926,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8616,
            "lat": 43.2694259,
            "lng": 5.3818494,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8617,
            "lat": 46.0059931,
            "lng": 8.96978,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8618,
            "lat": 45.993859,
            "lng": 8.9148849,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8619,
            "lat": 48.9812048,
            "lng": 2.8804525,
            "type": "poi",
            "category": "drinking_water",
            "title": "Point d'eau"
        },
        {
            "id": 8620,
            "lat": 43.2708919,
            "lng": 5.3932915,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8621,
            "lat": 47.2077881,
            "lng": 8.7054762,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 169204,
            "lat": 43.4214793,
            "lng": -3.4429915,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8624,
            "lat": 39.8878885,
            "lng": -0.5145536,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de los Baños"
        },
        {
            "id": 8625,
            "lat": 45.8352391,
            "lng": 5.7267514,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8626,
            "lat": 47.5476091,
            "lng": 8.1683866,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8627,
            "lat": 47.548537,
            "lng": 8.1679165,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8628,
            "lat": 47.5675321,
            "lng": 8.1688113,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8629,
            "lat": 46.2060695,
            "lng": 6.1583876,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8630,
            "lat": 47.5746167,
            "lng": 8.1562819,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8631,
            "lat": 47.0310897,
            "lng": 7.4168559,
            "type": "poi",
            "category": "drinking_water",
            "title": "Wasserbrunnen"
        },
        {
            "id": 8632,
            "lat": 47.2697581,
            "lng": 8.7145652,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8633,
            "lat": 46.1123556,
            "lng": 7.2486717,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8634,
            "lat": 47.578402,
            "lng": 8.1655337,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8635,
            "lat": 50.3022904,
            "lng": 8.0709065,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8636,
            "lat": 48.1153197,
            "lng": 8.1427985,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8637,
            "lat": 47.5828738,
            "lng": 8.8655727,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8638,
            "lat": 46.5216769,
            "lng": 6.6822715,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8639,
            "lat": 44.4245227,
            "lng": 8.8117599,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8640,
            "lat": 44.4243193,
            "lng": 8.8030312,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8641,
            "lat": 42.9619144,
            "lng": -2.3554876,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fondako iturria"
        },
        {
            "id": 8642,
            "lat": 45.5636254,
            "lng": 8.9236464,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8643,
            "lat": 50.936771,
            "lng": 7.9781733,
            "type": "poi",
            "category": "drinking_water",
            "title": "Käsbergquelle"
        },
        {
            "id": 8644,
            "lat": 49.4082065,
            "lng": 8.0644177,
            "type": "poi",
            "category": "drinking_water",
            "title": "Nadenbrunnen"
        },
        {
            "id": 8645,
            "lat": 45.6870471,
            "lng": 9.3528911,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8646,
            "lat": 45.6858781,
            "lng": 9.3549843,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8647,
            "lat": 46.0614464,
            "lng": 8.6971643,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8648,
            "lat": 44.3690583,
            "lng": 4.6450002,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8649,
            "lat": 48.5023936,
            "lng": 9.1363601,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8650,
            "lat": 43.8626209,
            "lng": 7.2650265,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8651,
            "lat": 41.8716637,
            "lng": 0.719128,
            "type": "poi",
            "category": "drinking_water",
            "title": "Font monumental de Sant Pilot"
        },
        {
            "id": 8652,
            "lat": 44.4437618,
            "lng": 8.9881516,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8653,
            "lat": 50.2276653,
            "lng": 8.6262709,
            "type": "poi",
            "category": "drinking_water",
            "title": "Stahlbrunnen"
        },
        {
            "id": 8654,
            "lat": 50.2275274,
            "lng": 8.6278812,
            "type": "poi",
            "category": "drinking_water",
            "title": "Kaiserin Auguste Viktoria-Brunnen"
        },
        {
            "id": 8656,
            "lat": 44.448385,
            "lng": 9.0007608,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8657,
            "lat": 43.5244189,
            "lng": 1.5186885,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8658,
            "lat": 43.6107365,
            "lng": 1.4159251,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8659,
            "lat": 43.5850717,
            "lng": 1.4219891,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8660,
            "lat": 49.3644848,
            "lng": 9.3390148,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8661,
            "lat": 47.5524485,
            "lng": 8.1305959,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8662,
            "lat": 47.5552719,
            "lng": 8.1332979,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 49215,
            "lat": 38.1653876,
            "lng": -77.4769507,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50626,
            "lat": -14.5759878,
            "lng": 35.1789678,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8664,
            "lat": 47.3949674,
            "lng": 8.374384,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8665,
            "lat": 47.3968342,
            "lng": 8.3741497,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8666,
            "lat": 47.3210811,
            "lng": 8.2051511,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8667,
            "lat": 46.066512,
            "lng": 7.2615851,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8668,
            "lat": 47.3460089,
            "lng": 8.3591817,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8669,
            "lat": 47.3462152,
            "lng": 8.3602578,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8670,
            "lat": 47.3451064,
            "lng": 8.361206,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8671,
            "lat": 39.8805594,
            "lng": -0.5125927,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de la Salud"
        },
        {
            "id": 8672,
            "lat": 39.8803781,
            "lng": -0.5121317,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de la Bañola"
        },
        {
            "id": 8673,
            "lat": 39.8794126,
            "lng": -0.5076375,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente del Cañar"
        },
        {
            "id": 8674,
            "lat": 39.8749099,
            "lng": -0.5005261,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de Mossen Miguel"
        },
        {
            "id": 8676,
            "lat": 39.8742616,
            "lng": -0.5071913,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8677,
            "lat": 47.3393202,
            "lng": 8.3689126,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8678,
            "lat": 47.3367991,
            "lng": 8.3671886,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8679,
            "lat": 47.350966,
            "lng": 8.3426079,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8680,
            "lat": 41.9440331,
            "lng": 2.5569901,
            "type": "poi",
            "category": "drinking_water",
            "title": "Font del Borrell"
        },
        {
            "id": 8681,
            "lat": 47.5976517,
            "lng": 8.2949171,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8682,
            "lat": 51.9321467,
            "lng": 1.2773658,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8683,
            "lat": 44.1209868,
            "lng": 3.5819074,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8684,
            "lat": 46.0649614,
            "lng": 9.0445509,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8685,
            "lat": 46.0634401,
            "lng": 9.0465869,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8686,
            "lat": 47.5430247,
            "lng": 8.1470077,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8687,
            "lat": 47.5492108,
            "lng": 8.149163,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8688,
            "lat": 51.9268822,
            "lng": 1.2713805,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8689,
            "lat": 47.4067204,
            "lng": 8.4004506,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8690,
            "lat": 47.3814793,
            "lng": 8.3650123,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8691,
            "lat": 44.4268603,
            "lng": 8.7908825,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8692,
            "lat": 44.4274307,
            "lng": 8.7874046,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8693,
            "lat": 44.4276567,
            "lng": 8.7823171,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8694,
            "lat": 44.4270784,
            "lng": 8.7891819,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8695,
            "lat": 47.3704345,
            "lng": 8.640953,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8696,
            "lat": 47.3704994,
            "lng": 8.6388453,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8697,
            "lat": 40.6087728,
            "lng": -3.7026954,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8698,
            "lat": 48.8028457,
            "lng": 9.2131513,
            "type": "poi",
            "category": "drinking_water",
            "title": "Schiffmann-Brunnen"
        },
        {
            "id": 8699,
            "lat": 44.1906647,
            "lng": 3.2080419,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8700,
            "lat": 46.503832,
            "lng": 6.6717314,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8701,
            "lat": 39.404233,
            "lng": -0.7895791,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8702,
            "lat": 51.7739782,
            "lng": 0.9328103,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8704,
            "lat": 47.4189763,
            "lng": 8.5354937,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8705,
            "lat": 45.5491401,
            "lng": 8.7223974,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8706,
            "lat": 40.2928166,
            "lng": -0.2144642,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8707,
            "lat": 40.2759893,
            "lng": -0.2085128,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8708,
            "lat": 40.2765746,
            "lng": -0.2091515,
            "type": "poi",
            "category": "drinking_water",
            "title": "Font de la Plaça"
        },
        {
            "id": 8709,
            "lat": 48.9425581,
            "lng": 8.4187285,
            "type": "poi",
            "category": "drinking_water",
            "title": "Winzerbrünnele am Robberg"
        },
        {
            "id": 8710,
            "lat": 46.2513693,
            "lng": 7.013855,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8711,
            "lat": 46.2549775,
            "lng": 7.0104218,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8712,
            "lat": 46.3453362,
            "lng": 6.8319891,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8713,
            "lat": 47.4681814,
            "lng": 8.1499114,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8714,
            "lat": 47.4682417,
            "lng": 8.1520082,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8715,
            "lat": 50.3335136,
            "lng": 8.907473,
            "type": "poi",
            "category": "drinking_water",
            "title": "Sauerbrunnen Staden"
        },
        {
            "id": 8716,
            "lat": 42.574047,
            "lng": 0.0167926,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8717,
            "lat": 47.76151,
            "lng": 8.6087128,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8718,
            "lat": 47.396231,
            "lng": 7.8559517,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8719,
            "lat": 44.3248581,
            "lng": 9.2163926,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8720,
            "lat": 47.4245884,
            "lng": 7.4759311,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8721,
            "lat": 43.9025375,
            "lng": 5.2897571,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8722,
            "lat": 46.2460229,
            "lng": 7.0087868,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8723,
            "lat": 47.4708617,
            "lng": 8.1476803,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8724,
            "lat": 47.4864556,
            "lng": 8.1376754,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8725,
            "lat": 44.3211483,
            "lng": 9.1869419,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8726,
            "lat": 44.3347054,
            "lng": 9.2103913,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8727,
            "lat": 44.3390519,
            "lng": 9.1865154,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8728,
            "lat": 45.0752777,
            "lng": 7.6445783,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8729,
            "lat": 45.0762825,
            "lng": 7.6360475,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8730,
            "lat": 45.058335,
            "lng": 7.6903082,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8732,
            "lat": 45.0714339,
            "lng": 7.6927498,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8733,
            "lat": 45.0775072,
            "lng": 7.6790014,
            "type": "poi",
            "category": "drinking_water",
            "title": "Toret"
        },
        {
            "id": 8734,
            "lat": 45.0674264,
            "lng": 7.6716801,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8735,
            "lat": 46.3083969,
            "lng": 8.0097889,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen"
        },
        {
            "id": 8736,
            "lat": 46.312363,
            "lng": 8.015857,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen"
        },
        {
            "id": 8737,
            "lat": 46.3157465,
            "lng": 8.0172101,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen"
        },
        {
            "id": 8738,
            "lat": 45.0661504,
            "lng": 7.6621164,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8739,
            "lat": 45.0907082,
            "lng": 7.6369243,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8740,
            "lat": 45.08672,
            "lng": 7.6387828,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8741,
            "lat": 46.257301,
            "lng": 7.0947464,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 28081,
            "lat": 44.1009125,
            "lng": 1.0895286,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50627,
            "lat": -14.5761476,
            "lng": 35.178949,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8743,
            "lat": 47.4218681,
            "lng": 8.5498362,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8744,
            "lat": 45.1109998,
            "lng": 7.6452575,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8745,
            "lat": 45.109927,
            "lng": 7.6451712,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8746,
            "lat": 45.1119624,
            "lng": 7.6433579,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8747,
            "lat": 45.1122403,
            "lng": 7.6388359,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8748,
            "lat": 47.028751,
            "lng": 9.6443889,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8749,
            "lat": 49.0176157,
            "lng": 2.7688243,
            "type": "poi",
            "category": "drinking_water",
            "title": "Point d'eau"
        },
        {
            "id": 8750,
            "lat": 45.4762904,
            "lng": 9.1756417,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8751,
            "lat": 49.0012836,
            "lng": 2.7091163,
            "type": "poi",
            "category": "drinking_water",
            "title": "Point d'eau"
        },
        {
            "id": 8752,
            "lat": 45.0682675,
            "lng": 7.6863479,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8753,
            "lat": 45.0600188,
            "lng": 7.6921238,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8754,
            "lat": 45.0446886,
            "lng": 7.6859926,
            "type": "poi",
            "category": "drinking_water",
            "title": "Toret"
        },
        {
            "id": 8755,
            "lat": 49.4052183,
            "lng": 8.7807063,
            "type": "poi",
            "category": "drinking_water",
            "title": "Neckarhalden-Brunnen"
        },
        {
            "id": 8756,
            "lat": 49.5369177,
            "lng": 8.514104,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8757,
            "lat": 44.4477275,
            "lng": 8.7466141,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8758,
            "lat": 44.4473981,
            "lng": 8.7473832,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8759,
            "lat": 44.4457244,
            "lng": 8.7472609,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8761,
            "lat": 45.0503372,
            "lng": 7.6998674,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8762,
            "lat": 45.0407884,
            "lng": 7.7080771,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8763,
            "lat": 45.0302663,
            "lng": 7.7098032,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8764,
            "lat": 45.030577,
            "lng": 7.723364,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8765,
            "lat": 45.4833405,
            "lng": 9.1650328,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8766,
            "lat": 47.4102251,
            "lng": 8.3335171,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8767,
            "lat": 47.4099605,
            "lng": 8.3397429,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8768,
            "lat": 47.7442499,
            "lng": 9.005797,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8769,
            "lat": 45.0725993,
            "lng": 7.6828378,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8770,
            "lat": 45.0678711,
            "lng": 7.6822122,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8771,
            "lat": 48.57391,
            "lng": 8.8101104,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8772,
            "lat": 43.5838975,
            "lng": 1.4532904,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8773,
            "lat": 40.0531508,
            "lng": 0.0672856,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8774,
            "lat": 40.0527362,
            "lng": 0.0676938,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8775,
            "lat": 49.7612563,
            "lng": 9.5160144,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking Water Dispenser"
        },
        {
            "id": 8776,
            "lat": 44.3709653,
            "lng": 8.3361021,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontana della Cristina"
        },
        {
            "id": 8777,
            "lat": 44.4010025,
            "lng": 8.9799902,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8778,
            "lat": 39.6176585,
            "lng": -5.4181452,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente la Cesta"
        },
        {
            "id": 8779,
            "lat": 50.6890651,
            "lng": 8.7448823,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 28117,
            "lat": 49.4022554,
            "lng": 8.6690852,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50629,
            "lat": -14.5762473,
            "lng": 35.1789977,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 1074,
            "lat": 56.1788478,
            "lng": 43.7416971,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 28126,
            "lat": 42.4032961,
            "lng": -8.7526188,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8781,
            "lat": 44.4476026,
            "lng": 9.4586112,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8783,
            "lat": 45.0743082,
            "lng": 7.681924,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8784,
            "lat": 45.0761256,
            "lng": 7.6640559,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8785,
            "lat": 48.8336479,
            "lng": 2.4448001,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8786,
            "lat": 45.9493413,
            "lng": 9.4437388,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8787,
            "lat": 45.9483561,
            "lng": 9.4379218,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8788,
            "lat": 45.9452195,
            "lng": 9.4302192,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8789,
            "lat": 45.0838979,
            "lng": 7.6561626,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8790,
            "lat": 53.3839651,
            "lng": -6.601468,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8791,
            "lat": 45.9510772,
            "lng": 9.4187307,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8792,
            "lat": 45.9592147,
            "lng": 9.4207981,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8793,
            "lat": 48.8599857,
            "lng": 2.1925373,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8794,
            "lat": 45.0796394,
            "lng": 7.6362787,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8795,
            "lat": 46.5084171,
            "lng": 6.5001485,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8796,
            "lat": 46.990686,
            "lng": 6.9282746,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8797,
            "lat": 45.055363,
            "lng": 7.6852902,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8798,
            "lat": 45.04552,
            "lng": 7.697005,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8799,
            "lat": 45.0430775,
            "lng": 7.6970329,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8800,
            "lat": 49.6481326,
            "lng": 8.8103144,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8801,
            "lat": 45.0707808,
            "lng": 7.7011421,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8802,
            "lat": 45.0656769,
            "lng": 7.7324576,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8803,
            "lat": 45.0602894,
            "lng": 7.7407536,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8804,
            "lat": 45.0588291,
            "lng": 7.7439795,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8805,
            "lat": 45.0738353,
            "lng": 7.7818423,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8806,
            "lat": 47.0943839,
            "lng": 8.6806206,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8807,
            "lat": 48.7473788,
            "lng": 8.3639036,
            "type": "poi",
            "category": "drinking_water",
            "title": "Rehackerbrunnen"
        },
        {
            "id": 8808,
            "lat": 42.0004993,
            "lng": 3.1899169,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8810,
            "lat": 46.753331,
            "lng": 7.4287185,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8811,
            "lat": 42.133475,
            "lng": -2.1103748,
            "type": "poi",
            "category": "drinking_water",
            "title": "La Fuente de Muro de Aguas"
        },
        {
            "id": 8812,
            "lat": 36.7509744,
            "lng": -3.8747462,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8813,
            "lat": 48.7986601,
            "lng": 9.2189858,
            "type": "poi",
            "category": "drinking_water",
            "title": "Veielbrunnen"
        },
        {
            "id": 8814,
            "lat": 49.0516275,
            "lng": 8.4199251,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8815,
            "lat": 45.5655948,
            "lng": 5.9219058,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 28138,
            "lat": 43.338323,
            "lng": 5.2578817,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50636,
            "lat": -14.5776565,
            "lng": 35.1795762,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8817,
            "lat": 48.4464192,
            "lng": 8.9534505,
            "type": "poi",
            "category": "drinking_water",
            "title": "Steigbrunnen"
        },
        {
            "id": 8818,
            "lat": 53.3838328,
            "lng": -6.6017969,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8819,
            "lat": 45.0604653,
            "lng": 7.4652606,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8820,
            "lat": 47.4210111,
            "lng": 8.501815,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8822,
            "lat": 47.3924498,
            "lng": 8.5279684,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen"
        },
        {
            "id": 8823,
            "lat": 45.0884805,
            "lng": 7.7321523,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8824,
            "lat": 45.017409,
            "lng": 7.6590181,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8825,
            "lat": 47.5697266,
            "lng": 8.5979616,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8826,
            "lat": 47.5947772,
            "lng": 8.4926588,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8827,
            "lat": 47.5605092,
            "lng": 8.4941037,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8828,
            "lat": 47.3237536,
            "lng": 9.087913,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8829,
            "lat": 47.2584688,
            "lng": 9.1272541,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8830,
            "lat": 47.2247254,
            "lng": 9.199224,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8831,
            "lat": 45.0876243,
            "lng": 7.7231994,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8832,
            "lat": 45.0891584,
            "lng": 7.7251974,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8833,
            "lat": 45.0901196,
            "lng": 7.7353585,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8834,
            "lat": 45.0990708,
            "lng": 7.7614377,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8835,
            "lat": 45.1065407,
            "lng": 7.7668246,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8836,
            "lat": 45.1144944,
            "lng": 7.7654018,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8837,
            "lat": 45.1157318,
            "lng": 7.7685518,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8838,
            "lat": 45.118492,
            "lng": 7.7672911,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8839,
            "lat": 45.1193937,
            "lng": 7.767753,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8840,
            "lat": 44.8397139,
            "lng": -0.5679485,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8841,
            "lat": 44.8408232,
            "lng": -0.5684926,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8842,
            "lat": 44.8427113,
            "lng": -0.5693115,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8843,
            "lat": 44.8452004,
            "lng": -0.5701393,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8844,
            "lat": 44.8468561,
            "lng": -0.5702246,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8845,
            "lat": 46.5180043,
            "lng": 4.6780414,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8846,
            "lat": 48.8540665,
            "lng": 2.5480442,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8847,
            "lat": 45.0712437,
            "lng": 7.5171946,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8848,
            "lat": 45.0695695,
            "lng": 7.5198532,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8849,
            "lat": 47.5728834,
            "lng": 8.2126484,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8850,
            "lat": 45.060127,
            "lng": 7.784116,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8851,
            "lat": 52.8226695,
            "lng": -4.0672677,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8852,
            "lat": 45.9806929,
            "lng": 9.4212862,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8853,
            "lat": 47.1358936,
            "lng": 7.2795327,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8854,
            "lat": 47.1316016,
            "lng": 7.2762342,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 50639,
            "lat": -14.5782952,
            "lng": 35.1791907,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50644,
            "lat": -14.6760834,
            "lng": 35.1847407,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8856,
            "lat": 46.4258784,
            "lng": 7.5149641,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8858,
            "lat": 46.1568819,
            "lng": 8.7654414,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8859,
            "lat": 46.1315292,
            "lng": 8.7119885,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8860,
            "lat": 46.1235528,
            "lng": 8.7101186,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8861,
            "lat": 46.4970197,
            "lng": 9.902375,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8862,
            "lat": 46.4946936,
            "lng": 9.9016969,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8863,
            "lat": 46.4932005,
            "lng": 9.9024829,
            "type": "poi",
            "category": "drinking_water",
            "title": "Bügl da la Giuventüna"
        },
        {
            "id": 8864,
            "lat": 46.5964356,
            "lng": 9.9642483,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8866,
            "lat": 45.6427959,
            "lng": 8.8979712,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8867,
            "lat": 45.8067778,
            "lng": 6.9310488,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8868,
            "lat": 45.076434,
            "lng": 7.6555919,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8869,
            "lat": 48.5741196,
            "lng": 9.0195471,
            "type": "poi",
            "category": "drinking_water",
            "title": "Königsbrünnele"
        },
        {
            "id": 8870,
            "lat": 40.0370637,
            "lng": 0.0394606,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8871,
            "lat": 45.0738379,
            "lng": 7.6851506,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8872,
            "lat": 42.8257772,
            "lng": -1.6517433,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8873,
            "lat": 40.0506933,
            "lng": 0.0720162,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8874,
            "lat": 47.3976249,
            "lng": 8.0425542,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen Gysulastrasse / Sonnmattweg"
        },
        {
            "id": 8875,
            "lat": 47.3957586,
            "lng": 8.0372076,
            "type": "poi",
            "category": "drinking_water",
            "title": "Adlerbrunnen"
        },
        {
            "id": 8876,
            "lat": 47.3993872,
            "lng": 8.0580226,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen Tellischulhaus HPS"
        },
        {
            "id": 8877,
            "lat": 47.3934871,
            "lng": 8.0502426,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8878,
            "lat": 42.8263905,
            "lng": -1.6526763,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8879,
            "lat": 44.5188615,
            "lng": 9.3700947,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8880,
            "lat": 44.5395668,
            "lng": 9.386017,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8881,
            "lat": 44.5331307,
            "lng": 9.3898899,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8882,
            "lat": 44.5292838,
            "lng": 9.3883469,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8883,
            "lat": 44.5264593,
            "lng": 9.3853639,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8884,
            "lat": 44.5262824,
            "lng": 9.387169,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8885,
            "lat": 44.5257323,
            "lng": 9.386534,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8886,
            "lat": 47.836574,
            "lng": 8.5012601,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8887,
            "lat": 47.3595971,
            "lng": 8.3317171,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8888,
            "lat": 46.7990328,
            "lng": 5.6187858,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8889,
            "lat": 49.935371,
            "lng": 8.3212336,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8890,
            "lat": 45.5785395,
            "lng": 5.9299702,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8891,
            "lat": 48.9888918,
            "lng": 8.4124187,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8892,
            "lat": 46.423683,
            "lng": 8.160626,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 30068,
            "lat": 60.2010548,
            "lng": 25.1530133,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8894,
            "lat": 46.4244182,
            "lng": 8.1600076,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8895,
            "lat": 46.4240743,
            "lng": 8.1598521,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8896,
            "lat": 45.9543461,
            "lng": 9.7655965,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8897,
            "lat": 45.9546502,
            "lng": 9.764458,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8898,
            "lat": 45.9544044,
            "lng": 9.7619252,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8899,
            "lat": 45.9520677,
            "lng": 9.7343393,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8900,
            "lat": 45.5860223,
            "lng": 5.9935392,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8901,
            "lat": 51.5102687,
            "lng": 7.2121054,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8902,
            "lat": 45.164832,
            "lng": 6.999243,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8904,
            "lat": 45.6157,
            "lng": 6.8609844,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8905,
            "lat": 45.9532498,
            "lng": 9.7292102,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8906,
            "lat": 45.9570413,
            "lng": 9.7449847,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8907,
            "lat": 47.2890318,
            "lng": 9.6204828,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8908,
            "lat": 45.0628066,
            "lng": 7.6757504,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8909,
            "lat": 45.0736513,
            "lng": 7.6624483,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8910,
            "lat": 48.2762286,
            "lng": 8.162693,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8911,
            "lat": 47.1301625,
            "lng": 9.0201752,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8912,
            "lat": 45.2890153,
            "lng": 6.9119468,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8913,
            "lat": 45.0673982,
            "lng": 7.6323534,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8914,
            "lat": 45.0685494,
            "lng": 7.6265341,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8915,
            "lat": 48.0801773,
            "lng": 9.817121,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8916,
            "lat": 47.3945725,
            "lng": 8.3685531,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8917,
            "lat": 47.3947597,
            "lng": 8.3627629,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8918,
            "lat": 43.4820934,
            "lng": -5.4364334,
            "type": "poi",
            "category": "drinking_water",
            "title": "Monumento a Obdulio Fernández Pando"
        },
        {
            "id": 8919,
            "lat": 48.8945869,
            "lng": 2.241902,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8920,
            "lat": 45.0989037,
            "lng": 7.6895949,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8921,
            "lat": 45.1088142,
            "lng": 7.7012079,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8922,
            "lat": 45.1139385,
            "lng": 7.7041607,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8923,
            "lat": 45.1151984,
            "lng": 7.7038378,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8924,
            "lat": 47.3946336,
            "lng": 8.0348881,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8925,
            "lat": 46.2499665,
            "lng": 7.017478,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8926,
            "lat": 46.2504636,
            "lng": 7.0175355,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8927,
            "lat": 45.8396108,
            "lng": 8.7468541,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8928,
            "lat": 52.3548191,
            "lng": 4.8986173,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8929,
            "lat": 44.5097172,
            "lng": 7.1832427,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8930,
            "lat": 45.0649796,
            "lng": 7.6613128,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8931,
            "lat": 45.0691001,
            "lng": 7.719115,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 49484,
            "lat": -34.3495299,
            "lng": 150.9197626,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50647,
            "lat": -14.6764822,
            "lng": 35.1823072,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 8933,
            "lat": 45.0723539,
            "lng": 7.6790186,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8934,
            "lat": 48.1982189,
            "lng": 8.6174081,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8935,
            "lat": 45.596467,
            "lng": 8.8856811,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8936,
            "lat": 45.5988957,
            "lng": 8.8838551,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8937,
            "lat": 45.6003648,
            "lng": 8.8828858,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8938,
            "lat": 50.5154329,
            "lng": 8.2745141,
            "type": "poi",
            "category": "drinking_water",
            "title": "Sauerborn Löhnberg"
        },
        {
            "id": 8939,
            "lat": 47.2532846,
            "lng": 8.6958638,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8940,
            "lat": 47.2604428,
            "lng": 8.7000025,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8941,
            "lat": 44.5588559,
            "lng": 9.4858869,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8942,
            "lat": 45.0810574,
            "lng": 7.6507756,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8943,
            "lat": 45.0802867,
            "lng": 7.6502365,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8944,
            "lat": 45.0793395,
            "lng": 7.6470112,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8945,
            "lat": 45.0708361,
            "lng": 7.6468123,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8946,
            "lat": 45.0703459,
            "lng": 7.6466245,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8947,
            "lat": 45.0861701,
            "lng": 7.6399468,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8948,
            "lat": 45.8424495,
            "lng": 9.3886296,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8949,
            "lat": 49.72059,
            "lng": 8.63399,
            "type": "poi",
            "category": "drinking_water",
            "title": "Herrenweg-Quelle"
        },
        {
            "id": 8950,
            "lat": 49.2434225,
            "lng": 7.2399058,
            "type": "poi",
            "category": "drinking_water",
            "title": "Florianbrunnen"
        },
        {
            "id": 8951,
            "lat": 47.3913847,
            "lng": 8.4476446,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8952,
            "lat": 45.5169075,
            "lng": 8.7508778,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8953,
            "lat": 42.7728528,
            "lng": -0.3329974,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente Espadilla"
        },
        {
            "id": 8955,
            "lat": 45.0794559,
            "lng": 7.6535132,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8956,
            "lat": 47.4139373,
            "lng": 8.5273065,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notwasserbrunnen"
        },
        {
            "id": 8957,
            "lat": 42.4668243,
            "lng": -2.443684,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8958,
            "lat": 42.4663774,
            "lng": -2.4444857,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8959,
            "lat": 42.4670353,
            "lng": -2.4454799,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8960,
            "lat": 45.8827436,
            "lng": 9.2426835,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8961,
            "lat": 42.4434356,
            "lng": 0.0697795,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8962,
            "lat": 42.4422726,
            "lng": 0.0737261,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8963,
            "lat": 45.2580002,
            "lng": 9.0274995,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8964,
            "lat": 47.3858824,
            "lng": 8.5471846,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8965,
            "lat": 45.1081186,
            "lng": 7.4786802,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8966,
            "lat": 45.1081416,
            "lng": 7.4814591,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8967,
            "lat": 47.3764076,
            "lng": 8.5440345,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8968,
            "lat": 52.6028014,
            "lng": 0.3775458,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8969,
            "lat": 45.0967574,
            "lng": 7.5518626,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8970,
            "lat": 45.1065492,
            "lng": 7.4818495,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8971,
            "lat": 45.1076383,
            "lng": 7.4822968,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 27731,
            "lat": 52.3934236,
            "lng": 5.2132428,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2842,
            "lat": 40.4869199,
            "lng": -5.5215938,
            "type": "poi",
            "category": "campsite",
            "title": "Área de autocaravana Piscina Natural Río Tormes"
        },
        {
            "id": 8973,
            "lat": 45.0675968,
            "lng": 7.6415383,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8974,
            "lat": 45.0667762,
            "lng": 7.6238026,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8976,
            "lat": 45.9992257,
            "lng": 9.385344,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8977,
            "lat": 48.8649929,
            "lng": 2.175717,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8978,
            "lat": 44.550593,
            "lng": 9.4613962,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8979,
            "lat": 44.4877672,
            "lng": 9.4892505,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8980,
            "lat": 44.4861965,
            "lng": 9.4874769,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8981,
            "lat": 45.0464385,
            "lng": 7.6667035,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8982,
            "lat": 45.0469667,
            "lng": 7.6684335,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8983,
            "lat": 47.588497,
            "lng": 8.1665866,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8984,
            "lat": 47.5884925,
            "lng": 8.1637616,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8985,
            "lat": 42.447111,
            "lng": -2.5048061,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8986,
            "lat": 47.5781612,
            "lng": 8.1876371,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8987,
            "lat": 47.3548174,
            "lng": 8.5352197,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8988,
            "lat": 43.462866,
            "lng": -1.5762522,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8989,
            "lat": 43.4632496,
            "lng": -1.5757322,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8990,
            "lat": 43.4644186,
            "lng": -1.5744677,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8991,
            "lat": 47.598407,
            "lng": 8.6486478,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8992,
            "lat": 43.5961882,
            "lng": 1.4509463,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8993,
            "lat": 47.383053,
            "lng": 8.5436805,
            "type": "poi",
            "category": "drinking_water",
            "title": "Büeblibrunnen"
        },
        {
            "id": 8994,
            "lat": 47.3834387,
            "lng": 8.5434747,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notwasserbrunnen"
        },
        {
            "id": 8995,
            "lat": 47.378323,
            "lng": 8.5367313,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8996,
            "lat": 47.378467,
            "lng": 8.5368164,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8997,
            "lat": 47.3786101,
            "lng": 8.5369009,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8998,
            "lat": 47.3787608,
            "lng": 8.53699,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 8999,
            "lat": 47.3789007,
            "lng": 8.5370726,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9001,
            "lat": 47.3781816,
            "lng": 8.5366478,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 50648,
            "lat": -14.6769667,
            "lng": 35.1820457,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50654,
            "lat": -14.6260667,
            "lng": 35.1802418,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50655,
            "lat": -14.626078,
            "lng": 35.1809833,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2843,
            "lat": 43.5119649,
            "lng": 2.7531944,
            "type": "poi",
            "category": "campsite",
            "title": "La Borio de Roque"
        },
        {
            "id": 1261,
            "lat": 53.726329,
            "lng": 21.5532541,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 1262,
            "lat": 58.1214456,
            "lng": 24.7691036,
            "type": "poi",
            "category": "campsite",
            "title": "Rae järve telkimisala"
        },
        {
            "id": 1263,
            "lat": 57.4560709,
            "lng": 15.7248836,
            "type": "poi",
            "category": "campsite",
            "title": "Stora Hammersjö"
        },
        {
            "id": 1264,
            "lat": 66.1294328,
            "lng": 32.7936402,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 1265,
            "lat": 66.1320847,
            "lng": 32.8158896,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 1266,
            "lat": 66.1393549,
            "lng": 32.7771915,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 1267,
            "lat": 66.1598134,
            "lng": 32.7376442,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 9003,
            "lat": 47.3731918,
            "lng": 8.5439158,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9004,
            "lat": 47.3736153,
            "lng": 8.545257,
            "type": "poi",
            "category": "drinking_water",
            "title": "Froschauerbrunnen"
        },
        {
            "id": 9005,
            "lat": 47.3725462,
            "lng": 8.547277,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notwasserbrunnen"
        },
        {
            "id": 9006,
            "lat": 47.3689846,
            "lng": 8.5501801,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9007,
            "lat": 47.3787933,
            "lng": 8.5415326,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 1268,
            "lat": 66.1633699,
            "lng": 32.7351802,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 1323,
            "lat": 59.5857501,
            "lng": 24.7499006,
            "type": "poi",
            "category": "campsite",
            "title": "Põhjarand"
        },
        {
            "id": 9008,
            "lat": 47.3958456,
            "lng": 8.545151,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen \"Dogge mit Zürcher Wappen"
        },
        {
            "id": 9009,
            "lat": 47.4095515,
            "lng": 8.5462213,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9010,
            "lat": 47.4099675,
            "lng": 8.546086,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9011,
            "lat": 47.4105937,
            "lng": 8.5443616,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9012,
            "lat": 46.2063404,
            "lng": 8.2522955,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9013,
            "lat": 46.2062251,
            "lng": 8.2548627,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9014,
            "lat": 46.2544433,
            "lng": 8.1603899,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9015,
            "lat": 46.3153505,
            "lng": 8.2605652,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9016,
            "lat": 46.3152989,
            "lng": 8.2587765,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 50663,
            "lat": -14.6268262,
            "lng": 35.1804495,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30074,
            "lat": 43.5026092,
            "lng": 16.4211,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28144,
            "lat": 36.8540266,
            "lng": 7.735799,
            "type": "poi",
            "category": "shower",
            "title": "Hammam Delalou"
        },
        {
            "id": 28151,
            "lat": 49.4237427,
            "lng": 7.7545165,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28152,
            "lat": 46.8137097,
            "lng": 7.5161592,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50676,
            "lat": -14.628126,
            "lng": 35.1809937,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2844,
            "lat": 52.8113883,
            "lng": -4.515462,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 9018,
            "lat": 45.366367,
            "lng": 8.1747949,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9020,
            "lat": 47.4027443,
            "lng": 8.5355427,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9021,
            "lat": 47.4058949,
            "lng": 8.5378468,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen mit Plastik \"Falke\""
        },
        {
            "id": 9022,
            "lat": 47.4088367,
            "lng": 8.53957,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notwasserbrunnen"
        },
        {
            "id": 9023,
            "lat": 47.3864234,
            "lng": 8.5609143,
            "type": "poi",
            "category": "drinking_water",
            "title": "Orellibrunnen"
        },
        {
            "id": 9024,
            "lat": 47.2933583,
            "lng": 8.4348718,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9025,
            "lat": 47.4168057,
            "lng": 8.4892896,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9026,
            "lat": 43.6291625,
            "lng": 7.0900079,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9027,
            "lat": 45.0493945,
            "lng": 7.664425,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9028,
            "lat": 45.0501783,
            "lng": 7.661031,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9029,
            "lat": 47.7040268,
            "lng": 8.9300168,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9030,
            "lat": 42.4594126,
            "lng": -2.4663201,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9031,
            "lat": 45.0690183,
            "lng": 7.661146,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9032,
            "lat": 45.6875205,
            "lng": 9.6533083,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9033,
            "lat": 47.3710477,
            "lng": 8.5430927,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fischmarktbrunnen"
        },
        {
            "id": 9034,
            "lat": 49.6881194,
            "lng": 8.7409884,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen"
        },
        {
            "id": 9035,
            "lat": 44.2158222,
            "lng": 7.4301406,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9036,
            "lat": 44.2066801,
            "lng": 7.4383631,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9037,
            "lat": 45.9481023,
            "lng": 9.9154699,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9038,
            "lat": 47.4149493,
            "lng": 8.5371347,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9039,
            "lat": 42.3363717,
            "lng": -3.7024441,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9040,
            "lat": 43.5158715,
            "lng": -5.6073496,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fonte La Castañal"
        },
        {
            "id": 9041,
            "lat": 45.0276926,
            "lng": 5.7720888,
            "type": "poi",
            "category": "drinking_water",
            "title": "point d'eau"
        },
        {
            "id": 9042,
            "lat": 47.4146944,
            "lng": 8.47527,
            "type": "poi",
            "category": "drinking_water",
            "title": "Rütihofbrunnen"
        },
        {
            "id": 9043,
            "lat": 47.4044564,
            "lng": 8.4889954,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9044,
            "lat": 42.3335532,
            "lng": -3.7035946,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9045,
            "lat": 51.1373943,
            "lng": 9.0631211,
            "type": "poi",
            "category": "drinking_water",
            "title": "Mühlenbrunnen"
        },
        {
            "id": 9046,
            "lat": 51.1387204,
            "lng": 9.0649166,
            "type": "poi",
            "category": "drinking_water",
            "title": "Mühlenbrunnen"
        },
        {
            "id": 9047,
            "lat": 51.1415783,
            "lng": 9.071796,
            "type": "poi",
            "category": "drinking_water",
            "title": "Bathildisquelle"
        },
        {
            "id": 30075,
            "lat": 43.5038236,
            "lng": 16.4180129,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 43632,
            "lat": 56.4693973,
            "lng": 161.5033123,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 27738,
            "lat": 46.1445194,
            "lng": -1.1675145,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 17510,
            "lat": 62.6526886,
            "lng": 31.062966,
            "type": "poi",
            "category": "caravan_site",
            "title": "Ruhkarannan lomakylä"
        },
        {
            "id": 47778,
            "lat": 18.5603495,
            "lng": -72.3373778,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9050,
            "lat": 45.1420549,
            "lng": 7.610495,
            "type": "poi",
            "category": "drinking_water",
            "title": "Ponte Verde"
        },
        {
            "id": 9051,
            "lat": 45.1438938,
            "lng": 7.6055942,
            "type": "poi",
            "category": "drinking_water",
            "title": "Trivio"
        },
        {
            "id": 9052,
            "lat": 45.1443248,
            "lng": 7.6189558,
            "type": "poi",
            "category": "drinking_water",
            "title": "3 Cancelli piazzale"
        },
        {
            "id": 9053,
            "lat": 45.1523037,
            "lng": 7.6160921,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brero"
        },
        {
            "id": 9054,
            "lat": 45.1537499,
            "lng": 7.6075852,
            "type": "poi",
            "category": "drinking_water",
            "title": "Rondò"
        },
        {
            "id": 9055,
            "lat": 45.1447425,
            "lng": 7.590779,
            "type": "poi",
            "category": "drinking_water",
            "title": "Vittoria"
        },
        {
            "id": 9056,
            "lat": 49.0128415,
            "lng": 2.8264896,
            "type": "poi",
            "category": "drinking_water",
            "title": "Point d'eau"
        },
        {
            "id": 9057,
            "lat": 45.9668129,
            "lng": 7.9315733,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9058,
            "lat": 45.9682327,
            "lng": 7.9619232,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9059,
            "lat": 45.723471,
            "lng": 4.8988256,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9060,
            "lat": 46.3432945,
            "lng": 6.838812,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9061,
            "lat": 46.3452722,
            "lng": 6.8294571,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9062,
            "lat": 46.4160476,
            "lng": 6.9485068,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9063,
            "lat": 45.7189765,
            "lng": 4.9000047,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9064,
            "lat": 45.7149902,
            "lng": 4.8972997,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9065,
            "lat": 47.5942,
            "lng": 7.6316923,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9066,
            "lat": 45.7203063,
            "lng": 4.8950919,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9067,
            "lat": 45.7168053,
            "lng": 4.8974363,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9068,
            "lat": 45.7217354,
            "lng": 4.9032655,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9069,
            "lat": 45.6316145,
            "lng": 8.8921965,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9070,
            "lat": 46.7683443,
            "lng": 8.7212855,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9071,
            "lat": 46.7866453,
            "lng": 8.7905867,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9072,
            "lat": 45.0219412,
            "lng": 7.5234689,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9073,
            "lat": 45.6711232,
            "lng": 9.7300907,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9074,
            "lat": 43.992501,
            "lng": 7.7670046,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontana Soprana"
        },
        {
            "id": 9075,
            "lat": 40.0925219,
            "lng": 0.1313373,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9076,
            "lat": 40.0920632,
            "lng": 0.1341477,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9077,
            "lat": 40.0921127,
            "lng": 0.1312198,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9078,
            "lat": 47.4107246,
            "lng": 8.5013481,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 27601,
            "lat": 48.5436543,
            "lng": 7.749098,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28194,
            "lat": 42.7911733,
            "lng": 3.0386792,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28242,
            "lat": 49.4397145,
            "lng": 7.7982133,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 37561,
            "lat": 61.2722395,
            "lng": 4.9463254,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 18837,
            "lat": 47.2301369,
            "lng": 39.9332893,
            "type": "poi",
            "category": "caravan_site",
            "title": "Местина"
        },
        {
            "id": 47781,
            "lat": 18.5617885,
            "lng": -72.3375948,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 47782,
            "lat": 18.5367152,
            "lng": -72.4061281,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27754,
            "lat": 47.2450287,
            "lng": 8.2246122,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28243,
            "lat": 49.4397573,
            "lng": 7.7982289,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9089,
            "lat": 47.4117237,
            "lng": 8.5253727,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnenanlage mit \"Pelikan\""
        },
        {
            "id": 9090,
            "lat": 41.7178403,
            "lng": -2.6291571,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9091,
            "lat": 40.0458291,
            "lng": 0.0594312,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9092,
            "lat": 39.8466384,
            "lng": -6.0291505,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de la Cañada"
        },
        {
            "id": 9093,
            "lat": 41.7635608,
            "lng": -2.4635804,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9094,
            "lat": 49.3638709,
            "lng": 9.3431021,
            "type": "poi",
            "category": "drinking_water",
            "title": "Schwefelquelle"
        },
        {
            "id": 9095,
            "lat": 41.6089764,
            "lng": -2.5409094,
            "type": "poi",
            "category": "drinking_water",
            "title": "Valdefuentes"
        },
        {
            "id": 9096,
            "lat": 47.1703608,
            "lng": 8.5230696,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9105,
            "lat": 45.8292892,
            "lng": 6.7291307,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9106,
            "lat": 45.8291947,
            "lng": 6.7282975,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9107,
            "lat": 45.1795867,
            "lng": 9.1523687,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9108,
            "lat": 45.1715736,
            "lng": 9.1459669,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9109,
            "lat": 45.185076,
            "lng": 9.1526924,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9110,
            "lat": 45.1881547,
            "lng": 9.154051,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9111,
            "lat": 45.1956873,
            "lng": 9.1487872,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9112,
            "lat": 45.1980713,
            "lng": 9.1442866,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9113,
            "lat": 45.1884953,
            "lng": 9.1450014,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9114,
            "lat": 45.1828975,
            "lng": 9.1424575,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9115,
            "lat": 45.188479,
            "lng": 9.1442275,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9116,
            "lat": 48.4443661,
            "lng": 8.6730953,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9117,
            "lat": 50.1483183,
            "lng": 7.5490192,
            "type": "poi",
            "category": "drinking_water",
            "title": "Heilbrünnchen"
        },
        {
            "id": 9118,
            "lat": 45.7736902,
            "lng": 8.5774568,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9119,
            "lat": 47.376005,
            "lng": 8.5442453,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9120,
            "lat": 45.4509905,
            "lng": 9.2241225,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9121,
            "lat": 47.231378,
            "lng": -0.0083843,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9122,
            "lat": 47.2007215,
            "lng": 0.1441943,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9123,
            "lat": 47.2520022,
            "lng": 0.2978131,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9124,
            "lat": 47.3481125,
            "lng": 0.5452565,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9125,
            "lat": 47.3671677,
            "lng": 0.6979216,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 28244,
            "lat": 50.4439397,
            "lng": 7.5778797,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28252,
            "lat": 50.7590732,
            "lng": 6.0718618,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28253,
            "lat": 50.7594631,
            "lng": 6.0721511,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27769,
            "lat": 42.826651,
            "lng": 3.0415278,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 47783,
            "lat": 18.5365528,
            "lng": -72.4060317,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 49720,
            "lat": 45.5974828,
            "lng": -64.9517061,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9132,
            "lat": 45.5649801,
            "lng": 5.9240804,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9133,
            "lat": 43.8422539,
            "lng": 4.3700399,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9134,
            "lat": 47.1358031,
            "lng": 8.5591892,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9135,
            "lat": 45.8833209,
            "lng": 8.3423881,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9136,
            "lat": 44.1248337,
            "lng": 9.7884232,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9137,
            "lat": 48.6160749,
            "lng": 2.419026,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9138,
            "lat": 42.5595016,
            "lng": 1.9994212,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9139,
            "lat": 45.0737771,
            "lng": 5.9819912,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9140,
            "lat": 45.0486437,
            "lng": 7.5522651,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9141,
            "lat": 47.6823441,
            "lng": 9.2110229,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9142,
            "lat": 43.8413673,
            "lng": 4.3798594,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9144,
            "lat": 43.8454391,
            "lng": 4.3652151,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9145,
            "lat": 45.5221796,
            "lng": 8.7639927,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9146,
            "lat": 45.5433824,
            "lng": 8.8497595,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9147,
            "lat": 43.8413803,
            "lng": 4.3492235,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9148,
            "lat": 43.8398627,
            "lng": 4.3504665,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9149,
            "lat": 43.3131532,
            "lng": -4.1771563,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9150,
            "lat": 43.4014461,
            "lng": -0.0897284,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9151,
            "lat": 40.0533292,
            "lng": 0.0753324,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9152,
            "lat": 45.3658867,
            "lng": 9.1088305,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9153,
            "lat": 45.610399,
            "lng": 9.9192868,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9154,
            "lat": 45.6117692,
            "lng": 9.9202905,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9155,
            "lat": 47.3053833,
            "lng": 8.6846437,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9156,
            "lat": 47.3063755,
            "lng": 8.6839949,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9157,
            "lat": 45.7148136,
            "lng": 8.8624769,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9158,
            "lat": 47.7917934,
            "lng": 8.7249809,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9159,
            "lat": 48.0189972,
            "lng": 7.0445076,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9160,
            "lat": 46.2029194,
            "lng": 6.9409963,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9161,
            "lat": 47.4342013,
            "lng": 7.8139902,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9162,
            "lat": 47.4360403,
            "lng": 7.8112833,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9163,
            "lat": 45.1599828,
            "lng": 9.3139714,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9164,
            "lat": 46.8725739,
            "lng": 8.7277885,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9165,
            "lat": 45.9544439,
            "lng": 9.8124394,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9166,
            "lat": 45.9500405,
            "lng": 9.8582101,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9167,
            "lat": 45.8847561,
            "lng": 8.5397589,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 27594,
            "lat": 51.8613475,
            "lng": 6.6091798,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27605,
            "lat": 54.0901365,
            "lng": 8.9561117,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30641,
            "lat": 52.2301665,
            "lng": 10.7010763,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30081,
            "lat": 43.5038058,
            "lng": 16.4167842,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30082,
            "lat": 49.149318,
            "lng": 10.6785061,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 37565,
            "lat": 58.2175462,
            "lng": -6.9406277,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 18655,
            "lat": 37.1476164,
            "lng": 42.6510015,
            "type": "poi",
            "category": "caravan_site",
            "title": "البيت"
        },
        {
            "id": 43640,
            "lat": 36.3303348,
            "lng": 59.4849097,
            "type": "poi",
            "category": "caravan_site",
            "title": "امپراطور"
        },
        {
            "id": 47812,
            "lat": 18.2323418,
            "lng": -72.5325131,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27611,
            "lat": 48.475551,
            "lng": 9.7420775,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30646,
            "lat": 63.0445215,
            "lng": 10.2901108,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30647,
            "lat": 64.1074722,
            "lng": 16.1724257,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28270,
            "lat": 39.3499424,
            "lng": 9.5966787,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9172,
            "lat": 36.0652875,
            "lng": -5.6984384,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9173,
            "lat": 47.3834876,
            "lng": 8.5307046,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9174,
            "lat": 47.3841768,
            "lng": 8.5313736,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notwasserbrunnen"
        },
        {
            "id": 9184,
            "lat": 49.1819497,
            "lng": 2.6719145,
            "type": "poi",
            "category": "drinking_water",
            "title": "Point d'eau"
        },
        {
            "id": 9185,
            "lat": 45.4475865,
            "lng": 9.1671887,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9186,
            "lat": 45.4668738,
            "lng": 9.1901997,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9187,
            "lat": 46.3096472,
            "lng": 7.4110709,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9188,
            "lat": 44.201005,
            "lng": 7.5792779,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9189,
            "lat": 44.1986073,
            "lng": 7.5858183,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9190,
            "lat": 46.9559107,
            "lng": 6.8178205,
            "type": "poi",
            "category": "drinking_water",
            "title": "Place du 650ème"
        },
        {
            "id": 9191,
            "lat": 44.4974654,
            "lng": 7.9131367,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9192,
            "lat": 50.8813708,
            "lng": -0.2666205,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9193,
            "lat": 47.2699631,
            "lng": 8.8207547,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9194,
            "lat": 47.1543138,
            "lng": 8.5606463,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9195,
            "lat": 45.5827105,
            "lng": 9.2739583,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9196,
            "lat": 45.8571277,
            "lng": 9.3657399,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9197,
            "lat": 45.9004953,
            "lng": 9.3320064,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9198,
            "lat": 46.0895942,
            "lng": 9.3112987,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9199,
            "lat": 46.1021699,
            "lng": 9.3191494,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9200,
            "lat": 46.1461082,
            "lng": 9.5858769,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9201,
            "lat": 46.1618436,
            "lng": 9.8437468,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9202,
            "lat": 46.1602987,
            "lng": 9.8769165,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9203,
            "lat": 47.3984762,
            "lng": 8.5181528,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9204,
            "lat": 40.1863855,
            "lng": 0.0948432,
            "type": "poi",
            "category": "drinking_water",
            "title": "Font de Subarra"
        },
        {
            "id": 9205,
            "lat": 49.400026,
            "lng": 7.2017743,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen"
        },
        {
            "id": 9206,
            "lat": 45.7020079,
            "lng": 9.0793577,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 15023,
            "lat": 53.4358156,
            "lng": 8.2957418,
            "type": "poi",
            "category": "caravan_site",
            "title": "Camping Sehestedt"
        },
        {
            "id": 43642,
            "lat": 43.0119027,
            "lng": 131.5021674,
            "type": "poi",
            "category": "caravan_site",
            "title": "Пляжик у озерца"
        },
        {
            "id": 47814,
            "lat": 18.2323412,
            "lng": -72.5325407,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 47815,
            "lat": 37.5981372,
            "lng": -122.5024331,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 47817,
            "lat": 32.1802831,
            "lng": 34.802329,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27614,
            "lat": 48.3974582,
            "lng": -4.957125,
            "type": "poi",
            "category": "shower",
            "title": "Douches"
        },
        {
            "id": 30663,
            "lat": 49.1285809,
            "lng": 10.8648064,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2556,
            "lat": 53.1522373,
            "lng": 4.8586531,
            "type": "poi",
            "category": "campsite",
            "title": "De Krim"
        },
        {
            "id": 49804,
            "lat": 46.3977401,
            "lng": -63.8519636,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9216,
            "lat": 44.525692,
            "lng": 9.3882787,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9217,
            "lat": 44.5155199,
            "lng": 9.4096348,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9218,
            "lat": 46.2781632,
            "lng": 6.7535007,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9219,
            "lat": 45.4531817,
            "lng": 8.8596715,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9220,
            "lat": 49.3643479,
            "lng": 9.3403464,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9221,
            "lat": 45.838853,
            "lng": 6.7590214,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9222,
            "lat": 45.7641894,
            "lng": 6.7124644,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine sous la Balme"
        },
        {
            "id": 9223,
            "lat": 45.7581549,
            "lng": 6.7109816,
            "type": "poi",
            "category": "drinking_water",
            "title": "Source du bonhomme"
        },
        {
            "id": 9224,
            "lat": 47.360236,
            "lng": 8.5053852,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9225,
            "lat": 47.3576417,
            "lng": 8.5089548,
            "type": "poi",
            "category": "drinking_water",
            "title": "Murmeltierbrunnen"
        },
        {
            "id": 9226,
            "lat": 47.3546218,
            "lng": 8.5110059,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notwasserbrunnen"
        },
        {
            "id": 9228,
            "lat": 46.5934385,
            "lng": 7.9089563,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9234,
            "lat": 46.7787685,
            "lng": 8.3873184,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9235,
            "lat": 47.360881,
            "lng": 8.5048234,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9236,
            "lat": 46.8507446,
            "lng": 8.5737414,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9237,
            "lat": 46.9731519,
            "lng": 8.7736066,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9238,
            "lat": 46.9470043,
            "lng": 8.7094135,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9239,
            "lat": 46.9420459,
            "lng": 8.6807145,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9240,
            "lat": 49.2296307,
            "lng": 2.548369,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9241,
            "lat": 46.022883,
            "lng": 7.0047451,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9242,
            "lat": 45.2355148,
            "lng": 9.2347885,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 28282,
            "lat": 53.7935617,
            "lng": 7.9003586,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30666,
            "lat": 48.5895283,
            "lng": 17.8434669,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28582,
            "lat": 35.9763999,
            "lng": 5.8141298,
            "type": "poi",
            "category": "shower",
            "title": "حمام بلعزام"
        },
        {
            "id": 28286,
            "lat": 38.1058293,
            "lng": -0.6437919,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50692,
            "lat": -14.5472323,
            "lng": 35.1897922,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2557,
            "lat": 51.3361871,
            "lng": 5.3554839,
            "type": "poi",
            "category": "campsite",
            "title": "De Paal"
        },
        {
            "id": 2558,
            "lat": 51.6723899,
            "lng": 3.7064478,
            "type": "poi",
            "category": "campsite",
            "title": "Ardoer camping Duinoord"
        },
        {
            "id": 2559,
            "lat": 53.1267511,
            "lng": 5.9455177,
            "type": "poi",
            "category": "campsite",
            "title": "It Wiid"
        },
        {
            "id": 2560,
            "lat": 51.4964026,
            "lng": 5.3199301,
            "type": "poi",
            "category": "campsite",
            "title": "Latour"
        },
        {
            "id": 2561,
            "lat": 53.4038462,
            "lng": 6.2115864,
            "type": "poi",
            "category": "campsite",
            "title": "Siblu Camping Lauwersoog"
        },
        {
            "id": 2562,
            "lat": 51.5781299,
            "lng": 3.6980029,
            "type": "poi",
            "category": "campsite",
            "title": "Molenhoek"
        },
        {
            "id": 2563,
            "lat": 52.694722,
            "lng": 4.771111,
            "type": "poi",
            "category": "campsite",
            "title": "Molengroet"
        },
        {
            "id": 2564,
            "lat": 53.0308971,
            "lng": 5.7257319,
            "type": "poi",
            "category": "campsite",
            "title": "RCN de Potten"
        },
        {
            "id": 49999,
            "lat": 49.3255612,
            "lng": -124.2733425,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2565,
            "lat": 51.5901281,
            "lng": 3.7205546,
            "type": "poi",
            "category": "campsite",
            "title": "Roompot"
        },
        {
            "id": 2566,
            "lat": 52.1396557,
            "lng": 6.7251638,
            "type": "poi",
            "category": "campsite",
            "title": "Bergsehaak"
        },
        {
            "id": 2567,
            "lat": 52.846111,
            "lng": 4.715278,
            "type": "poi",
            "category": "campsite",
            "title": "Tempelhof"
        },
        {
            "id": 2568,
            "lat": 52.4266757,
            "lng": 5.0740884,
            "type": "poi",
            "category": "campsite",
            "title": "Uitdam"
        },
        {
            "id": 2569,
            "lat": 51.704722,
            "lng": 5.430833,
            "type": "poi",
            "category": "campsite",
            "title": "Vinkeloord"
        },
        {
            "id": 2845,
            "lat": 42.4345387,
            "lng": -5.8750751,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Veguellina"
        },
        {
            "id": 1467,
            "lat": 36.5532844,
            "lng": 29.1149446,
            "type": "poi",
            "category": "campsite",
            "title": "Sugar Beach Club"
        },
        {
            "id": 1468,
            "lat": 36.4728031,
            "lng": 29.4018948,
            "type": "poi",
            "category": "campsite",
            "title": "George Club"
        },
        {
            "id": 1469,
            "lat": 68.4337221,
            "lng": 22.5128303,
            "type": "poi",
            "category": "campsite",
            "title": "Karesuando Camping"
        },
        {
            "id": 1470,
            "lat": 54.9063496,
            "lng": 26.7410905,
            "type": "poi",
            "category": "campsite",
            "title": "Антанізберг"
        },
        {
            "id": 1471,
            "lat": 54.9494577,
            "lng": 26.5862377,
            "type": "poi",
            "category": "campsite",
            "title": "Глыбокі Ручай"
        },
        {
            "id": 1472,
            "lat": 54.9726187,
            "lng": 26.607356,
            "type": "poi",
            "category": "campsite",
            "title": "Турыстычная стаянка «Цюкшы-2»"
        },
        {
            "id": 37572,
            "lat": 34.8180399,
            "lng": -90.4157207,
            "type": "poi",
            "category": "caravan_site",
            "title": "Sam's Town RV Park"
        },
        {
            "id": 9245,
            "lat": 45.712053,
            "lng": 9.6939895,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9259,
            "lat": 45.7864775,
            "lng": 8.6617666,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9260,
            "lat": 47.3718929,
            "lng": 8.5154513,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9261,
            "lat": 48.8374741,
            "lng": 2.296437,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9262,
            "lat": 47.3742715,
            "lng": 8.5145514,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen mit \"wasserspeiendem Schwan\""
        },
        {
            "id": 9263,
            "lat": 45.1044982,
            "lng": 7.6816304,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9264,
            "lat": 47.1735743,
            "lng": 8.591638,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9265,
            "lat": 47.6593744,
            "lng": 9.1734931,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9266,
            "lat": 48.8426769,
            "lng": 2.2964541,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9267,
            "lat": 48.8447051,
            "lng": 2.3110485,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9268,
            "lat": 48.8418835,
            "lng": 2.3030663,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9269,
            "lat": 48.8358327,
            "lng": 2.3023508,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9270,
            "lat": 48.8418917,
            "lng": 2.2973124,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9271,
            "lat": 48.8375362,
            "lng": 2.2963597,
            "type": "poi",
            "category": "drinking_water",
            "title": "Petite Fontaine Wallace"
        },
        {
            "id": 9272,
            "lat": 48.8371698,
            "lng": 2.2968218,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9273,
            "lat": 44.4258403,
            "lng": 8.7298884,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9274,
            "lat": 47.9471648,
            "lng": 7.8801609,
            "type": "poi",
            "category": "drinking_water",
            "title": "Michelbrunnen"
        },
        {
            "id": 9275,
            "lat": 47.9229713,
            "lng": 7.8970252,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9276,
            "lat": 47.2820794,
            "lng": 9.3568314,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9277,
            "lat": 47.2715593,
            "lng": 9.3442473,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9278,
            "lat": 47.2674715,
            "lng": 9.3430666,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9279,
            "lat": 47.2682001,
            "lng": 9.3312711,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9280,
            "lat": 47.2336127,
            "lng": 9.2699488,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 30788,
            "lat": 49.6268606,
            "lng": 12.3459929,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 17519,
            "lat": 51.0286389,
            "lng": 14.6302417,
            "type": "poi",
            "category": "caravan_site",
            "title": "An der Bockwindmühle"
        },
        {
            "id": 47830,
            "lat": 18.2493331,
            "lng": -72.5216244,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30784,
            "lat": 51.814679,
            "lng": 10.8136068,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50693,
            "lat": -14.5472501,
            "lng": 35.1883295,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50694,
            "lat": -14.5472515,
            "lng": 35.1882488,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50695,
            "lat": -14.5473046,
            "lng": 35.1892195,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 37577,
            "lat": -17.2961486,
            "lng": 145.6355217,
            "type": "poi",
            "category": "caravan_site",
            "title": "Lake Eacham Caravan Park"
        },
        {
            "id": 18838,
            "lat": 35.513581,
            "lng": 35.7806533,
            "type": "poi",
            "category": "caravan_site",
            "title": "بيت سحر"
        },
        {
            "id": 47831,
            "lat": 18.2489737,
            "lng": -72.5216811,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27627,
            "lat": 43.558121,
            "lng": 4.0609918,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28368,
            "lat": 38.532285,
            "lng": -0.1581648,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9284,
            "lat": 44.4189766,
            "lng": 3.78177,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9285,
            "lat": 44.4170129,
            "lng": 3.7830887,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9286,
            "lat": 44.4000611,
            "lng": 3.7887309,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9287,
            "lat": 48.9994756,
            "lng": 9.1531969,
            "type": "poi",
            "category": "drinking_water",
            "title": "Trinkbrunnen"
        },
        {
            "id": 9288,
            "lat": 47.2384077,
            "lng": 7.3039112,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9299,
            "lat": 47.2488632,
            "lng": 8.6977186,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9300,
            "lat": 48.8411351,
            "lng": 2.2996815,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9301,
            "lat": 48.8513729,
            "lng": 2.3428143,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9302,
            "lat": 45.789367,
            "lng": 8.6591854,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9303,
            "lat": 45.7564679,
            "lng": 9.7976267,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9304,
            "lat": 45.7794729,
            "lng": 9.82486,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9305,
            "lat": 47.092839,
            "lng": 8.6415315,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9306,
            "lat": 45.0740407,
            "lng": 5.2096402,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9307,
            "lat": 45.1981585,
            "lng": 9.3830831,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9308,
            "lat": 52.1010271,
            "lng": -2.3423486,
            "type": "poi",
            "category": "drinking_water",
            "title": "Hayslad"
        },
        {
            "id": 9309,
            "lat": 40.4611418,
            "lng": -3.6014323,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9310,
            "lat": 40.4622707,
            "lng": -3.6013894,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9311,
            "lat": 40.4642456,
            "lng": -3.6042923,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9312,
            "lat": 40.4586011,
            "lng": -3.6004142,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9313,
            "lat": 40.4605696,
            "lng": -3.605104,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9314,
            "lat": 45.8001464,
            "lng": 9.8469743,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9315,
            "lat": 45.8223004,
            "lng": 9.8589254,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9316,
            "lat": 44.5635945,
            "lng": -0.2258562,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9317,
            "lat": 45.1919636,
            "lng": 9.1442853,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9318,
            "lat": 45.1642992,
            "lng": 9.063546,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9319,
            "lat": 45.8486754,
            "lng": 9.8808443,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9320,
            "lat": 45.0698498,
            "lng": 7.6179542,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9321,
            "lat": 45.0775426,
            "lng": 7.6176217,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9322,
            "lat": 47.3928918,
            "lng": 8.5302019,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notwasserbrunnen"
        },
        {
            "id": 9323,
            "lat": 48.4751034,
            "lng": 8.2443759,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brand-Brunnen"
        },
        {
            "id": 9324,
            "lat": 46.5311319,
            "lng": 6.5756074,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9325,
            "lat": 40.455566,
            "lng": -3.6064388,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 28369,
            "lat": 38.5322589,
            "lng": -0.1582089,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50696,
            "lat": -14.5473146,
            "lng": 35.1888683,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50697,
            "lat": -14.5473443,
            "lng": 35.1887891,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 47836,
            "lat": 18.5983575,
            "lng": -72.2560819,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28374,
            "lat": 38.5333252,
            "lng": -0.156124,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28375,
            "lat": 38.5333024,
            "lng": -0.1561853,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50698,
            "lat": -14.5473524,
            "lng": 35.1884076,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2846,
            "lat": 42.5875689,
            "lng": -5.8207739,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Carrizo de la Ribera"
        },
        {
            "id": 9327,
            "lat": 47.4038742,
            "lng": 7.7805301,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9334,
            "lat": 47.3744533,
            "lng": 8.4832794,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9335,
            "lat": 47.3740622,
            "lng": 8.4821144,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9336,
            "lat": 47.3774233,
            "lng": 8.4835081,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notwasserbrunnen"
        },
        {
            "id": 9337,
            "lat": 47.3782888,
            "lng": 8.482983,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen \"Kniende weibliche Figur\""
        },
        {
            "id": 9338,
            "lat": 47.3768817,
            "lng": 8.4866943,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9339,
            "lat": 47.3753072,
            "lng": 8.4841994,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9340,
            "lat": 47.3843129,
            "lng": 8.4879842,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen mit liegender Gestalt"
        },
        {
            "id": 9341,
            "lat": 48.8526052,
            "lng": 2.3472283,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9342,
            "lat": 48.8506568,
            "lng": 2.3329994,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9343,
            "lat": 48.853661,
            "lng": 2.3438529,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9344,
            "lat": 48.8223685,
            "lng": 2.3377767,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9345,
            "lat": 46.2924572,
            "lng": 7.3902181,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9346,
            "lat": 40.3212554,
            "lng": 9.3255523,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9347,
            "lat": 40.3212874,
            "lng": 9.3252596,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9348,
            "lat": 40.323738,
            "lng": 9.3309357,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontanella di Piazza Italia"
        },
        {
            "id": 9349,
            "lat": 40.3227087,
            "lng": 9.3350274,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontanella di Via Roma"
        },
        {
            "id": 9350,
            "lat": 40.3282282,
            "lng": 9.3404585,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontanella della Solitudine"
        },
        {
            "id": 9351,
            "lat": 40.3200654,
            "lng": 9.3293097,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontanella di Via delle Grazie"
        },
        {
            "id": 9352,
            "lat": 40.3179763,
            "lng": 9.3256058,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fonte di Istiritta"
        },
        {
            "id": 9353,
            "lat": 40.320976,
            "lng": 9.3347708,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontanella di Piazza Italia"
        },
        {
            "id": 9354,
            "lat": 48.842247,
            "lng": 2.3860975,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 50699,
            "lat": -14.547486,
            "lng": 35.1889412,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28378,
            "lat": 38.5339001,
            "lng": -0.1550687,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2847,
            "lat": 52.8311094,
            "lng": -4.5245235,
            "type": "poi",
            "category": "campsite",
            "title": "Tyn-y-Mur"
        },
        {
            "id": 9356,
            "lat": 48.8399294,
            "lng": 2.404597,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9357,
            "lat": 48.8448378,
            "lng": 2.4051177,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9358,
            "lat": 48.847452,
            "lng": 2.4048594,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9359,
            "lat": 48.8473395,
            "lng": 2.4060719,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9360,
            "lat": 48.8351451,
            "lng": 2.4339711,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9361,
            "lat": 48.8356789,
            "lng": 2.430625,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9362,
            "lat": 48.8375477,
            "lng": 2.4255552,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9363,
            "lat": 48.8346793,
            "lng": 2.4193483,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9364,
            "lat": 48.8684023,
            "lng": 2.3502078,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace- Saint-Spire"
        },
        {
            "id": 9365,
            "lat": 48.8662853,
            "lng": 2.3197532,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9366,
            "lat": 48.867991,
            "lng": 2.3372848,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9368,
            "lat": 42.636354,
            "lng": -1.3056317,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9369,
            "lat": 46.1312843,
            "lng": 7.6287918,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9370,
            "lat": 46.1336758,
            "lng": 7.6271727,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9371,
            "lat": 46.134586,
            "lng": 7.6265583,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9372,
            "lat": 40.3130378,
            "lng": 9.3242015,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fonte di Via Montale"
        },
        {
            "id": 9373,
            "lat": 40.3147802,
            "lng": 9.3238852,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontanella di Piazza Caduti del Lavoro"
        },
        {
            "id": 9374,
            "lat": 45.8601578,
            "lng": 8.7929421,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9375,
            "lat": 48.5857247,
            "lng": 8.2060532,
            "type": "poi",
            "category": "drinking_water",
            "title": "Wolfsbrunnen"
        },
        {
            "id": 9376,
            "lat": 40.4595389,
            "lng": -3.6033388,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9377,
            "lat": 40.4646903,
            "lng": -3.6044438,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9378,
            "lat": 40.4622301,
            "lng": -3.6068285,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9379,
            "lat": 47.3573326,
            "lng": 8.5681049,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen \"Kleiner Bär auf Sockel\""
        },
        {
            "id": 9380,
            "lat": 47.3502789,
            "lng": 8.5675916,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 37612,
            "lat": -13,
            "lng": 131.130004,
            "type": "poi",
            "category": "caravan_site",
            "title": "Coomalie Creek Caravan Park"
        },
        {
            "id": 28000,
            "lat": 43.1165802,
            "lng": 6.3537848,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27642,
            "lat": 49.5167902,
            "lng": 8.6122686,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50700,
            "lat": -14.5475043,
            "lng": 35.1879451,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27644,
            "lat": 49.517652,
            "lng": 8.6132939,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9382,
            "lat": 47.3701727,
            "lng": 8.5119133,
            "type": "poi",
            "category": "drinking_water",
            "title": "Notwasserbrunnen"
        },
        {
            "id": 9383,
            "lat": 47.4567641,
            "lng": 8.7748077,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9384,
            "lat": 46.1853947,
            "lng": 6.9994718,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9385,
            "lat": 50.1537474,
            "lng": 8.7272843,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9386,
            "lat": 45.0240942,
            "lng": 7.5137179,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9387,
            "lat": 40.056181,
            "lng": 0.0673966,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9388,
            "lat": 40.0411091,
            "lng": 0.0577503,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9389,
            "lat": 40.0350958,
            "lng": 0.0490148,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9390,
            "lat": 40.0322525,
            "lng": 0.0465478,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9391,
            "lat": 38.7358538,
            "lng": -9.1649253,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9392,
            "lat": 43.2347448,
            "lng": 3.0586586,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9393,
            "lat": 45.217024,
            "lng": 9.0775497,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9394,
            "lat": 45.2280137,
            "lng": 9.066199,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9395,
            "lat": 46.6143115,
            "lng": 7.1648906,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9396,
            "lat": 42.1345536,
            "lng": -2.1100377,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9397,
            "lat": 44.9743993,
            "lng": 5.6188845,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9398,
            "lat": 44.9740311,
            "lng": 5.6198962,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9399,
            "lat": 47.9977351,
            "lng": 7.9172507,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9400,
            "lat": 46.1020605,
            "lng": 9.5914745,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9401,
            "lat": 46.1284535,
            "lng": 9.5708754,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9402,
            "lat": 45.8002336,
            "lng": 9.8852461,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9403,
            "lat": 45.2161005,
            "lng": 9.1694284,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9404,
            "lat": 45.1990085,
            "lng": 9.1643083,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9405,
            "lat": 45.1903784,
            "lng": 9.1512704,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9406,
            "lat": 47.710144,
            "lng": 8.9358287,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9407,
            "lat": 47.710497,
            "lng": 8.9360547,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9409,
            "lat": 48.884908,
            "lng": 2.2982604,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9410,
            "lat": 48.8815112,
            "lng": 2.2955182,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9411,
            "lat": 48.8639207,
            "lng": 2.2411821,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9412,
            "lat": 47.6619979,
            "lng": 8.861557,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9413,
            "lat": 45.0876791,
            "lng": 7.641124,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9414,
            "lat": 47.1715736,
            "lng": 9.1960301,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9415,
            "lat": 48.8410959,
            "lng": 2.3877746,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9416,
            "lat": 47.2724358,
            "lng": 8.2759489,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 28382,
            "lat": 38.5344967,
            "lng": -0.1542593,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30098,
            "lat": 54.8552972,
            "lng": 10.5220181,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50702,
            "lat": -14.5475682,
            "lng": 35.1881979,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9097,
            "lat": 47.1709358,
            "lng": 8.522517,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9418,
            "lat": 47.2730088,
            "lng": 8.2753648,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9419,
            "lat": 47.2678857,
            "lng": 8.2639819,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9420,
            "lat": 47.5099684,
            "lng": 8.1120991,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9421,
            "lat": 47.5036515,
            "lng": 8.1137451,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9422,
            "lat": 47.5539447,
            "lng": 8.1330323,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9424,
            "lat": 47.6938603,
            "lng": 9.2690672,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9425,
            "lat": 47.3757177,
            "lng": 8.5390385,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9426,
            "lat": 47.3858662,
            "lng": 8.5396436,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9427,
            "lat": 47.3894279,
            "lng": 8.538861,
            "type": "poi",
            "category": "drinking_water",
            "title": "Wasserköniginnen"
        },
        {
            "id": 9428,
            "lat": 44.0962542,
            "lng": 6.9858784,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9429,
            "lat": 43.4923964,
            "lng": -7.1988557,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9430,
            "lat": 43.4870851,
            "lng": -7.263077,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9432,
            "lat": 45.486708,
            "lng": 6.4265271,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9433,
            "lat": 48.8652473,
            "lng": 2.2754857,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine à l'Albien"
        },
        {
            "id": 9434,
            "lat": 46.6749219,
            "lng": 9.5510402,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9435,
            "lat": 48.8364073,
            "lng": 2.3595567,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9436,
            "lat": 48.8325568,
            "lng": 2.3113862,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9437,
            "lat": 48.8396268,
            "lng": 2.36174,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9438,
            "lat": 48.8552512,
            "lng": 2.3476157,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9439,
            "lat": 48.8553803,
            "lng": 2.3476867,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9440,
            "lat": 48.8554292,
            "lng": 2.3475646,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9441,
            "lat": 48.8552816,
            "lng": 2.3474675,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9442,
            "lat": 47.0484897,
            "lng": 6.2863692,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9443,
            "lat": 47.5042513,
            "lng": 9.4401227,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9444,
            "lat": 44.4252058,
            "lng": 8.7321687,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9445,
            "lat": 47.5404341,
            "lng": 7.7733751,
            "type": "poi",
            "category": "drinking_water",
            "title": "Wyssbrunne"
        },
        {
            "id": 9446,
            "lat": 43.8503974,
            "lng": 4.3365813,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9447,
            "lat": 43.5493593,
            "lng": 6.9795926,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9448,
            "lat": 43.5494589,
            "lng": 7.0066636,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9449,
            "lat": 43.5218969,
            "lng": 7.0393062,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9450,
            "lat": 43.5234066,
            "lng": 7.0426095,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 28385,
            "lat": 38.5350763,
            "lng": -0.1534127,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9452,
            "lat": 45.0072089,
            "lng": 7.6327059,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9453,
            "lat": 44.2436302,
            "lng": 3.7303198,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9454,
            "lat": 44.1318979,
            "lng": 3.9237907,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9455,
            "lat": 42.4207782,
            "lng": 2.7505228,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9456,
            "lat": 41.7391358,
            "lng": -1.0356099,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9457,
            "lat": 41.7179329,
            "lng": -1.0280425,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9458,
            "lat": 43.8686789,
            "lng": 4.405218,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9459,
            "lat": 43.8678512,
            "lng": 4.4036466,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9460,
            "lat": 49.6661883,
            "lng": 8.7488321,
            "type": "poi",
            "category": "drinking_water",
            "title": "Wasserhahn"
        },
        {
            "id": 9461,
            "lat": 49.666368,
            "lng": 8.7492932,
            "type": "poi",
            "category": "drinking_water",
            "title": "Wasserhahn"
        },
        {
            "id": 9463,
            "lat": 47.3697069,
            "lng": 8.5262477,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9464,
            "lat": 45.609528,
            "lng": 6.488207,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9465,
            "lat": 45.540606,
            "lng": 6.4948033,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9466,
            "lat": 45.5592775,
            "lng": 6.5217717,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9467,
            "lat": 45.5595092,
            "lng": 6.522308,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9468,
            "lat": 45.5589694,
            "lng": 6.5236552,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9469,
            "lat": 45.6236692,
            "lng": 6.6142694,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9470,
            "lat": 45.6902665,
            "lng": 6.559519,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9471,
            "lat": 45.6852946,
            "lng": 6.5445922,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9472,
            "lat": 45.6820402,
            "lng": 6.5448977,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9473,
            "lat": 48.8724882,
            "lng": 2.2964505,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9474,
            "lat": 48.8577975,
            "lng": 2.2776833,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9475,
            "lat": 48.8561596,
            "lng": 2.280332,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9476,
            "lat": 48.8587309,
            "lng": 2.2850498,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9477,
            "lat": 48.8503867,
            "lng": 2.2499063,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9478,
            "lat": 48.8473983,
            "lng": 2.2733178,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9479,
            "lat": 47.4844483,
            "lng": 7.8266068,
            "type": "poi",
            "category": "drinking_water",
            "title": "Kurt-Michel-Brunnen"
        },
        {
            "id": 9480,
            "lat": 44.2498131,
            "lng": 4.050015,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9481,
            "lat": 44.2696012,
            "lng": 4.0227603,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9482,
            "lat": 47.3742862,
            "lng": 8.484518,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9483,
            "lat": 48.8118685,
            "lng": 9.211677,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9484,
            "lat": 48.9016607,
            "lng": 8.695162,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9485,
            "lat": 48.9025038,
            "lng": 8.6950015,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9486,
            "lat": 48.8645689,
            "lng": 2.2748709,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9487,
            "lat": 47.5250309,
            "lng": 7.813206,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 28387,
            "lat": 38.5353047,
            "lng": -0.1526842,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 37617,
            "lat": -29.0097354,
            "lng": 145.7125871,
            "type": "poi",
            "category": "caravan_site",
            "title": "Bush Tucker Inn"
        },
        {
            "id": 27651,
            "lat": 52.9675647,
            "lng": 5.4204697,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9489,
            "lat": 45.5853083,
            "lng": 6.5090068,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9491,
            "lat": 48.4010437,
            "lng": 8.3232747,
            "type": "poi",
            "category": "drinking_water",
            "title": "Prozessbrunnen"
        },
        {
            "id": 9492,
            "lat": 49.6600288,
            "lng": 8.7450468,
            "type": "poi",
            "category": "drinking_water",
            "title": "Wasserhahn"
        },
        {
            "id": 9493,
            "lat": 45.6504964,
            "lng": 9.6528921,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9494,
            "lat": 40.0360124,
            "lng": 0.0366716,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9495,
            "lat": 48.8798361,
            "lng": 2.2946562,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9496,
            "lat": 48.8868265,
            "lng": 2.3174741,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9497,
            "lat": 48.8835986,
            "lng": 2.3135853,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine de la place Lévis"
        },
        {
            "id": 9498,
            "lat": 48.8832839,
            "lng": 2.3261502,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9499,
            "lat": 42.4446371,
            "lng": -2.4993855,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9500,
            "lat": 46.0570026,
            "lng": 9.4123847,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9501,
            "lat": 51.2613273,
            "lng": -2.1729562,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9502,
            "lat": 51.2627077,
            "lng": -2.17307,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9503,
            "lat": 43.2579761,
            "lng": -2.9192907,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9504,
            "lat": 45.2582563,
            "lng": 9.0275769,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9505,
            "lat": 48.9026539,
            "lng": 8.6966004,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9506,
            "lat": 48.9018033,
            "lng": 8.6967735,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9507,
            "lat": 45.6993506,
            "lng": 9.0780175,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9508,
            "lat": 45.6449258,
            "lng": 9.6550686,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9509,
            "lat": 46.5081909,
            "lng": 6.5446416,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9510,
            "lat": 48.4197641,
            "lng": 8.1582103,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9511,
            "lat": 45.2041982,
            "lng": 9.0920379,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9512,
            "lat": 45.1939793,
            "lng": 9.1275378,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9513,
            "lat": 45.2050025,
            "lng": 9.1004836,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9514,
            "lat": 47.3937648,
            "lng": 8.5931256,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9515,
            "lat": 47.4029502,
            "lng": 8.5625042,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9516,
            "lat": 47.3984914,
            "lng": 8.5736748,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9517,
            "lat": 47.3980079,
            "lng": 8.5736249,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9518,
            "lat": 43.6041743,
            "lng": 3.8719821,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9519,
            "lat": 45.8189668,
            "lng": 8.4122809,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fonte Paganetto"
        },
        {
            "id": 9520,
            "lat": 45.2629776,
            "lng": 9.0035927,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9521,
            "lat": 45.8118978,
            "lng": 9.1197283,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9522,
            "lat": 41.7891853,
            "lng": -2.5294014,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9523,
            "lat": 41.8089973,
            "lng": -2.5442918,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9524,
            "lat": 41.8060611,
            "lng": -2.5435262,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 50718,
            "lat": -14.5458592,
            "lng": 35.1894136,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 47837,
            "lat": 18.598888,
            "lng": -72.2569915,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 1795,
            "lat": 64.061436,
            "lng": 18.7069045,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 1797,
            "lat": 55.6602465,
            "lng": 25.199724,
            "type": "poi",
            "category": "campsite",
            "title": "Baltupis"
        },
        {
            "id": 1798,
            "lat": 55.6611567,
            "lng": 25.1943713,
            "type": "poi",
            "category": "campsite",
            "title": "Vaitlunkis"
        },
        {
            "id": 1799,
            "lat": 49.2727796,
            "lng": 11.4842464,
            "type": "poi",
            "category": "campsite",
            "title": "Pfadfinderzentrum Neumarkt i.d.OPf."
        },
        {
            "id": 1800,
            "lat": 61.0876741,
            "lng": 44.5854443,
            "type": "poi",
            "category": "campsite",
            "title": "Рассоха"
        },
        {
            "id": 1801,
            "lat": 61.141104,
            "lng": 44.5823008,
            "type": "poi",
            "category": "campsite",
            "title": "Кобылья яма"
        },
        {
            "id": 1802,
            "lat": 59.1711444,
            "lng": 36.0458562,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 30102,
            "lat": 36.0947152,
            "lng": 28.0859134,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9527,
            "lat": 47.3901277,
            "lng": 8.4816471,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9529,
            "lat": 44.4070476,
            "lng": 8.9604454,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9530,
            "lat": 45.660983,
            "lng": 9.677207,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9531,
            "lat": 48.8358929,
            "lng": 2.2933308,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9532,
            "lat": 48.841564,
            "lng": 2.2914435,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9533,
            "lat": 48.8320354,
            "lng": 2.3026258,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9534,
            "lat": 48.8488952,
            "lng": 2.2875621,
            "type": "poi",
            "category": "drinking_water",
            "title": "Petite Fontaine Wallace"
        },
        {
            "id": 9535,
            "lat": 48.8450063,
            "lng": 2.2934495,
            "type": "poi",
            "category": "drinking_water",
            "title": "Petite Fontaine Wallace"
        },
        {
            "id": 9536,
            "lat": 48.8428146,
            "lng": 2.3128644,
            "type": "poi",
            "category": "drinking_water",
            "title": "Petite Fontaine Wallace"
        },
        {
            "id": 9537,
            "lat": 42.9825036,
            "lng": 2.4463417,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9538,
            "lat": 42.9868513,
            "lng": 2.4526333,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9539,
            "lat": 42.9861438,
            "lng": 2.453385,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9540,
            "lat": 43.0195198,
            "lng": 2.3932986,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9541,
            "lat": 47.3865438,
            "lng": 8.5514487,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen mit drei Pinguinen"
        },
        {
            "id": 9542,
            "lat": 41.7991836,
            "lng": -2.538584,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9543,
            "lat": 41.8378219,
            "lng": -2.5919063,
            "type": "poi",
            "category": "drinking_water",
            "title": "Las Fuentecillas"
        },
        {
            "id": 9544,
            "lat": 41.8373566,
            "lng": -2.6022489,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9545,
            "lat": 41.8280416,
            "lng": -2.5889129,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9546,
            "lat": 41.8645772,
            "lng": -2.517253,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9547,
            "lat": 41.863294,
            "lng": -2.5484437,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 50719,
            "lat": -14.5459779,
            "lng": 35.1891551,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30103,
            "lat": 43.501818,
            "lng": 16.4237907,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50720,
            "lat": -14.5461,
            "lng": 35.1891076,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50721,
            "lat": -14.5461325,
            "lng": 35.1889289,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50741,
            "lat": -14.5488872,
            "lng": 35.1888929,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9550,
            "lat": 41.8727586,
            "lng": -2.5673464,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9551,
            "lat": 41.8709097,
            "lng": -2.5988941,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9552,
            "lat": 41.794136,
            "lng": -2.5229087,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9553,
            "lat": 50.3809363,
            "lng": 9.6989502,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9554,
            "lat": 47.3153072,
            "lng": -3.1884721,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9555,
            "lat": 47.4249139,
            "lng": 8.4673457,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9556,
            "lat": 48.8584946,
            "lng": 2.2687106,
            "type": "poi",
            "category": "drinking_water",
            "title": "Petite Fontaine Wallace"
        },
        {
            "id": 9557,
            "lat": 48.8590276,
            "lng": 2.2701439,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9558,
            "lat": 48.8582201,
            "lng": 2.2684874,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9559,
            "lat": 48.4485182,
            "lng": 8.9469733,
            "type": "poi",
            "category": "drinking_water",
            "title": "Erlenrainbrunnen"
        },
        {
            "id": 9560,
            "lat": 43.5768746,
            "lng": 1.4993653,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9561,
            "lat": 43.5788705,
            "lng": 1.5059855,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9562,
            "lat": 41.7784213,
            "lng": -2.4897785,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9563,
            "lat": 45.0355425,
            "lng": 7.5145692,
            "type": "poi",
            "category": "drinking_water",
            "title": "Baturet"
        },
        {
            "id": 9565,
            "lat": 45.0257454,
            "lng": 7.6722196,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9566,
            "lat": 45.0598047,
            "lng": 7.6977126,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9567,
            "lat": 43.0478391,
            "lng": 9.8427121,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9568,
            "lat": 48.862222,
            "lng": 2.2857842,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9569,
            "lat": 48.8627962,
            "lng": 2.2854972,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9570,
            "lat": 48.8620791,
            "lng": 2.2848191,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9571,
            "lat": 47.5329426,
            "lng": 8.2021397,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9572,
            "lat": 49.4305777,
            "lng": 8.6928339,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9573,
            "lat": 49.4497133,
            "lng": 8.715712,
            "type": "poi",
            "category": "drinking_water",
            "title": "Strangwasenbrunnen"
        },
        {
            "id": 9574,
            "lat": 41.7757454,
            "lng": -2.5015593,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9575,
            "lat": 43.5815478,
            "lng": 1.3877615,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9576,
            "lat": 43.8482698,
            "lng": 4.3618221,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9577,
            "lat": 40.9424889,
            "lng": -2.4779311,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9578,
            "lat": 43.6172723,
            "lng": 1.4795709,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9579,
            "lat": 45.1024769,
            "lng": 7.6730554,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9580,
            "lat": 45.1022398,
            "lng": 7.6861073,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9581,
            "lat": 45.0932594,
            "lng": 7.7180784,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9582,
            "lat": 48.1730343,
            "lng": 9.1488698,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9583,
            "lat": 44.8521584,
            "lng": -0.6150069,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 50746,
            "lat": -14.7334711,
            "lng": 35.1811871,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30107,
            "lat": 55.6764951,
            "lng": 13.0589564,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9585,
            "lat": 52.1991649,
            "lng": -1.6937665,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9586,
            "lat": 45.1777529,
            "lng": 5.6151509,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9587,
            "lat": 45.1769286,
            "lng": 5.6186083,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9589,
            "lat": 45.961273,
            "lng": 8.6144177,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9590,
            "lat": 47.1539957,
            "lng": 7.2680419,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9591,
            "lat": 50.8054968,
            "lng": 8.7522715,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9592,
            "lat": 50.8053082,
            "lng": 8.7526268,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9593,
            "lat": 50.805605,
            "lng": 8.7513136,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9594,
            "lat": 50.8060093,
            "lng": 8.749025,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9595,
            "lat": 50.8060956,
            "lng": 8.7482791,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9596,
            "lat": 50.8060336,
            "lng": 8.7476388,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9597,
            "lat": 50.8059314,
            "lng": 8.7471859,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9598,
            "lat": 50.8055991,
            "lng": 8.7465635,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9599,
            "lat": 50.8055654,
            "lng": 8.7480123,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9600,
            "lat": 50.8051223,
            "lng": 8.7475505,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9601,
            "lat": 50.8046657,
            "lng": 8.7483936,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9602,
            "lat": 50.8051339,
            "lng": 8.7481654,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9603,
            "lat": 50.8044376,
            "lng": 8.7487733,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9604,
            "lat": 50.8041695,
            "lng": 8.7493359,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9605,
            "lat": 50.8057678,
            "lng": 8.7482776,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9606,
            "lat": 50.8054935,
            "lng": 8.7487908,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9607,
            "lat": 50.805381,
            "lng": 8.7501643,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9608,
            "lat": 50.8041999,
            "lng": 8.7503076,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9609,
            "lat": 50.8038104,
            "lng": 8.7495883,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9610,
            "lat": 50.803586,
            "lng": 8.7501449,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9611,
            "lat": 50.8032555,
            "lng": 8.7499298,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9612,
            "lat": 50.803808,
            "lng": 8.7505998,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9613,
            "lat": 50.803758,
            "lng": 8.7507316,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9614,
            "lat": 50.8029505,
            "lng": 8.7502421,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9615,
            "lat": 50.8036747,
            "lng": 8.7508564,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9616,
            "lat": 50.8049667,
            "lng": 8.751162,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9617,
            "lat": 50.8046883,
            "lng": 8.752064,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9618,
            "lat": 50.8049208,
            "lng": 8.752565,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9619,
            "lat": 50.8052251,
            "lng": 8.7519036,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9620,
            "lat": 50.8046482,
            "lng": 8.7542638,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9621,
            "lat": 50.8055196,
            "lng": 8.7542008,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9622,
            "lat": 50.8057131,
            "lng": 8.7550614,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9623,
            "lat": 50.8058937,
            "lng": 8.7556516,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9624,
            "lat": 42.496123,
            "lng": -0.1204187,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9625,
            "lat": 42.4888673,
            "lng": -0.1133941,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9626,
            "lat": 42.4654059,
            "lng": -2.4574119,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9627,
            "lat": 45.9591217,
            "lng": 8.6114342,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9628,
            "lat": 45.9599704,
            "lng": 8.61808,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9629,
            "lat": 45.8980759,
            "lng": 9.4633964,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9630,
            "lat": 45.8986566,
            "lng": 9.4617554,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 28392,
            "lat": 38.53621,
            "lng": -0.1500792,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9631,
            "lat": 45.89749,
            "lng": 9.4649277,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9632,
            "lat": 47.562071,
            "lng": 8.1482789,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9633,
            "lat": 42.3405648,
            "lng": -3.7194043,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9635,
            "lat": 45.9253834,
            "lng": 9.3343572,
            "type": "poi",
            "category": "drinking_water",
            "title": "Rossana"
        },
        {
            "id": 9636,
            "lat": 48.449319,
            "lng": 8.4256693,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9637,
            "lat": 48.4492827,
            "lng": 8.4253503,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9639,
            "lat": 45.1775998,
            "lng": 9.1505575,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9640,
            "lat": 47.3217848,
            "lng": 8.6468098,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9641,
            "lat": 47.3033125,
            "lng": 8.591497,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9642,
            "lat": 47.9481144,
            "lng": 7.8675162,
            "type": "poi",
            "category": "drinking_water",
            "title": "Butzenhof-Brunnen"
        },
        {
            "id": 9643,
            "lat": 47.1533969,
            "lng": 7.2376428,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9644,
            "lat": 47.1495513,
            "lng": 7.2333403,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9645,
            "lat": 44.39923,
            "lng": 8.9606973,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9646,
            "lat": 44.4014934,
            "lng": 8.9640148,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9647,
            "lat": 42.4653098,
            "lng": -2.4536398,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9648,
            "lat": 42.3371607,
            "lng": -3.6972137,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9649,
            "lat": 42.3372284,
            "lng": -3.6990421,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9650,
            "lat": 47.2361213,
            "lng": 8.4754759,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9651,
            "lat": 47.2286172,
            "lng": 8.4895889,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9652,
            "lat": 47.2263432,
            "lng": 8.4937493,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9653,
            "lat": 45.5264774,
            "lng": 9.203226,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9654,
            "lat": 48.9149579,
            "lng": 8.4527664,
            "type": "poi",
            "category": "drinking_water",
            "title": "Graf-Rhena-Quelle"
        },
        {
            "id": 9655,
            "lat": 48.8587344,
            "lng": 2.2574119,
            "type": "poi",
            "category": "drinking_water",
            "title": "Petite Fontaine Wallace"
        },
        {
            "id": 9656,
            "lat": 43.35108,
            "lng": -3.0098175,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9657,
            "lat": 43.3508506,
            "lng": -3.0171767,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9658,
            "lat": 43.3512625,
            "lng": -3.0131341,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9659,
            "lat": 44.792474,
            "lng": -0.5979174,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9660,
            "lat": 51.8809727,
            "lng": 7.6806839,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9661,
            "lat": 42.3633243,
            "lng": -3.6770631,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9662,
            "lat": 46.9877834,
            "lng": 6.8935144,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9663,
            "lat": 46.3806854,
            "lng": 7.6285981,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9664,
            "lat": 45.4377611,
            "lng": 6.2070779,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9665,
            "lat": 45.4463392,
            "lng": 6.2251557,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9666,
            "lat": 45.4374882,
            "lng": 6.2196565,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9667,
            "lat": 45.4345626,
            "lng": 6.1956547,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9668,
            "lat": 41.7587535,
            "lng": -2.000958,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9669,
            "lat": 41.7899852,
            "lng": -1.991566,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente Redonda"
        },
        {
            "id": 9670,
            "lat": 41.7576359,
            "lng": -1.9769612,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de la Cascarrera"
        },
        {
            "id": 9671,
            "lat": 41.7600211,
            "lng": -1.9626098,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9672,
            "lat": 41.7655299,
            "lng": -1.9687705,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de la Virgen"
        },
        {
            "id": 23016,
            "lat": 41.8762653,
            "lng": 12.499945,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 23017,
            "lat": 41.8757912,
            "lng": 12.5012652,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 50748,
            "lat": -14.7341063,
            "lng": 35.1807226,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9674,
            "lat": 41.7859789,
            "lng": -1.9445141,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9675,
            "lat": 41.7806224,
            "lng": -1.9409557,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente del Cortado"
        },
        {
            "id": 9676,
            "lat": 41.7749342,
            "lng": -1.9700446,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente del Moral"
        },
        {
            "id": 9677,
            "lat": 41.7953884,
            "lng": -2.0012646,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente del Pozuelo"
        },
        {
            "id": 9678,
            "lat": 41.80315,
            "lng": -1.9981402,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de la Venta"
        },
        {
            "id": 9679,
            "lat": 41.7926141,
            "lng": -1.9482082,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente del Pocillo"
        },
        {
            "id": 9680,
            "lat": 41.7940095,
            "lng": -1.8943681,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9682,
            "lat": 45.881814,
            "lng": 6.3802262,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9683,
            "lat": 43.9971374,
            "lng": 3.9246906,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9684,
            "lat": 41.7528129,
            "lng": -2.4850759,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9685,
            "lat": 44.3955881,
            "lng": 8.9749871,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9686,
            "lat": 44.3926539,
            "lng": 8.964058,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9687,
            "lat": 44.3998934,
            "lng": 8.9495681,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9688,
            "lat": 45.4593923,
            "lng": 9.2165519,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9689,
            "lat": 48.811095,
            "lng": 9.1707895,
            "type": "poi",
            "category": "drinking_water",
            "title": "Högenbrünnele"
        },
        {
            "id": 9690,
            "lat": 47.3387767,
            "lng": 8.6680531,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9691,
            "lat": 45.8763101,
            "lng": 6.4524652,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9692,
            "lat": 43.0381416,
            "lng": -2.1513331,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9693,
            "lat": 40.0552857,
            "lng": 0.0625824,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9694,
            "lat": 40.0522655,
            "lng": 0.0754269,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9695,
            "lat": 41.5940881,
            "lng": -2.6395946,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9696,
            "lat": 41.6057825,
            "lng": -2.6390797,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9697,
            "lat": 41.6479679,
            "lng": -2.65852,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9698,
            "lat": 41.5749076,
            "lng": -2.6106576,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9699,
            "lat": 41.5767726,
            "lng": -2.6130706,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente del Agua Clara"
        },
        {
            "id": 9700,
            "lat": 41.5986587,
            "lng": -2.6053263,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente la Mora"
        },
        {
            "id": 9701,
            "lat": 41.5958053,
            "lng": -2.5938038,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de los Poyales"
        },
        {
            "id": 9702,
            "lat": 41.5975841,
            "lng": -2.5966974,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuentet del Pino"
        },
        {
            "id": 9703,
            "lat": 41.5739868,
            "lng": -2.5519184,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente del Cuévano"
        },
        {
            "id": 9704,
            "lat": 41.5882534,
            "lng": -2.5686772,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de Prado los Ojos"
        },
        {
            "id": 9705,
            "lat": 41.6476682,
            "lng": -2.6251346,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9706,
            "lat": 41.6298812,
            "lng": -2.5783967,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de Navarredonda"
        },
        {
            "id": 9707,
            "lat": 41.6615731,
            "lng": -2.6351532,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente la Viña"
        },
        {
            "id": 9708,
            "lat": 41.6785691,
            "lng": -2.5999199,
            "type": "poi",
            "category": "drinking_water",
            "title": "Manantial de Fuentecailla"
        },
        {
            "id": 9709,
            "lat": 41.6900199,
            "lng": -2.5869063,
            "type": "poi",
            "category": "drinking_water",
            "title": "Manantial de Fuenteazán"
        },
        {
            "id": 9710,
            "lat": 43.3093764,
            "lng": -1.8918947,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9711,
            "lat": 45.7223792,
            "lng": 9.6204192,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9712,
            "lat": 41.8097888,
            "lng": -2.5455758,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9713,
            "lat": 41.7637159,
            "lng": -2.4715049,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9714,
            "lat": 44.3940247,
            "lng": 8.9575957,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9715,
            "lat": 42.1201216,
            "lng": -2.1651344,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9716,
            "lat": 45.4857593,
            "lng": 9.2334547,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 27888,
            "lat": 41.9168692,
            "lng": 8.7366797,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28396,
            "lat": 38.5367638,
            "lng": -0.1469269,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50749,
            "lat": -14.7357452,
            "lng": 35.1785445,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9718,
            "lat": 47.9625219,
            "lng": 7.8556071,
            "type": "poi",
            "category": "drinking_water",
            "title": "Marxenbrunnen"
        },
        {
            "id": 9719,
            "lat": 45.1825808,
            "lng": 9.1567999,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9720,
            "lat": 48.1021359,
            "lng": 9.6441514,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9721,
            "lat": 44.2935678,
            "lng": 9.6753514,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9722,
            "lat": 44.0815019,
            "lng": 9.9144734,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9724,
            "lat": 41.7701248,
            "lng": -2.4708167,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9725,
            "lat": 45.0957941,
            "lng": 7.6743776,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9726,
            "lat": 45.0840211,
            "lng": 7.6689603,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9727,
            "lat": 48.8193145,
            "lng": 2.3014001,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9729,
            "lat": 45.0831645,
            "lng": 7.619088,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9730,
            "lat": 42.1259785,
            "lng": -2.1132008,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9731,
            "lat": 42.9056868,
            "lng": -2.0631532,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9732,
            "lat": 42.9059681,
            "lng": -2.0650879,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9733,
            "lat": 42.9091387,
            "lng": -2.0646923,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9734,
            "lat": 43.5570891,
            "lng": 1.5645602,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9735,
            "lat": 47.9639685,
            "lng": 7.8606073,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9736,
            "lat": 47.9066601,
            "lng": 7.8629968,
            "type": "poi",
            "category": "drinking_water",
            "title": "Alfons Sonner Brunnen"
        },
        {
            "id": 9737,
            "lat": 45.2028451,
            "lng": 9.1465886,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9738,
            "lat": 43.5937793,
            "lng": 7.096589,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9739,
            "lat": 41.6494988,
            "lng": -0.8953541,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9740,
            "lat": 43.5779645,
            "lng": 7.1204139,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9741,
            "lat": 48.8844757,
            "lng": 2.3382719,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9742,
            "lat": 48.8860106,
            "lng": 2.3414517,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9743,
            "lat": 45.0735237,
            "lng": 7.7150963,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9744,
            "lat": 43.594931,
            "lng": 7.0687872,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9745,
            "lat": 48.8453224,
            "lng": 2.1874142,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9746,
            "lat": 48.8450239,
            "lng": 2.1871234,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9747,
            "lat": 48.7551216,
            "lng": 2.2141782,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9748,
            "lat": 47.407199,
            "lng": 7.2896538,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9749,
            "lat": 48.0423209,
            "lng": 8.6003963,
            "type": "poi",
            "category": "drinking_water",
            "title": "Thuribrunnen"
        },
        {
            "id": 9750,
            "lat": 43.5944516,
            "lng": 7.0086,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9751,
            "lat": 45.642854,
            "lng": 8.0950217,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9752,
            "lat": 45.640658,
            "lng": 8.1139212,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9753,
            "lat": 45.6632981,
            "lng": 7.9987425,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9754,
            "lat": 47.6544411,
            "lng": 8.3077311,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 28395,
            "lat": 38.5365745,
            "lng": -0.1476077,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50750,
            "lat": -14.7360286,
            "lng": 35.1781308,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9756,
            "lat": 44.0739389,
            "lng": 9.7958285,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9758,
            "lat": 48.8397602,
            "lng": 2.356416,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9759,
            "lat": 48.8439963,
            "lng": 2.3550311,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Cuvier"
        },
        {
            "id": 9760,
            "lat": 48.8400716,
            "lng": 2.358193,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9761,
            "lat": 48.8403818,
            "lng": 2.3507009,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9762,
            "lat": 42.363084,
            "lng": -3.666828,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9763,
            "lat": 42.366945,
            "lng": -3.668039,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9764,
            "lat": 42.367371,
            "lng": -3.6662314,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9765,
            "lat": 42.3658702,
            "lng": -3.667236,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9766,
            "lat": 42.3665106,
            "lng": -3.6658186,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9767,
            "lat": 47.2267135,
            "lng": 8.5019936,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9768,
            "lat": 42.3374814,
            "lng": -3.7274054,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9769,
            "lat": 47.3264967,
            "lng": 9.289689,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9770,
            "lat": 47.3190595,
            "lng": 9.2767584,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9771,
            "lat": 47.3183222,
            "lng": 9.2784719,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9772,
            "lat": 47.3210406,
            "lng": 9.2810272,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9773,
            "lat": 47.321919,
            "lng": 9.2778129,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9774,
            "lat": 47.321292,
            "lng": 9.2775989,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9775,
            "lat": 47.322956,
            "lng": 9.2795447,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9776,
            "lat": 47.3238743,
            "lng": 9.29462,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9777,
            "lat": 47.3234757,
            "lng": 9.2742008,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9778,
            "lat": 39.760309,
            "lng": 2.7126844,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9779,
            "lat": 46.2407387,
            "lng": 9.1622768,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9780,
            "lat": 39.7647177,
            "lng": 2.7161216,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9781,
            "lat": 39.7649995,
            "lng": 2.7172934,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9782,
            "lat": 39.7640928,
            "lng": 2.7180404,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9783,
            "lat": 39.7646931,
            "lng": 2.719131,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9784,
            "lat": 39.7627395,
            "lng": 2.7161784,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9785,
            "lat": 52.1757026,
            "lng": -1.3704376,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9786,
            "lat": 45.0784383,
            "lng": 7.6678726,
            "type": "poi",
            "category": "drinking_water",
            "title": "Toret"
        },
        {
            "id": 9787,
            "lat": 47.7859934,
            "lng": 8.1509,
            "type": "poi",
            "category": "drinking_water",
            "title": "Pfaffenbrünnele"
        },
        {
            "id": 9788,
            "lat": 47.7554954,
            "lng": 8.1352886,
            "type": "poi",
            "category": "drinking_water",
            "title": "Schwandbrünnele"
        },
        {
            "id": 9789,
            "lat": 48.8777755,
            "lng": 2.4052173,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9790,
            "lat": 40.4287225,
            "lng": -3.7711333,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente de Los Pinos"
        },
        {
            "id": 9791,
            "lat": 39.7656371,
            "lng": 2.7190472,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 50751,
            "lat": -14.7362326,
            "lng": 35.1783806,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30113,
            "lat": 49.5567303,
            "lng": 12.0071526,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30114,
            "lat": 55.5710619,
            "lng": 37.3503226,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9793,
            "lat": 48.0106679,
            "lng": 7.9067707,
            "type": "poi",
            "category": "drinking_water",
            "title": "Husarenbrunnen"
        },
        {
            "id": 9794,
            "lat": 48.0190698,
            "lng": 7.916978,
            "type": "poi",
            "category": "drinking_water",
            "title": "Ochsenbrunnen"
        },
        {
            "id": 9795,
            "lat": 47.1354763,
            "lng": 7.2734025,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9796,
            "lat": 42.6714793,
            "lng": -1.8180494,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9797,
            "lat": 42.4515876,
            "lng": -0.0374366,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9798,
            "lat": 43.0080064,
            "lng": -1.3193049,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9799,
            "lat": 42.981004,
            "lng": -1.367632,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9801,
            "lat": 42.466702,
            "lng": -2.4538721,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9802,
            "lat": 42.3397635,
            "lng": -3.7033384,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9803,
            "lat": 41.829748,
            "lng": -2.4583293,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9804,
            "lat": 45.9601347,
            "lng": 8.6212532,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9805,
            "lat": 41.3924581,
            "lng": 2.1785265,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9806,
            "lat": 42.7483887,
            "lng": -1.7226838,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9807,
            "lat": 42.7100453,
            "lng": -1.7598659,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9808,
            "lat": 42.6814095,
            "lng": -1.7815989,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9809,
            "lat": 42.2663427,
            "lng": -4.406205,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9810,
            "lat": 42.362178,
            "lng": -4.8907928,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9811,
            "lat": 48.7102203,
            "lng": 8.1788654,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9812,
            "lat": 45.9582616,
            "lng": 8.6191576,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9813,
            "lat": 45.9579868,
            "lng": 8.6197171,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9814,
            "lat": 43.1870071,
            "lng": -2.4625266,
            "type": "poi",
            "category": "drinking_water",
            "title": "The fountain of Urkizu"
        },
        {
            "id": 9815,
            "lat": 49.6415215,
            "lng": 8.6522692,
            "type": "poi",
            "category": "drinking_water",
            "title": "Wasserbecken"
        },
        {
            "id": 9816,
            "lat": 47.0331229,
            "lng": 9.5497692,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9817,
            "lat": 48.7107659,
            "lng": 8.1720587,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9818,
            "lat": 42.6278618,
            "lng": -0.1100975,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9819,
            "lat": 43.0465112,
            "lng": -2.201796,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9820,
            "lat": 43.0464189,
            "lng": -2.1996896,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9821,
            "lat": 43.0464838,
            "lng": -2.1984366,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9822,
            "lat": 43.0477061,
            "lng": -2.195036,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9823,
            "lat": 43.0464669,
            "lng": -2.1972553,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9824,
            "lat": 45.9218698,
            "lng": 9.5122878,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9825,
            "lat": 45.9188229,
            "lng": 9.5248666,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9826,
            "lat": 45.9266783,
            "lng": 9.5269475,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontanella di Gianni"
        },
        {
            "id": 9827,
            "lat": 45.3406595,
            "lng": 5.8722304,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9828,
            "lat": 45.7104013,
            "lng": 9.3769283,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9829,
            "lat": 41.5668131,
            "lng": -2.7631453,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9830,
            "lat": 48.8374068,
            "lng": 2.3535191,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9831,
            "lat": 51.6135241,
            "lng": 0.1318572,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9832,
            "lat": 45.0906878,
            "lng": 7.5695447,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9833,
            "lat": 45.11501,
            "lng": 7.4142283,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 28402,
            "lat": 38.536959,
            "lng": -0.1440302,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9835,
            "lat": 44.4014793,
            "lng": 8.6693569,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9836,
            "lat": 47.216005,
            "lng": 8.4775762,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9837,
            "lat": 44.4196674,
            "lng": 8.9246874,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9838,
            "lat": 44.4204644,
            "lng": 8.925133,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9839,
            "lat": 45.0917174,
            "lng": 7.6570512,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9840,
            "lat": 49.5993655,
            "lng": 8.7260634,
            "type": "poi",
            "category": "drinking_water",
            "title": "Egerlandbrunnen"
        },
        {
            "id": 9841,
            "lat": 43.8389775,
            "lng": 7.4607411,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine de Sou Serre"
        },
        {
            "id": 9842,
            "lat": 47.1504332,
            "lng": 7.2395973,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9843,
            "lat": 43.121611,
            "lng": 6.1271767,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9844,
            "lat": 45.322383,
            "lng": 3.6951237,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9845,
            "lat": 47.8841725,
            "lng": 7.8391049,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9846,
            "lat": 50.1354311,
            "lng": 7.7251006,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9847,
            "lat": 47.8665587,
            "lng": 7.882887,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9849,
            "lat": 45.6957608,
            "lng": 9.7038845,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9850,
            "lat": 41.6726081,
            "lng": -2.6097845,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9851,
            "lat": 43.5418149,
            "lng": 1.5663644,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9852,
            "lat": 43.1835237,
            "lng": -2.4754592,
            "type": "poi",
            "category": "drinking_water",
            "title": "Abontzako iturria"
        },
        {
            "id": 9853,
            "lat": 43.182956,
            "lng": -2.4745499,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9854,
            "lat": 45.1327618,
            "lng": 7.6262424,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9855,
            "lat": 45.12893,
            "lng": 7.6384183,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9856,
            "lat": 45.134388,
            "lng": 7.6291242,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9857,
            "lat": 45.133718,
            "lng": 7.6295254,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9858,
            "lat": 45.0318378,
            "lng": 7.5197688,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9859,
            "lat": 54.1212534,
            "lng": -1.1918686,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9860,
            "lat": 43.2193788,
            "lng": -2.7344217,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9861,
            "lat": 42.9783835,
            "lng": -2.2895085,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9862,
            "lat": 40.4020732,
            "lng": -3.7585244,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9863,
            "lat": 43.1737344,
            "lng": -2.5804718,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9864,
            "lat": 47.145348,
            "lng": 8.522043,
            "type": "poi",
            "category": "drinking_water",
            "title": "Brunnen"
        },
        {
            "id": 9865,
            "lat": 45.0715254,
            "lng": 7.6340075,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9866,
            "lat": 45.0597617,
            "lng": 7.6317514,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9867,
            "lat": 45.0519877,
            "lng": 7.622442,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9868,
            "lat": 45.1835702,
            "lng": 5.7525439,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9869,
            "lat": 45.1801642,
            "lng": 5.7587402,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9870,
            "lat": 49.3727185,
            "lng": 7.4179702,
            "type": "poi",
            "category": "drinking_water",
            "title": "Vogelquelle"
        },
        {
            "id": 9871,
            "lat": 45.1088519,
            "lng": 7.6611861,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9872,
            "lat": 45.1179077,
            "lng": 7.6518268,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9873,
            "lat": 45.1182328,
            "lng": 7.6539504,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9874,
            "lat": 45.1187204,
            "lng": 7.6560614,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9875,
            "lat": 45.1288374,
            "lng": 7.6413178,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 53247,
            "lat": 46.645212,
            "lng": -60.9505148,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30116,
            "lat": 38.0676143,
            "lng": 20.7548784,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28414,
            "lat": 38.5366857,
            "lng": -0.1348023,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2127,
            "lat": 46.6755063,
            "lng": 15.6432728,
            "type": "poi",
            "category": "campsite",
            "title": "Dolina pod Brlogo"
        },
        {
            "id": 9877,
            "lat": 45.1269646,
            "lng": 7.6406335,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 3111,
            "lat": 45.546871,
            "lng": 0.9550344,
            "type": "poi",
            "category": "campsite",
            "title": "Vive la Vie"
        },
        {
            "id": 9878,
            "lat": 45.1207255,
            "lng": 7.6327734,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9879,
            "lat": 45.1303447,
            "lng": 7.6301518,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9880,
            "lat": 47.5686406,
            "lng": 8.1966436,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9881,
            "lat": 47.5681905,
            "lng": 8.1833862,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9883,
            "lat": 50.8047675,
            "lng": 8.7549435,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9884,
            "lat": 50.8044791,
            "lng": 8.7560908,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9885,
            "lat": 50.8050979,
            "lng": 8.7544002,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9886,
            "lat": 50.8053662,
            "lng": 8.7553993,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9887,
            "lat": 50.8051552,
            "lng": 8.755477,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9888,
            "lat": 50.8049795,
            "lng": 8.7558338,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9889,
            "lat": 50.8051445,
            "lng": 8.7557556,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9890,
            "lat": 50.8055642,
            "lng": 8.7558345,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9891,
            "lat": 50.8041274,
            "lng": 8.7563528,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9892,
            "lat": 50.8047267,
            "lng": 8.7568746,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9893,
            "lat": 50.8054669,
            "lng": 8.7563109,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9894,
            "lat": 43.2199598,
            "lng": -2.7391867,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9895,
            "lat": 43.2212252,
            "lng": -2.7363978,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9896,
            "lat": 43.1307013,
            "lng": -2.5360051,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9897,
            "lat": 44.1602077,
            "lng": 9.6634726,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9898,
            "lat": 47.4823534,
            "lng": 8.2272799,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9899,
            "lat": 45.664219,
            "lng": 8.0626687,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9900,
            "lat": 45.7575722,
            "lng": 7.0365057,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9901,
            "lat": 40.7296082,
            "lng": -3.92003,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9902,
            "lat": 43.9796256,
            "lng": 4.0167913,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9903,
            "lat": 43.9217495,
            "lng": 3.7247579,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9904,
            "lat": 50.7461,
            "lng": 5.6406071,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9905,
            "lat": 42.6060327,
            "lng": -6.8094206,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9906,
            "lat": 49.0907932,
            "lng": 7.8981202,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9907,
            "lat": 45.1855231,
            "lng": 5.7516131,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9908,
            "lat": 46.672946,
            "lng": 9.687351,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9909,
            "lat": 43.1833605,
            "lng": -2.478193,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9910,
            "lat": 43.3064978,
            "lng": -1.9781623,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9912,
            "lat": 48.8579781,
            "lng": 8.2022507,
            "type": "poi",
            "category": "drinking_water",
            "title": "Alexiusbrunnen"
        },
        {
            "id": 9913,
            "lat": 47.3948751,
            "lng": 8.5234135,
            "type": "poi",
            "category": "drinking_water",
            "title": "Rationierungsbrunnen"
        },
        {
            "id": 18841,
            "lat": 54.75382,
            "lng": 31.8151848,
            "type": "poi",
            "category": "caravan_site",
            "title": "Телеши"
        },
        {
            "id": 28585,
            "lat": 47.4709928,
            "lng": -2.4663802,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9915,
            "lat": 46.0235296,
            "lng": 8.6730182,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9916,
            "lat": 46.0186389,
            "lng": 8.6731551,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9917,
            "lat": 47.2306038,
            "lng": 8.4963948,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9918,
            "lat": 45.6909578,
            "lng": 6.0795409,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9919,
            "lat": 45.6842608,
            "lng": 6.1170484,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9920,
            "lat": 40.4124146,
            "lng": -3.691375,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9921,
            "lat": 42.3358495,
            "lng": -3.6821139,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9922,
            "lat": 43.6116546,
            "lng": 1.3399428,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9923,
            "lat": 45.0757385,
            "lng": 7.6381124,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9924,
            "lat": 45.9565153,
            "lng": 8.6174766,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9925,
            "lat": 45.9569307,
            "lng": 8.6178842,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9926,
            "lat": 45.9580473,
            "lng": 8.6198064,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9927,
            "lat": 48.374312,
            "lng": 9.9658171,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9928,
            "lat": 45.9773595,
            "lng": 9.3148359,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9929,
            "lat": 43.2970777,
            "lng": -2.2582612,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9930,
            "lat": 43.2988113,
            "lng": -2.2547669,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9931,
            "lat": 48.5584215,
            "lng": 2.5480062,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9932,
            "lat": 43.72107,
            "lng": 6.9777534,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9933,
            "lat": 45.0757645,
            "lng": 7.3966793,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9934,
            "lat": 45.0782503,
            "lng": 7.3980674,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9935,
            "lat": 45.0788428,
            "lng": 7.396948,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9936,
            "lat": 43.7256213,
            "lng": 5.5496753,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9937,
            "lat": 40.3112544,
            "lng": 0.1226381,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9938,
            "lat": 42.8231704,
            "lng": -1.64919,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9939,
            "lat": 43.6260577,
            "lng": 7.1004084,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9940,
            "lat": 47.5644915,
            "lng": 8.1274969,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9941,
            "lat": 47.5649414,
            "lng": 8.1283931,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9942,
            "lat": 47.5443612,
            "lng": 8.1713114,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9944,
            "lat": 51.4853549,
            "lng": -0.1342783,
            "type": "poi",
            "category": "drinking_water",
            "title": "Pimlico Gardens, Grosvenor Road"
        },
        {
            "id": 9945,
            "lat": 45.1372987,
            "lng": 7.7715769,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9946,
            "lat": 36.3846467,
            "lng": -6.1311432,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9947,
            "lat": 36.3847398,
            "lng": -6.1289814,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9948,
            "lat": 42.3416433,
            "lng": -3.7020521,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9949,
            "lat": 43.3114156,
            "lng": -1.9022785,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9950,
            "lat": 45.0786598,
            "lng": 7.6614429,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9951,
            "lat": 39.9861228,
            "lng": -0.0569468,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9952,
            "lat": 43.3778439,
            "lng": -3.7061367,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fuente Seca"
        },
        {
            "id": 9953,
            "lat": 47.2096481,
            "lng": 8.7039913,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 28415,
            "lat": 38.5366611,
            "lng": -0.1346782,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27668,
            "lat": 52.8847939,
            "lng": 5.4059892,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3112,
            "lat": 45.8230856,
            "lng": 1.4916412,
            "type": "poi",
            "category": "campsite",
            "title": "Municipal de Beaufort"
        },
        {
            "id": 9954,
            "lat": 47.2152874,
            "lng": 8.698231,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9955,
            "lat": 47.2090942,
            "lng": 8.7052616,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9956,
            "lat": 47.1993852,
            "lng": 8.6990303,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9958,
            "lat": 50.3846411,
            "lng": 7.1436399,
            "type": "poi",
            "category": "drinking_water",
            "title": "Sauerbrunnen Heilquelle"
        },
        {
            "id": 9959,
            "lat": 48.9080437,
            "lng": -1.1057072,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9960,
            "lat": 46.183283,
            "lng": 6.7030414,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9961,
            "lat": 47.3971301,
            "lng": 8.6195683,
            "type": "poi",
            "category": "drinking_water",
            "title": "Schulhaus Dorf"
        },
        {
            "id": 9962,
            "lat": 47.3983425,
            "lng": 8.6197797,
            "type": "poi",
            "category": "drinking_water",
            "title": "Lindenplatz"
        },
        {
            "id": 9963,
            "lat": 43.100045,
            "lng": -2.0972945,
            "type": "poi",
            "category": "drinking_water",
            "title": "Bulebarreko iturria"
        },
        {
            "id": 9964,
            "lat": 45.0850665,
            "lng": 7.6434345,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9965,
            "lat": 44.3288188,
            "lng": 8.3355754,
            "type": "poi",
            "category": "drinking_water",
            "title": "Acqua dei Signori"
        },
        {
            "id": 9966,
            "lat": 43.6062105,
            "lng": 1.4205989,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9967,
            "lat": 43.6119067,
            "lng": 1.4093501,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9968,
            "lat": 45.0750771,
            "lng": 7.7264084,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9969,
            "lat": 45.0765508,
            "lng": 7.7804431,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9970,
            "lat": 50.4804973,
            "lng": 8.0767571,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9971,
            "lat": 47.2081835,
            "lng": 8.7076662,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9972,
            "lat": 50.6663857,
            "lng": 7.1676184,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9973,
            "lat": 50.6665382,
            "lng": 7.1680803,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9974,
            "lat": 42.8210543,
            "lng": -1.6500612,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9976,
            "lat": 45.0781574,
            "lng": 7.771204,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9977,
            "lat": 47.5445132,
            "lng": 7.80597,
            "type": "poi",
            "category": "drinking_water",
            "title": "Steppberg Brünnli"
        },
        {
            "id": 9978,
            "lat": 47.2148775,
            "lng": 8.687961,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9979,
            "lat": 47.3928962,
            "lng": 8.6471064,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9980,
            "lat": 43.1003714,
            "lng": -2.0982171,
            "type": "poi",
            "category": "drinking_water",
            "title": "Plazako iturria"
        },
        {
            "id": 9981,
            "lat": 43.186134,
            "lng": -2.4688714,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9982,
            "lat": 45.8612401,
            "lng": 9.9910627,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9983,
            "lat": 45.8775602,
            "lng": 9.9774798,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9984,
            "lat": 45.8679438,
            "lng": 9.9927315,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9985,
            "lat": 48.8795193,
            "lng": 2.3372522,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9986,
            "lat": 48.8860003,
            "lng": 2.3379474,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9987,
            "lat": 48.8870787,
            "lng": 2.3394572,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 23061,
            "lat": 46.7498177,
            "lng": 11.9833303,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 23062,
            "lat": 46.7511781,
            "lng": 11.9828453,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 23063,
            "lat": 46.716085,
            "lng": 10.3351163,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 2570,
            "lat": 52.088145,
            "lng": 5.7779883,
            "type": "poi",
            "category": "campsite",
            "title": "EuroParcs De Zanding"
        },
        {
            "id": 2571,
            "lat": 43.923333,
            "lng": 8.109167,
            "type": "poi",
            "category": "campsite",
            "title": "Lino"
        },
        {
            "id": 2572,
            "lat": 44.224722,
            "lng": 9.551389,
            "type": "poi",
            "category": "campsite",
            "title": "Valdeiva"
        },
        {
            "id": 2573,
            "lat": 44.0444174,
            "lng": 8.1137069,
            "type": "poi",
            "category": "campsite",
            "title": "C'era una Volta"
        },
        {
            "id": 2574,
            "lat": 42.729722,
            "lng": 9.3419439,
            "type": "poi",
            "category": "campsite",
            "title": "A Stella"
        },
        {
            "id": 2575,
            "lat": 41.531389,
            "lng": 9.165278,
            "type": "poi",
            "category": "campsite",
            "title": "U Moru"
        },
        {
            "id": 2848,
            "lat": 51.875985,
            "lng": 5.9890121,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Waalstrand"
        },
        {
            "id": 9098,
            "lat": 49.7100818,
            "lng": 8.7602373,
            "type": "poi",
            "category": "drinking_water",
            "title": "Wasserhahn"
        },
        {
            "id": 9989,
            "lat": 48.8849654,
            "lng": 2.3524798,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9990,
            "lat": 48.8994594,
            "lng": 2.345631,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9991,
            "lat": 48.8925191,
            "lng": 2.3614608,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9992,
            "lat": 45.3571891,
            "lng": 6.099665,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9993,
            "lat": 45.3436565,
            "lng": 6.131917,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9994,
            "lat": 45.336049,
            "lng": 6.1232242,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9995,
            "lat": 45.3560049,
            "lng": 9.654028,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 9996,
            "lat": 48.8551241,
            "lng": 2.3559623,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9998,
            "lat": 48.8774814,
            "lng": 2.3271935,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 9999,
            "lat": 42.8551516,
            "lng": -2.6634814,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 10000,
            "lat": 41.4863719,
            "lng": 2.3488014,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 10001,
            "lat": 48.8899303,
            "lng": 2.2446949,
            "type": "poi",
            "category": "drinking_water",
            "title": "Fontaine Wallace"
        },
        {
            "id": 10002,
            "lat": 48.9401779,
            "lng": 2.4993729,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 10003,
            "lat": 47.4867106,
            "lng": 8.20698,
            "type": "poi",
            "category": "drinking_water",
            "title": "Belartbrunnen"
        },
        {
            "id": 50756,
            "lat": 41.1462559,
            "lng": -95.9740664,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27669,
            "lat": 51.3293035,
            "lng": 1.4180556,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30117,
            "lat": 59.4592527,
            "lng": 18.1010319,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2576,
            "lat": 41.5385285,
            "lng": -8.4219647,
            "type": "poi",
            "category": "campsite",
            "title": "Parque de Campismo e Caravanismo Municipal de Braga"
        },
        {
            "id": 2577,
            "lat": 39.9150028,
            "lng": -8.7830513,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2578,
            "lat": 40.8225609,
            "lng": -7.6958261,
            "type": "poi",
            "category": "campsite",
            "title": "Quinta Chave Grande"
        },
        {
            "id": 2579,
            "lat": 38.1839011,
            "lng": -8.1035355,
            "type": "poi",
            "category": "campsite",
            "title": "Markadia"
        },
        {
            "id": 2580,
            "lat": 41.1792425,
            "lng": 9.393186,
            "type": "poi",
            "category": "campsite",
            "title": "Saraceno"
        },
        {
            "id": 2581,
            "lat": 40.578611,
            "lng": 9.773056,
            "type": "poi",
            "category": "campsite",
            "title": "Selema Camping"
        },
        {
            "id": 2582,
            "lat": 47.3066078,
            "lng": 9.1942802,
            "type": "poi",
            "category": "campsite",
            "title": "Bächli"
        },
        {
            "id": 2583,
            "lat": 46.4707048,
            "lng": 8.816993,
            "type": "poi",
            "category": "campsite",
            "title": "Gottardo"
        },
        {
            "id": 2584,
            "lat": 47.4916551,
            "lng": 9.5652934,
            "type": "poi",
            "category": "campsite",
            "title": "Idyll"
        },
        {
            "id": 2585,
            "lat": 46.3040798,
            "lng": 7.4806256,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Moubra"
        },
        {
            "id": 2586,
            "lat": 46.5908494,
            "lng": 7.9117326,
            "type": "poi",
            "category": "campsite",
            "title": "Schützenbach"
        },
        {
            "id": 2587,
            "lat": 42.3730906,
            "lng": 1.3578384,
            "type": "poi",
            "category": "campsite",
            "title": "Buchaca"
        },
        {
            "id": 2588,
            "lat": 37.1410145,
            "lng": -1.8593655,
            "type": "poi",
            "category": "campsite",
            "title": "El Quinto"
        },
        {
            "id": 2589,
            "lat": 37.1845228,
            "lng": -1.9237292,
            "type": "poi",
            "category": "campsite",
            "title": "Los Gallardos"
        },
        {
            "id": 2590,
            "lat": 37.1599465,
            "lng": -3.4537551,
            "type": "poi",
            "category": "campsite",
            "title": "Las Lomas"
        },
        {
            "id": 2591,
            "lat": 42.373056,
            "lng": 2.913056,
            "type": "poi",
            "category": "campsite",
            "title": "Camping L’Albera"
        },
        {
            "id": 2592,
            "lat": 39.7197732,
            "lng": -0.1928002,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Malvarrosa de Corinto"
        },
        {
            "id": 2593,
            "lat": 43.3483377,
            "lng": -8.3365953,
            "type": "poi",
            "category": "campsite",
            "title": "Los Manzanos"
        },
        {
            "id": 2594,
            "lat": 42.434722,
            "lng": -0.135,
            "type": "poi",
            "category": "campsite",
            "title": "Montanesa"
        },
        {
            "id": 2595,
            "lat": 36.587488,
            "lng": -6.2407701,
            "type": "poi",
            "category": "campsite",
            "title": "Dunas de San Anton"
        },
        {
            "id": 2596,
            "lat": 43.3097905,
            "lng": -8.2443221,
            "type": "poi",
            "category": "campsite",
            "title": "Santa Marta"
        },
        {
            "id": 2597,
            "lat": 36.2520811,
            "lng": -5.9384584,
            "type": "poi",
            "category": "campsite",
            "title": "Vejer"
        },
        {
            "id": 2598,
            "lat": 40.4931603,
            "lng": 0.4842663,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Vinaròs"
        },
        {
            "id": 2599,
            "lat": 54.129745,
            "lng": -2.0792407,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2600,
            "lat": 54.0379321,
            "lng": -1.9303246,
            "type": "poi",
            "category": "campsite",
            "title": "Mason's Campsite"
        },
        {
            "id": 2601,
            "lat": 54.0124431,
            "lng": -1.7747234,
            "type": "poi",
            "category": "campsite",
            "title": "Breaks Fold Farm Campsite"
        },
        {
            "id": 2602,
            "lat": 52.6115265,
            "lng": -1.3361429,
            "type": "poi",
            "category": "campsite",
            "title": "Fox Covert Scout Camp"
        },
        {
            "id": 2603,
            "lat": 51.2162329,
            "lng": 1.0585027,
            "type": "poi",
            "category": "campsite",
            "title": "Canterbury Reach Lodge Retreat"
        },
        {
            "id": 2604,
            "lat": 51.3871568,
            "lng": 5.6676795,
            "type": "poi",
            "category": "campsite",
            "title": "Camping, De Vaarselhof"
        },
        {
            "id": 2605,
            "lat": 53.0839542,
            "lng": 6.6393911,
            "type": "poi",
            "category": "campsite",
            "title": "Veenmeer"
        },
        {
            "id": 2606,
            "lat": 50.7029128,
            "lng": -2.1812367,
            "type": "poi",
            "category": "campsite",
            "title": "Scout Adventures Buddens"
        },
        {
            "id": 2607,
            "lat": 54.1561518,
            "lng": -1.8531278,
            "type": "poi",
            "category": "campsite",
            "title": "Studfold Farm Caravan and Camping Park"
        },
        {
            "id": 2608,
            "lat": 51.1912572,
            "lng": -3.6157132,
            "type": "poi",
            "category": "campsite",
            "title": "Pool Bridge"
        },
        {
            "id": 2609,
            "lat": 52.9354621,
            "lng": 1.2349271,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2610,
            "lat": 53.4428864,
            "lng": -2.3504834,
            "type": "poi",
            "category": "campsite",
            "title": "5th Urmston (Aquilifer) Scout Camp Site"
        },
        {
            "id": 2611,
            "lat": 54.3254245,
            "lng": -0.6896013,
            "type": "poi",
            "category": "campsite",
            "title": "Marfit Head Farm"
        },
        {
            "id": 2612,
            "lat": 53.403463,
            "lng": 8.5971319,
            "type": "poi",
            "category": "campsite",
            "title": "KjG Jugendzeltplatz Langendammsmoor"
        },
        {
            "id": 2613,
            "lat": 51.9435719,
            "lng": -3.0374425,
            "type": "poi",
            "category": "campsite",
            "title": "Court Farm"
        },
        {
            "id": 2614,
            "lat": 49.0962616,
            "lng": 5.4719377,
            "type": "poi",
            "category": "campsite",
            "title": "Les Epichées"
        },
        {
            "id": 2615,
            "lat": 51.4692506,
            "lng": 4.8796122,
            "type": "poi",
            "category": "campsite",
            "title": "Ponderosa"
        },
        {
            "id": 2616,
            "lat": 51.4527207,
            "lng": 4.9170277,
            "type": "poi",
            "category": "campsite",
            "title": "De Paddock"
        },
        {
            "id": 2617,
            "lat": 51.4291854,
            "lng": 4.9575251,
            "type": "poi",
            "category": "campsite",
            "title": "De Kievit"
        },
        {
            "id": 2618,
            "lat": 51.3482887,
            "lng": 5.5209639,
            "type": "poi",
            "category": "campsite",
            "title": "Natuurkampeerterrein Het Leenderbos"
        },
        {
            "id": 2619,
            "lat": 50.3367285,
            "lng": -4.8774923,
            "type": "poi",
            "category": "campsite",
            "title": "Court Farm"
        },
        {
            "id": 2620,
            "lat": 45.1449867,
            "lng": 5.5159651,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Les Eymes"
        },
        {
            "id": 2621,
            "lat": 51.7832418,
            "lng": -0.6016203,
            "type": "poi",
            "category": "campsite",
            "title": "Norcott Campsite - Camping In The Orchard"
        },
        {
            "id": 2622,
            "lat": 47.2211375,
            "lng": 8.7922483,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Insel Lützelau"
        },
        {
            "id": 2623,
            "lat": 50.5242366,
            "lng": 9.8652223,
            "type": "poi",
            "category": "campsite",
            "title": "Steinwand"
        },
        {
            "id": 2624,
            "lat": 48.996268,
            "lng": 3.0420896,
            "type": "poi",
            "category": "campsite",
            "title": "Espace nature Au creux du chêne"
        },
        {
            "id": 2625,
            "lat": 46.2985423,
            "lng": 1.8240212,
            "type": "poi",
            "category": "campsite",
            "title": "L'Age"
        },
        {
            "id": 2626,
            "lat": 51.6965502,
            "lng": -3.7641848,
            "type": "poi",
            "category": "campsite",
            "title": "Glyn Y Mul Farm"
        },
        {
            "id": 2627,
            "lat": 50.6336513,
            "lng": -2.5178572,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2628,
            "lat": 50.089,
            "lng": -5.3173289,
            "type": "poi",
            "category": "campsite",
            "title": "Mill Lane Camp Site"
        },
        {
            "id": 2629,
            "lat": 53.2848382,
            "lng": 9.6847351,
            "type": "poi",
            "category": "campsite",
            "title": "Campingplatz Tostedt"
        },
        {
            "id": 2630,
            "lat": 53.287842,
            "lng": 6.0876506,
            "type": "poi",
            "category": "campsite",
            "title": "de Greidpôlle"
        },
        {
            "id": 2631,
            "lat": 47.9414118,
            "lng": -4.0248701,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Keromen"
        },
        {
            "id": 2632,
            "lat": 45.8435303,
            "lng": 2.7893539,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2633,
            "lat": 43.9530898,
            "lng": 3.6825643,
            "type": "poi",
            "category": "campsite",
            "title": "Isis en Cévennes"
        },
        {
            "id": 2634,
            "lat": 50.22335,
            "lng": 7.58321,
            "type": "poi",
            "category": "campsite",
            "title": "Jugendzeltplatz Boppard"
        },
        {
            "id": 2635,
            "lat": 51.2269346,
            "lng": 1.0923281,
            "type": "poi",
            "category": "campsite",
            "title": "Sunnyside Farm"
        },
        {
            "id": 2636,
            "lat": 54.2821138,
            "lng": -4.5928806,
            "type": "poi",
            "category": "campsite",
            "title": "Glen Wyllin"
        },
        {
            "id": 2637,
            "lat": 48.4790842,
            "lng": 2.7147975,
            "type": "poi",
            "category": "campsite",
            "title": "Île de Loisirs"
        },
        {
            "id": 2638,
            "lat": 44.4831413,
            "lng": -1.0893191,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Sanguinet Plage"
        },
        {
            "id": 2639,
            "lat": 47.1275835,
            "lng": 9.110722,
            "type": "poi",
            "category": "campsite",
            "title": "Gäsi"
        },
        {
            "id": 2640,
            "lat": 42.2799671,
            "lng": 0.1966433,
            "type": "poi",
            "category": "campsite",
            "title": "Meson de Ligüerre"
        },
        {
            "id": 2641,
            "lat": 51.8666357,
            "lng": 8.6506817,
            "type": "poi",
            "category": "campsite",
            "title": "Jugendzeltplatz"
        },
        {
            "id": 3113,
            "lat": 41.9628228,
            "lng": -7.9832667,
            "type": "poi",
            "category": "campsite",
            "title": "O Corgo - Muíños"
        },
        {
            "id": 50758,
            "lat": -14.4554995,
            "lng": 34.7720998,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 23064,
            "lat": 46.7154861,
            "lng": 10.3348084,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 48005,
            "lat": 55.9086241,
            "lng": -4.8727843,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30119,
            "lat": 44.0742903,
            "lng": 15.2791928,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2642,
            "lat": 43.4228713,
            "lng": 4.9783807,
            "type": "poi",
            "category": "campsite",
            "title": "La Mérindole"
        },
        {
            "id": 2643,
            "lat": 44.9426497,
            "lng": 1.763111,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2644,
            "lat": 50.8641476,
            "lng": -1.550941,
            "type": "poi",
            "category": "campsite",
            "title": "Pondhead Farm Camping"
        },
        {
            "id": 2645,
            "lat": 50.9162735,
            "lng": -0.1322292,
            "type": "poi",
            "category": "campsite",
            "title": "Southdown Way Caravan & Camping Park"
        },
        {
            "id": 2646,
            "lat": 49.4183586,
            "lng": 9.0293552,
            "type": "poi",
            "category": "campsite",
            "title": "Campingplatz des Naturfreundehauses"
        },
        {
            "id": 2647,
            "lat": 45.4190954,
            "lng": 1.5684736,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal d'Uzerche"
        },
        {
            "id": 2648,
            "lat": 45.6234246,
            "lng": 3.5618023,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal de Cunlhat"
        },
        {
            "id": 2649,
            "lat": 52.8203344,
            "lng": 0.8524217,
            "type": "poi",
            "category": "campsite",
            "title": "Fakenham Racecourse"
        },
        {
            "id": 2650,
            "lat": 52.9704405,
            "lng": 0.0211774,
            "type": "poi",
            "category": "campsite",
            "title": "Pilgrims Way"
        },
        {
            "id": 2651,
            "lat": 53.4023531,
            "lng": -0.3214951,
            "type": "poi",
            "category": "campsite",
            "title": "Walesby Woodlands"
        },
        {
            "id": 2652,
            "lat": 48.3519022,
            "lng": 7.3997509,
            "type": "poi",
            "category": "campsite",
            "title": "Heissenstein (Scouts et Guides de France)"
        },
        {
            "id": 2653,
            "lat": 47.3641041,
            "lng": -0.8608823,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de La Guyonnière"
        },
        {
            "id": 2654,
            "lat": 42.8388545,
            "lng": 0.1436533,
            "type": "poi",
            "category": "campsite",
            "title": "Zone de Bivouac d'Aubert"
        },
        {
            "id": 2655,
            "lat": 50.071489,
            "lng": 9.6872048,
            "type": "poi",
            "category": "campsite",
            "title": "Sauruh"
        },
        {
            "id": 2656,
            "lat": 51.6649806,
            "lng": -0.8663916,
            "type": "poi",
            "category": "campsite",
            "title": "Home Farm"
        },
        {
            "id": 2657,
            "lat": 52.4879186,
            "lng": -3.0357507,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2658,
            "lat": 52.42059,
            "lng": -3.0967562,
            "type": "poi",
            "category": "campsite",
            "title": "Springhill Farm"
        },
        {
            "id": 2659,
            "lat": 52.4348264,
            "lng": -3.1049179,
            "type": "poi",
            "category": "campsite",
            "title": "Ashgrove Campsite"
        },
        {
            "id": 2660,
            "lat": 42.565721,
            "lng": 2.4193598,
            "type": "poi",
            "category": "campsite",
            "title": "Les Sauterelles"
        },
        {
            "id": 2661,
            "lat": 48.3929849,
            "lng": 9.9902062,
            "type": "poi",
            "category": "campsite",
            "title": "Zeltplatz Kanufahrer"
        },
        {
            "id": 2662,
            "lat": 51.7622431,
            "lng": 5.6214785,
            "type": "poi",
            "category": "campsite",
            "title": "Vakantiepark Herperduin"
        },
        {
            "id": 2663,
            "lat": 52.812214,
            "lng": -4.7191434,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2664,
            "lat": 51.730407,
            "lng": 6.2736936,
            "type": "poi",
            "category": "campsite",
            "title": "Internationaler Pfadfindertreffpunkt Kalkar"
        },
        {
            "id": 2665,
            "lat": 37.1717789,
            "lng": -3.5085617,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 9099,
            "lat": 49.7099926,
            "lng": 8.7599654,
            "type": "poi",
            "category": "drinking_water",
            "title": "Wasserhahn"
        },
        {
            "id": 2666,
            "lat": 51.8856328,
            "lng": -1.4710859,
            "type": "poi",
            "category": "campsite",
            "title": "Cotswold View"
        },
        {
            "id": 2667,
            "lat": 48.5464257,
            "lng": -2.5216944,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Saint-Vreguet"
        },
        {
            "id": 2668,
            "lat": 49.1201543,
            "lng": 7.6910722,
            "type": "poi",
            "category": "campsite",
            "title": "Jugendzeltplatz Wolfsägerhof"
        },
        {
            "id": 2669,
            "lat": 51.1456317,
            "lng": -3.6835266,
            "type": "poi",
            "category": "campsite",
            "title": "Westermill Farm Campsite"
        },
        {
            "id": 2670,
            "lat": 47.8446142,
            "lng": -0.1955453,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal"
        },
        {
            "id": 2671,
            "lat": 50.6191288,
            "lng": -3.5812155,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2672,
            "lat": 48.6068728,
            "lng": -2.4641246,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Le Pusset"
        },
        {
            "id": 2673,
            "lat": 40.3645369,
            "lng": -4.3251726,
            "type": "poi",
            "category": "campsite",
            "title": "Camping La Enfermería"
        },
        {
            "id": 2674,
            "lat": 53.7650691,
            "lng": 8.5358072,
            "type": "poi",
            "category": "campsite",
            "title": "Campingplatz Cappel-Neufeld (Außendeich)"
        },
        {
            "id": 2675,
            "lat": 50.7275666,
            "lng": 6.4648354,
            "type": "poi",
            "category": "campsite",
            "title": "Freizeitfreunden Rurtal e.V."
        },
        {
            "id": 2676,
            "lat": 39.8470635,
            "lng": -0.515836,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal d'Altura"
        },
        {
            "id": 2677,
            "lat": 43.8734751,
            "lng": 7.6112568,
            "type": "poi",
            "category": "campsite",
            "title": "Agricamping Ponte Raggio"
        },
        {
            "id": 2678,
            "lat": 51.1721395,
            "lng": 8.9385325,
            "type": "poi",
            "category": "campsite",
            "title": "Ferienzentrum Albert Schweitzer"
        },
        {
            "id": 2679,
            "lat": 51.9861199,
            "lng": 5.0572959,
            "type": "poi",
            "category": "campsite",
            "title": "Clementie"
        },
        {
            "id": 2680,
            "lat": 43.5211323,
            "lng": -8.1104981,
            "type": "poi",
            "category": "campsite",
            "title": "Pedroso"
        },
        {
            "id": 2681,
            "lat": 53.5962603,
            "lng": 9.5834347,
            "type": "poi",
            "category": "campsite",
            "title": "Campingplatz Lühesand"
        },
        {
            "id": 2682,
            "lat": 51.1812239,
            "lng": 1.1352015,
            "type": "poi",
            "category": "campsite",
            "title": "The Palm Tree"
        },
        {
            "id": 2683,
            "lat": 51.1742259,
            "lng": 1.1800664,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2684,
            "lat": 49.0198047,
            "lng": 5.6349204,
            "type": "poi",
            "category": "campsite",
            "title": "Camping du Longeau"
        },
        {
            "id": 2685,
            "lat": 51.8154394,
            "lng": -4.33934,
            "type": "poi",
            "category": "campsite",
            "title": "Church House Farm"
        },
        {
            "id": 2686,
            "lat": 53.4698475,
            "lng": 8.4830396,
            "type": "poi",
            "category": "campsite",
            "title": "Camping-Club"
        },
        {
            "id": 2687,
            "lat": 48.8008409,
            "lng": 8.7425287,
            "type": "poi",
            "category": "campsite",
            "title": "Jugendzeltplatz Monbachtal"
        },
        {
            "id": 2688,
            "lat": 52.6418315,
            "lng": -8.3604395,
            "type": "poi",
            "category": "campsite",
            "title": "Thomond Scout Centre"
        },
        {
            "id": 2689,
            "lat": 53.0942189,
            "lng": -1.8410779,
            "type": "poi",
            "category": "campsite",
            "title": "New House Farm"
        },
        {
            "id": 9100,
            "lat": 47.2426029,
            "lng": 7.2561237,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 2690,
            "lat": 48.9277765,
            "lng": 9.6653843,
            "type": "poi",
            "category": "campsite",
            "title": "Waldjugendzeltplatz Häuptleswiese"
        },
        {
            "id": 2691,
            "lat": 47.1128678,
            "lng": 8.6239133,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Naas-Sod"
        },
        {
            "id": 2692,
            "lat": 43.4801682,
            "lng": 2.1456545,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal"
        },
        {
            "id": 2693,
            "lat": 54.3855562,
            "lng": -3.4559968,
            "type": "poi",
            "category": "campsite",
            "title": "Shepherd's View"
        },
        {
            "id": 2694,
            "lat": 46.4138579,
            "lng": 7.1025174,
            "type": "poi",
            "category": "campsite",
            "title": "Le Cuizon"
        },
        {
            "id": 2695,
            "lat": 52.893288,
            "lng": 5.6448517,
            "type": "poi",
            "category": "campsite",
            "title": "Jachthaven 'De Lemsterpoort'"
        },
        {
            "id": 2696,
            "lat": 46.4469407,
            "lng": 6.8752746,
            "type": "poi",
            "category": "campsite",
            "title": "Maladaire"
        },
        {
            "id": 2697,
            "lat": 51.63523,
            "lng": -3.1122533,
            "type": "poi",
            "category": "campsite",
            "title": "Cwmcarn Forest Drive Campsite"
        },
        {
            "id": 2698,
            "lat": 52.6462104,
            "lng": 1.6862678,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2699,
            "lat": 44.3016222,
            "lng": 3.2949363,
            "type": "poi",
            "category": "campsite",
            "title": "Ghost camp site"
        },
        {
            "id": 2700,
            "lat": 45.3987643,
            "lng": -1.0485557,
            "type": "poi",
            "category": "campsite",
            "title": "Camping 3 étoiles Le Vieux Moulin - Vensac"
        },
        {
            "id": 2701,
            "lat": 46.9464491,
            "lng": 8.3112736,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Hostetten"
        },
        {
            "id": 2702,
            "lat": 43.84407,
            "lng": 5.4960764,
            "type": "poi",
            "category": "campsite",
            "title": "Camping à la ferme"
        },
        {
            "id": 2703,
            "lat": 44.5640212,
            "lng": 5.9173653,
            "type": "poi",
            "category": "campsite",
            "title": "Parc des Sérigons"
        },
        {
            "id": 2704,
            "lat": 47.1392589,
            "lng": 5.8509847,
            "type": "poi",
            "category": "campsite",
            "title": "Les lacs d’Osselle"
        },
        {
            "id": 2705,
            "lat": 54.7749592,
            "lng": -2.0920791,
            "type": "poi",
            "category": "campsite",
            "title": "The Vicarage"
        },
        {
            "id": 2706,
            "lat": 50.8584439,
            "lng": -3.2780322,
            "type": "poi",
            "category": "campsite",
            "title": "Forest Glade"
        },
        {
            "id": 2707,
            "lat": 53.4853241,
            "lng": 6.1608075,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Seedune"
        },
        {
            "id": 2708,
            "lat": 45.8378197,
            "lng": 3.6662588,
            "type": "poi",
            "category": "campsite",
            "title": "Domaine de la Planche"
        },
        {
            "id": 2709,
            "lat": 43.0467065,
            "lng": 2.2222641,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Municipal du Breil"
        },
        {
            "id": 2710,
            "lat": 42.1257557,
            "lng": -2.1130463,
            "type": "poi",
            "category": "campsite",
            "title": "La Estanca"
        },
        {
            "id": 2711,
            "lat": 34.2222876,
            "lng": -3.3581358,
            "type": "poi",
            "category": "campsite",
            "title": "Camping & Piscine Municipale de Guercif"
        },
        {
            "id": 3114,
            "lat": 50.9080906,
            "lng": 0.2140741,
            "type": "poi",
            "category": "campsite",
            "title": "Merrylands @ Chiddingly"
        },
        {
            "id": 2712,
            "lat": 43.9734959,
            "lng": 8.1576195,
            "type": "poi",
            "category": "campsite",
            "title": "San Sebastiano"
        },
        {
            "id": 2713,
            "lat": 42.8014682,
            "lng": 2.7199915,
            "type": "poi",
            "category": "campsite",
            "title": "Mas de l'Alzine"
        },
        {
            "id": 2714,
            "lat": 46.9472279,
            "lng": 8.9904279,
            "type": "poi",
            "category": "campsite",
            "title": "Abenteuercamp Braunwald"
        },
        {
            "id": 2715,
            "lat": 47.7034532,
            "lng": -1.3780125,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal"
        },
        {
            "id": 2716,
            "lat": 54.0692209,
            "lng": -0.2523358,
            "type": "poi",
            "category": "campsite",
            "title": "Little Eden Country Park"
        },
        {
            "id": 2717,
            "lat": 53.2499831,
            "lng": -1.8943732,
            "type": "poi",
            "category": "campsite",
            "title": "Lime Tree Park"
        },
        {
            "id": 2718,
            "lat": 50.2077405,
            "lng": -5.5186831,
            "type": "poi",
            "category": "campsite",
            "title": "Trevalgan Holiday Farm"
        },
        {
            "id": 2719,
            "lat": 46.3150229,
            "lng": 8.25531,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Alpe Devero"
        },
        {
            "id": 2720,
            "lat": 50.2567813,
            "lng": -5.2164365,
            "type": "poi",
            "category": "campsite",
            "title": "Globe Vale Holiday Park"
        },
        {
            "id": 2721,
            "lat": 53.1314663,
            "lng": 9.1587513,
            "type": "poi",
            "category": "campsite",
            "title": "Heidehof"
        },
        {
            "id": 2722,
            "lat": 51.4945732,
            "lng": 4.6021342,
            "type": "poi",
            "category": "campsite",
            "title": "Internationaal Priem"
        },
        {
            "id": 2723,
            "lat": 45.2475235,
            "lng": 1.1378129,
            "type": "poi",
            "category": "campsite",
            "title": "Camping du Coucou"
        },
        {
            "id": 2724,
            "lat": 46.7246156,
            "lng": 8.9304674,
            "type": "poi",
            "category": "campsite",
            "title": "Campadi Garvera"
        },
        {
            "id": 2725,
            "lat": 52.0164888,
            "lng": -0.57829,
            "type": "poi",
            "category": "campsite",
            "title": "The Rose and Crown"
        },
        {
            "id": 2726,
            "lat": 45.9240009,
            "lng": 6.6539576,
            "type": "poi",
            "category": "campsite",
            "title": "Mont Blanc Plage"
        },
        {
            "id": 2727,
            "lat": 44.5147101,
            "lng": 6.3606017,
            "type": "poi",
            "category": "campsite",
            "title": "Les Chappas"
        },
        {
            "id": 2728,
            "lat": 47.6022008,
            "lng": -3.0365915,
            "type": "poi",
            "category": "campsite",
            "title": "Kervilor"
        },
        {
            "id": 2729,
            "lat": 51.9766631,
            "lng": -3.0929766,
            "type": "poi",
            "category": "campsite",
            "title": "Grange Pony Trekking"
        },
        {
            "id": 2730,
            "lat": 46.5215164,
            "lng": 5.7232897,
            "type": "poi",
            "category": "campsite",
            "title": "Domaine de la Fraite"
        },
        {
            "id": 2731,
            "lat": 52.4152772,
            "lng": 5.7472654,
            "type": "poi",
            "category": "campsite",
            "title": "Surfcamp Veluwemeer"
        },
        {
            "id": 2732,
            "lat": 51.3025451,
            "lng": -3.0096365,
            "type": "poi",
            "category": "campsite",
            "title": "Warren Farm Holiday Centre"
        },
        {
            "id": 2733,
            "lat": 51.2945846,
            "lng": -3.0096944,
            "type": "poi",
            "category": "campsite",
            "title": "Northam Farm Caravan & Touring Park"
        },
        {
            "id": 2734,
            "lat": 52.4344391,
            "lng": 6.841538,
            "type": "poi",
            "category": "campsite",
            "title": "De Tutenberg"
        },
        {
            "id": 2735,
            "lat": 36.395191,
            "lng": -6.1570721,
            "type": "poi",
            "category": "campsite",
            "title": "La Rana Verde"
        },
        {
            "id": 2736,
            "lat": 44.72171,
            "lng": 0.2360961,
            "type": "poi",
            "category": "campsite",
            "title": "Moulin de Borie Neuve"
        },
        {
            "id": 2737,
            "lat": 51.5773721,
            "lng": 5.4451886,
            "type": "poi",
            "category": "campsite",
            "title": "De Kienehoef"
        },
        {
            "id": 2738,
            "lat": 53.5976334,
            "lng": 9.5843884,
            "type": "poi",
            "category": "campsite",
            "title": "Lühesand Zeltplatz Hamburger Kanuvereine"
        },
        {
            "id": 2739,
            "lat": 46.1233328,
            "lng": 0.6592888,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Le Parc"
        },
        {
            "id": 2849,
            "lat": 47.2580352,
            "lng": 8.77394,
            "type": "poi",
            "category": "campsite",
            "title": "Camping am Lützelsee"
        },
        {
            "id": 2740,
            "lat": 48.5928279,
            "lng": -2.517412,
            "type": "poi",
            "category": "campsite",
            "title": "Parc résidentiel de la Vallée du Preto"
        },
        {
            "id": 2741,
            "lat": 45.8790675,
            "lng": 6.6362824,
            "type": "poi",
            "category": "campsite",
            "title": "Demi-Lune"
        },
        {
            "id": 2742,
            "lat": 54.1061327,
            "lng": -2.8091376,
            "type": "poi",
            "category": "campsite",
            "title": "Red Bank Farm"
        },
        {
            "id": 2743,
            "lat": 54.3074437,
            "lng": -4.53512,
            "type": "poi",
            "category": "campsite",
            "title": "Ballamoar Farm"
        },
        {
            "id": 2744,
            "lat": 54.2009575,
            "lng": -4.6569504,
            "type": "poi",
            "category": "campsite",
            "title": "Ballaspit"
        },
        {
            "id": 2745,
            "lat": 44.9365307,
            "lng": 3.9850937,
            "type": "poi",
            "category": "campsite",
            "title": "Camping l'Estela"
        },
        {
            "id": 2746,
            "lat": 46.6339774,
            "lng": 1.4086978,
            "type": "poi",
            "category": "campsite",
            "title": "L'Oasis du Berry"
        },
        {
            "id": 2747,
            "lat": 47.1352653,
            "lng": 2.1618417,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2748,
            "lat": 40.6735883,
            "lng": 0.2305561,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2749,
            "lat": 50.9552442,
            "lng": 0.5767293,
            "type": "poi",
            "category": "campsite",
            "title": "Sussex Tipi Holidays"
        },
        {
            "id": 2750,
            "lat": 43.5454125,
            "lng": 6.4378144,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2751,
            "lat": 47.8494843,
            "lng": -3.4121938,
            "type": "poi",
            "category": "campsite",
            "title": "Entre Terre et Mer"
        },
        {
            "id": 2752,
            "lat": 54.2859441,
            "lng": 9.3983914,
            "type": "poi",
            "category": "campsite",
            "title": "Hohner Fähre"
        },
        {
            "id": 2753,
            "lat": 52.9259055,
            "lng": -8.2745508,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2754,
            "lat": 54.2684099,
            "lng": -5.9425275,
            "type": "poi",
            "category": "campsite",
            "title": "Castlewellan Touring-in-the-Trees"
        },
        {
            "id": 2755,
            "lat": 44.3043801,
            "lng": 3.9831631,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2756,
            "lat": 51.1915853,
            "lng": 4.6572016,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Waterschap"
        },
        {
            "id": 2757,
            "lat": 42.1689555,
            "lng": 9.5298705,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2758,
            "lat": 48.1018003,
            "lng": 8.2813379,
            "type": "poi",
            "category": "campsite",
            "title": "Gruppenunterkunft Kesselberghaus"
        },
        {
            "id": 2759,
            "lat": 35.3347724,
            "lng": -6.0018731,
            "type": "poi",
            "category": "campsite",
            "title": "Le Village Solitaire"
        },
        {
            "id": 2760,
            "lat": 51.0735682,
            "lng": -0.0556598,
            "type": "poi",
            "category": "campsite",
            "title": "Hook Farm Campsite"
        },
        {
            "id": 2761,
            "lat": 45.9360967,
            "lng": 6.9518839,
            "type": "poi",
            "category": "campsite",
            "title": "Bivouac du Rognon des Drus"
        },
        {
            "id": 2762,
            "lat": 54.8387846,
            "lng": 9.3082308,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2763,
            "lat": 45.8503362,
            "lng": 5.4125394,
            "type": "poi",
            "category": "campsite",
            "title": "Espace Eau Vive"
        },
        {
            "id": 2764,
            "lat": 51.8634654,
            "lng": -2.5167545,
            "type": "poi",
            "category": "campsite",
            "title": "Greenway Farm Campsite"
        },
        {
            "id": 2765,
            "lat": 45.063424,
            "lng": 5.3946263,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Chez la Mère Michon"
        },
        {
            "id": 2766,
            "lat": 50.2026162,
            "lng": -5.2475475,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2850,
            "lat": 51.0726161,
            "lng": -0.4362936,
            "type": "poi",
            "category": "campsite",
            "title": "Shadow Woods (Yurts)"
        },
        {
            "id": 2767,
            "lat": 48.9155702,
            "lng": 7.369482,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Municipal"
        },
        {
            "id": 2768,
            "lat": 42.3920042,
            "lng": 9.1748326,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Campita"
        },
        {
            "id": 2769,
            "lat": 54.919667,
            "lng": 9.5557795,
            "type": "poi",
            "category": "campsite",
            "title": "Rinkenæs Skov - Primitiv Teltplads"
        },
        {
            "id": 2770,
            "lat": 51.1075105,
            "lng": 6.9910192,
            "type": "poi",
            "category": "campsite",
            "title": "Campingplatz Naturfreunde Leichlingen"
        },
        {
            "id": 2771,
            "lat": 50.0656195,
            "lng": 8.9912974,
            "type": "poi",
            "category": "campsite",
            "title": "Campingplatz Kahl am Main"
        },
        {
            "id": 2772,
            "lat": 35.200364,
            "lng": -4.6814704,
            "type": "poi",
            "category": "campsite",
            "title": "Parking de la gendarmerie"
        },
        {
            "id": 2773,
            "lat": 50.1415152,
            "lng": -5.1087615,
            "type": "poi",
            "category": "campsite",
            "title": "Trewen Farm Campsite"
        },
        {
            "id": 2774,
            "lat": 51.4315586,
            "lng": -3.5024611,
            "type": "poi",
            "category": "campsite",
            "title": "Llandow Touring Caravan Site"
        },
        {
            "id": 2775,
            "lat": 35.6658841,
            "lng": -5.3059927,
            "type": "poi",
            "category": "campsite",
            "title": "La Ferma"
        },
        {
            "id": 2776,
            "lat": 35.2034436,
            "lng": -4.681509,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2784,
            "lat": 52.1477522,
            "lng": 8.0920624,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2785,
            "lat": 46.6422762,
            "lng": -0.2672381,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Bois Vert"
        },
        {
            "id": 2786,
            "lat": 48.6786677,
            "lng": -3.6245535,
            "type": "poi",
            "category": "campsite",
            "title": "Le Village de l'Armorique"
        },
        {
            "id": 2787,
            "lat": 48.1591832,
            "lng": 1.0133861,
            "type": "poi",
            "category": "campsite",
            "title": "Ferme de la Belvindière"
        },
        {
            "id": 2788,
            "lat": 53.7587188,
            "lng": -2.0333971,
            "type": "poi",
            "category": "campsite",
            "title": "Hebden Hey Scout Centre"
        },
        {
            "id": 2789,
            "lat": 40.5798679,
            "lng": 9.7750572,
            "type": "poi",
            "category": "campsite",
            "title": "La Mandragola"
        },
        {
            "id": 2790,
            "lat": 53.3288687,
            "lng": 6.1876279,
            "type": "poi",
            "category": "campsite",
            "title": "Natuurcamping De Pomp"
        },
        {
            "id": 2791,
            "lat": 52.9033483,
            "lng": 5.4670912,
            "type": "poi",
            "category": "campsite",
            "title": "De Kuilart"
        },
        {
            "id": 2792,
            "lat": 51.2708108,
            "lng": -2.231641,
            "type": "poi",
            "category": "campsite",
            "title": "Brokerswood Holiday Park"
        },
        {
            "id": 2794,
            "lat": 42.6417156,
            "lng": 0.5661937,
            "type": "poi",
            "category": "campsite",
            "title": "Area de acampada la Senarta"
        },
        {
            "id": 2795,
            "lat": 42.5552847,
            "lng": 2.3775363,
            "type": "poi",
            "category": "campsite",
            "title": "L'Eau Vive"
        },
        {
            "id": 2796,
            "lat": 42.5564512,
            "lng": 2.3849304,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Del Bosc"
        },
        {
            "id": 2906,
            "lat": 53.3172841,
            "lng": -2.3637245,
            "type": "poi",
            "category": "campsite",
            "title": "Tatton Park Scout Campsite"
        },
        {
            "id": 2797,
            "lat": 53.8009293,
            "lng": -2.406363,
            "type": "poi",
            "category": "campsite",
            "title": "Bowley International Scout Centre"
        },
        {
            "id": 2798,
            "lat": 34.4093226,
            "lng": -2.9554078,
            "type": "poi",
            "category": "campsite",
            "title": "Aire de repos"
        },
        {
            "id": 2799,
            "lat": 43.28712,
            "lng": -2.3384163,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Itziar"
        },
        {
            "id": 2800,
            "lat": 42.2288465,
            "lng": 0.0480664,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Lecina"
        },
        {
            "id": 2801,
            "lat": 42.2455956,
            "lng": -0.0696425,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Expediciones (empresa de canyoning, camping cerrado)"
        },
        {
            "id": 2802,
            "lat": 44.7826382,
            "lng": -0.1272414,
            "type": "poi",
            "category": "campsite",
            "title": "Camping du Vieux Château"
        },
        {
            "id": 2803,
            "lat": 48.4545483,
            "lng": -1.650999,
            "type": "poi",
            "category": "campsite",
            "title": "Camping du Bois Coudrais"
        },
        {
            "id": 2804,
            "lat": 40.1451886,
            "lng": 8.732376,
            "type": "poi",
            "category": "campsite",
            "title": "Base Scout San Martino"
        },
        {
            "id": 2805,
            "lat": 51.4885805,
            "lng": 9.1657039,
            "type": "poi",
            "category": "campsite",
            "title": "Kanu Club Warburg"
        },
        {
            "id": 2806,
            "lat": 54.3155005,
            "lng": -2.9322785,
            "type": "poi",
            "category": "campsite",
            "title": "Great Tower Scout Activity Centre"
        },
        {
            "id": 50777,
            "lat": -14.464663,
            "lng": 34.8443617,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2807,
            "lat": 51.6127338,
            "lng": 4.8666346,
            "type": "poi",
            "category": "campsite",
            "title": "De Eekhoorn"
        },
        {
            "id": 2808,
            "lat": 44.0223536,
            "lng": 4.0454389,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Mas des Chênes"
        },
        {
            "id": 2809,
            "lat": 44.0032722,
            "lng": 3.6592497,
            "type": "poi",
            "category": "campsite",
            "title": "Les Magnarelles"
        },
        {
            "id": 2810,
            "lat": 46.9770487,
            "lng": 0.6693531,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2811,
            "lat": 53.2460442,
            "lng": -4.5823002,
            "type": "poi",
            "category": "campsite",
            "title": "Outdoor Alternative"
        },
        {
            "id": 2812,
            "lat": 47.8070242,
            "lng": -3.6865251,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de la Grande Lande"
        },
        {
            "id": 2813,
            "lat": 52.1270398,
            "lng": -4.6578763,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2814,
            "lat": 44.6398386,
            "lng": 0.6866875,
            "type": "poi",
            "category": "campsite",
            "title": "Bourgade"
        },
        {
            "id": 2815,
            "lat": 51.7910025,
            "lng": 5.0927051,
            "type": "poi",
            "category": "campsite",
            "title": "Boeren camping"
        },
        {
            "id": 2816,
            "lat": 51.1422968,
            "lng": -2.6928176,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2474,
            "lat": 65.4606774,
            "lng": 34.1869026,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2475,
            "lat": 65.4426146,
            "lng": 34.2757569,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2476,
            "lat": 65.442867,
            "lng": 34.2706306,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2478,
            "lat": 45.4973969,
            "lng": 26.6207812,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2479,
            "lat": 65.7720855,
            "lng": 33.7979627,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2480,
            "lat": 49.3787791,
            "lng": 36.9858111,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2481,
            "lat": 49.3775288,
            "lng": 36.9813587,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2482,
            "lat": 49.37799,
            "lng": 36.9799049,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2483,
            "lat": 49.3807002,
            "lng": 36.9915618,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2484,
            "lat": 49.3783253,
            "lng": 36.9791808,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2485,
            "lat": 45.1133829,
            "lng": 33.5371185,
            "type": "poi",
            "category": "campsite",
            "title": "Уют"
        },
        {
            "id": 2486,
            "lat": 65.7708344,
            "lng": 33.7326125,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2506,
            "lat": 50.8592,
            "lng": -1.52732,
            "type": "poi",
            "category": "campsite",
            "title": "Denny Wood"
        },
        {
            "id": 16310,
            "lat": 49.0884163,
            "lng": 9.8853087,
            "type": "poi",
            "category": "caravan_site",
            "title": "Wohnmobilstellplatz Mineralfreibad Vellberg"
        },
        {
            "id": 16938,
            "lat": 41.8263852,
            "lng": -4.6512495,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 47845,
            "lat": 18.2311012,
            "lng": -72.3203448,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15026,
            "lat": 52.1078585,
            "lng": 8.0908788,
            "type": "poi",
            "category": "caravan_site",
            "title": "Parkplatz Kurhaus"
        },
        {
            "id": 47846,
            "lat": 18.2319488,
            "lng": -72.3078872,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27602,
            "lat": 52.1345822,
            "lng": -4.5460835,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 43656,
            "lat": 60.4567639,
            "lng": -134.2763132,
            "type": "poi",
            "category": "caravan_site",
            "title": "Marsh Lake Marina RV Park"
        },
        {
            "id": 16936,
            "lat": 50.8434508,
            "lng": -0.8731127,
            "type": "poi",
            "category": "caravan_site",
            "title": "Orchard Farm"
        },
        {
            "id": 45949,
            "lat": 33.3556302,
            "lng": 43.779014,
            "type": "poi",
            "category": "caravan_site",
            "title": "باسم حمزة"
        },
        {
            "id": 47844,
            "lat": 18.2581881,
            "lng": -72.3072693,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50154,
            "lat": 45.1912422,
            "lng": -81.5541425,
            "type": "poi",
            "category": "shower",
            "title": "Roxy’s Showers"
        },
        {
            "id": 30798,
            "lat": 49.542626,
            "lng": 25.5904788,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30799,
            "lat": 36.1737871,
            "lng": 29.6467459,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30800,
            "lat": 36.173963,
            "lng": 29.6434144,
            "type": "poi",
            "category": "shower",
            "title": "Beach Shower"
        },
        {
            "id": 30801,
            "lat": 34.9732584,
            "lng": 34.0403324,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30909,
            "lat": 36.8540917,
            "lng": 30.9137042,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30910,
            "lat": 36.8559716,
            "lng": 30.9132645,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50800,
            "lat": -14.4587727,
            "lng": 35.2356557,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50801,
            "lat": -14.4589244,
            "lng": 35.2326578,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 17529,
            "lat": 62.6626829,
            "lng": 21.9889457,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 15036,
            "lat": 54.182256,
            "lng": -2.8421162,
            "type": "poi",
            "category": "caravan_site",
            "title": "Holgates Holiday Park: Hollins Farm"
        },
        {
            "id": 30803,
            "lat": 45.7809822,
            "lng": 15.9346395,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 43666,
            "lat": 4.6367624,
            "lng": 101.9818114,
            "type": "poi",
            "category": "caravan_site",
            "title": "Oa"
        },
        {
            "id": 2543,
            "lat": 44.190833,
            "lng": 3.156944,
            "type": "poi",
            "category": "campsite",
            "title": "Le Peyrelade"
        },
        {
            "id": 2544,
            "lat": 45.946944,
            "lng": -1.3125,
            "type": "poi",
            "category": "campsite",
            "title": "Pierrire"
        },
        {
            "id": 2545,
            "lat": 43.6820171,
            "lng": 7.0835292,
            "type": "poi",
            "category": "campsite",
            "title": "Les Pinèdes"
        },
        {
            "id": 2546,
            "lat": 44.740556,
            "lng": 1.044167,
            "type": "poi",
            "category": "campsite",
            "title": "Ratebout"
        },
        {
            "id": 2547,
            "lat": 48.5430352,
            "lng": 2.1378939,
            "type": "poi",
            "category": "campsite",
            "title": "Roches"
        },
        {
            "id": 2548,
            "lat": 44.5229774,
            "lng": 6.3407309,
            "type": "poi",
            "category": "campsite",
            "title": "La Presqu’île"
        },
        {
            "id": 2549,
            "lat": 44.8536313,
            "lng": 2.7709879,
            "type": "poi",
            "category": "campsite",
            "title": "La Source"
        },
        {
            "id": 2550,
            "lat": 47.712778,
            "lng": -0.499167,
            "type": "poi",
            "category": "campsite",
            "title": "Varennes"
        },
        {
            "id": 2551,
            "lat": 45.551111,
            "lng": 0.795833,
            "type": "poi",
            "category": "campsite",
            "title": "Château Le Verdoyer"
        },
        {
            "id": 2552,
            "lat": 51.528243,
            "lng": 5.1247698,
            "type": "poi",
            "category": "campsite",
            "title": "Beekse Bergen"
        },
        {
            "id": 145,
            "lat": 63.2846781,
            "lng": 29.482455,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 43665,
            "lat": 40.4385219,
            "lng": 49.8647964,
            "type": "poi",
            "category": "caravan_site",
            "title": "Tamet sexi Şaiq"
        },
        {
            "id": 16940,
            "lat": 42.9655474,
            "lng": -4.4962127,
            "type": "poi",
            "category": "caravan_site",
            "title": "Area de San Salvador de Cantamuda"
        },
        {
            "id": 30078,
            "lat": 52.4816205,
            "lng": 13.303357,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50161,
            "lat": 49.2818272,
            "lng": -123.1100796,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 37648,
            "lat": -26.3050919,
            "lng": 151.9948982,
            "type": "poi",
            "category": "caravan_site",
            "title": "Yallakool Tourist Park"
        },
        {
            "id": 43664,
            "lat": 34.6486079,
            "lng": 50.8975289,
            "type": "poi",
            "category": "caravan_site",
            "title": "خيابان عمار ياسر گوچه٣٤ بلاك ١٠"
        },
        {
            "id": 30804,
            "lat": 66.7391537,
            "lng": 24.4736679,
            "type": "poi",
            "category": "shower",
            "title": "Puolukkamaan pirtit"
        },
        {
            "id": 50842,
            "lat": -14.3612654,
            "lng": 35.1683358,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30079,
            "lat": 45.7874267,
            "lng": 13.5359504,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30080,
            "lat": 35.1871705,
            "lng": 25.7158099,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50858,
            "lat": -14.5912355,
            "lng": 35.1805857,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 37604,
            "lat": -20.6521373,
            "lng": 117.0172903,
            "type": "poi",
            "category": "caravan_site",
            "title": "Cleaverville Nature Based Camping Grounds"
        },
        {
            "id": 3090,
            "lat": 51.1301929,
            "lng": 0.1721214,
            "type": "poi",
            "category": "campsite",
            "title": "Manor Court Farm"
        },
        {
            "id": 43672,
            "lat": 47.8238771,
            "lng": -90.3674984,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 9101,
            "lat": 44.4032153,
            "lng": 8.9320136,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 18846,
            "lat": 35.3639457,
            "lng": 36.6335378,
            "type": "poi",
            "category": "caravan_site",
            "title": "ارض لطمين"
        },
        {
            "id": 43674,
            "lat": -42.4022111,
            "lng": 173.6825488,
            "type": "poi",
            "category": "caravan_site",
            "title": "SC camping (at night only)"
        },
        {
            "id": 18847,
            "lat": 52.5116957,
            "lng": 14.3251342,
            "type": "poi",
            "category": "caravan_site",
            "title": "Ölmühle Diedersdorf"
        },
        {
            "id": 16942,
            "lat": 48.586614,
            "lng": 7.4408302,
            "type": "poi",
            "category": "caravan_site",
            "title": "Vins et crémant d'Alsace Thierry-Martin"
        },
        {
            "id": 30085,
            "lat": 41.1288871,
            "lng": 16.8619533,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30086,
            "lat": 42.9582895,
            "lng": 17.1359958,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30088,
            "lat": 53.2238832,
            "lng": 12.8379391,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30090,
            "lat": 54.995493,
            "lng": 12.1666461,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50210,
            "lat": 55.6467267,
            "lng": 84.3604594,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30826,
            "lat": 50.4325463,
            "lng": 14.925897,
            "type": "poi",
            "category": "shower",
            "title": "Orlen"
        },
        {
            "id": 50215,
            "lat": -27.3491856,
            "lng": 153.0241384,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50230,
            "lat": 38.4264094,
            "lng": -28.4213127,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50231,
            "lat": 38.4189453,
            "lng": -28.3852855,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30928,
            "lat": 68.7015653,
            "lng": 15.4152072,
            "type": "poi",
            "category": "shower",
            "title": "Circle K Sortland"
        },
        {
            "id": 30929,
            "lat": 53.654439,
            "lng": 14.6183248,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50232,
            "lat": 5.7939199,
            "lng": 100.3675369,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50233,
            "lat": 5.8934017,
            "lng": 100.3579472,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 37640,
            "lat": -32.5092601,
            "lng": 134.2140448,
            "type": "poi",
            "category": "caravan_site",
            "title": "Haslam Caravan Park"
        },
        {
            "id": 43696,
            "lat": 47.8808643,
            "lng": -90.4452145,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 43699,
            "lat": 30.4603413,
            "lng": -86.5287554,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 28445,
            "lat": 43.4624107,
            "lng": -1.5770177,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28446,
            "lat": 43.4627837,
            "lng": -1.5763667,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50920,
            "lat": -14.7366973,
            "lng": 35.1734195,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 37641,
            "lat": -19.5801089,
            "lng": 147.4016996,
            "type": "poi",
            "category": "caravan_site",
            "title": "Burdekin Cascades Caravan Park"
        },
        {
            "id": 45966,
            "lat": 43.4704603,
            "lng": -112.0581062,
            "type": "poi",
            "category": "caravan_site",
            "title": "Idaho Falls Luxury RV Park"
        },
        {
            "id": 27665,
            "lat": 43.3296578,
            "lng": 5.1338797,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27666,
            "lat": 52.4572757,
            "lng": 4.5586472,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30118,
            "lat": 59.4677541,
            "lng": 18.1079855,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27688,
            "lat": 43.8873635,
            "lng": 1.3158217,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27689,
            "lat": 43.888192,
            "lng": 1.3189373,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48061,
            "lat": -35.2697177,
            "lng": 150.5009277,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48062,
            "lat": 32.9761064,
            "lng": -80.0558821,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48063,
            "lat": 33.2597372,
            "lng": -79.9881617,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48073,
            "lat": 32.786255,
            "lng": -79.785335,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 37642,
            "lat": -21.1622317,
            "lng": 148.8666562,
            "type": "poi",
            "category": "caravan_site",
            "title": "Mirani Caravan Park"
        },
        {
            "id": 18854,
            "lat": 42.6946474,
            "lng": 23.2158633,
            "type": "poi",
            "category": "caravan_site",
            "title": "Караван център"
        },
        {
            "id": 18855,
            "lat": 52.4260001,
            "lng": 23.849801,
            "type": "poi",
            "category": "caravan_site",
            "title": "Калінка-2"
        },
        {
            "id": 19429,
            "lat": 50.3643858,
            "lng": 16.0598854,
            "type": "poi",
            "category": "caravan_site",
            "title": "Stellplatz Rozkoš"
        },
        {
            "id": 30121,
            "lat": 49.5312531,
            "lng": 11.9670743,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27672,
            "lat": 46.1497908,
            "lng": 9.3356389,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27673,
            "lat": 44.4386831,
            "lng": -1.2425508,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30145,
            "lat": 43.5302286,
            "lng": 10.3034362,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30146,
            "lat": 43.5306356,
            "lng": 10.3027974,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30147,
            "lat": 43.5317433,
            "lng": 10.3026041,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30148,
            "lat": 43.5326158,
            "lng": 10.3017996,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48098,
            "lat": 27.1004259,
            "lng": 33.8376471,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50921,
            "lat": -14.737032,
            "lng": 35.1740605,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30122,
            "lat": 38.4734646,
            "lng": 22.4576105,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30123,
            "lat": 38.473536,
            "lng": 22.4577715,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30137,
            "lat": 41.5361662,
            "lng": 12.5518474,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48075,
            "lat": 31.9103309,
            "lng": 34.8153198,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50262,
            "lat": -30.2018151,
            "lng": -69.1123209,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30138,
            "lat": 36.7341862,
            "lng": 30.5647219,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50288,
            "lat": 33.4163206,
            "lng": -117.6173339,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50289,
            "lat": -43.5221308,
            "lng": 172.7365154,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50290,
            "lat": -24.4494779,
            "lng": 16.1687573,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15052,
            "lat": 51.6535233,
            "lng": -4.0534009,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 50292,
            "lat": -39.0342752,
            "lng": 146.3209889,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50293,
            "lat": -33.9381395,
            "lng": 151.1652989,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28453,
            "lat": 50.3419702,
            "lng": 7.0763944,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50299,
            "lat": 7.1036364,
            "lng": 79.9403,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50300,
            "lat": -33.9799237,
            "lng": 151.2511094,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50312,
            "lat": -5.2126452,
            "lng": -80.6198782,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15053,
            "lat": 51.9394538,
            "lng": -2.9088737,
            "type": "poi",
            "category": "caravan_site",
            "title": "Rowlestone Court"
        },
        {
            "id": 15054,
            "lat": 53.190319,
            "lng": -2.8170102,
            "type": "poi",
            "category": "caravan_site",
            "title": "Birch Bank Farm Camp Site"
        },
        {
            "id": 15055,
            "lat": 52.5868306,
            "lng": 0.3853686,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 15056,
            "lat": 52.5843976,
            "lng": 0.3669142,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 43702,
            "lat": 41.9133908,
            "lng": 70.0185001,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 43703,
            "lat": 54.1388204,
            "lng": 81.6413098,
            "type": "poi",
            "category": "caravan_site",
            "title": "Обское"
        },
        {
            "id": 18860,
            "lat": 50.719323,
            "lng": 11.3650599,
            "type": "poi",
            "category": "caravan_site",
            "title": "Stellplatz SaaleStrand"
        },
        {
            "id": 27691,
            "lat": 47.7686232,
            "lng": 9.1454277,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30139,
            "lat": 48.5374046,
            "lng": 13.5795974,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27692,
            "lat": 48.6321369,
            "lng": -2.254673,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27699,
            "lat": 47.6680518,
            "lng": 9.2162151,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48099,
            "lat": 27.1011767,
            "lng": 33.840066,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48103,
            "lat": 22.6255103,
            "lng": 120.264383,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27701,
            "lat": 53.2019188,
            "lng": 8.0384018,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30155,
            "lat": 51.9199626,
            "lng": 14.6463485,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27719,
            "lat": 48.6248222,
            "lng": -2.143011,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48149,
            "lat": -32.0777521,
            "lng": 115.7520803,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 16321,
            "lat": 41.7438144,
            "lng": 2.2657008,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 30841,
            "lat": 53.834263,
            "lng": 30.3345293,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28457,
            "lat": 39.1127393,
            "lng": 9.5185789,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 418,
            "lat": 44.1922063,
            "lng": 39.3287271,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 52387,
            "lat": 49.0835914,
            "lng": -111.6177421,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28458,
            "lat": 39.1343618,
            "lng": 9.4297858,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52390,
            "lat": -8.7992751,
            "lng": 115.1182667,
            "type": "poi",
            "category": "shower",
            "title": "Mandi"
        },
        {
            "id": 52392,
            "lat": -23.5391524,
            "lng": -45.0675497,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52400,
            "lat": 38.4867381,
            "lng": -107.8576312,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 37700,
            "lat": -23.2540101,
            "lng": 150.8246513,
            "type": "poi",
            "category": "caravan_site",
            "title": "Bell Park Caravan Park"
        },
        {
            "id": 37941,
            "lat": 30.6234616,
            "lng": -87.5930476,
            "type": "poi",
            "category": "caravan_site",
            "title": "Riverside RV Resort"
        },
        {
            "id": 37943,
            "lat": -32.542552,
            "lng": 148.9429466,
            "type": "poi",
            "category": "caravan_site",
            "title": "Riverside Caravan Park"
        },
        {
            "id": 43706,
            "lat": 32.3595162,
            "lng": 3.7819463,
            "type": "poi",
            "category": "caravan_site",
            "title": "Nomairat"
        },
        {
            "id": 30149,
            "lat": 47.9491392,
            "lng": 16.1040609,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48107,
            "lat": -33.7758012,
            "lng": 151.1162544,
            "type": "poi",
            "category": "shower",
            "title": "Showers (Rooms 405 & 605)"
        },
        {
            "id": 48110,
            "lat": -33.7728225,
            "lng": 151.1107985,
            "type": "poi",
            "category": "shower",
            "title": "Shared showers ($1)"
        },
        {
            "id": 48183,
            "lat": 35.0301606,
            "lng": -111.4616149,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30842,
            "lat": 64.1096984,
            "lng": 11.5782654,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50318,
            "lat": -42.5811914,
            "lng": 148.0635876,
            "type": "poi",
            "category": "shower",
            "title": "showers"
        },
        {
            "id": 30843,
            "lat": 49.248503,
            "lng": 11.0944222,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30844,
            "lat": 49.2485161,
            "lng": 11.0943149,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52391,
            "lat": -23.539864,
            "lng": -45.0657981,
            "type": "poi",
            "category": "shower",
            "title": "Ducha"
        },
        {
            "id": 52401,
            "lat": 38.4867362,
            "lng": -107.8577158,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52402,
            "lat": -33.6387745,
            "lng": 115.0259673,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27734,
            "lat": 52.2818112,
            "lng": 5.5435249,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27735,
            "lat": 52.3071822,
            "lng": 5.5578181,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27736,
            "lat": 52.3262159,
            "lng": 5.5760604,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27737,
            "lat": 52.327745,
            "lng": 5.578512,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30166,
            "lat": 36.8535383,
            "lng": 30.8804104,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52406,
            "lat": 35.3059418,
            "lng": -95.5884768,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52407,
            "lat": -24.3843574,
            "lng": 133.9345704,
            "type": "poi",
            "category": "shower",
            "title": "Showers"
        },
        {
            "id": 52408,
            "lat": 9.1617365,
            "lng": 123.2450086,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15066,
            "lat": 50.8035853,
            "lng": -3.2292648,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 30160,
            "lat": 60.1730001,
            "lng": 24.9042628,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 37946,
            "lat": 32.5530584,
            "lng": -85.5118632,
            "type": "poi",
            "category": "caravan_site",
            "title": "Leisure Time Campground"
        },
        {
            "id": 17574,
            "lat": 43.3095188,
            "lng": 13.3130018,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 48452,
            "lat": 0.4812855,
            "lng": 35.9826077,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27813,
            "lat": 45.4479108,
            "lng": 4.3894069,
            "type": "poi",
            "category": "shower",
            "title": "Bains-douches du Treyve"
        },
        {
            "id": 37948,
            "lat": -19.7686766,
            "lng": 121.0918515,
            "type": "poi",
            "category": "caravan_site",
            "title": "Sandfire Caravan Park"
        },
        {
            "id": 37952,
            "lat": 49.350267,
            "lng": -97.3638999,
            "type": "poi",
            "category": "caravan_site",
            "title": "Museum Campground"
        },
        {
            "id": 16322,
            "lat": 48.1528385,
            "lng": 8.265688,
            "type": "poi",
            "category": "caravan_site",
            "title": "Hilserhof"
        },
        {
            "id": 30315,
            "lat": 54.4284384,
            "lng": 10.3614414,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30411,
            "lat": 48.3170726,
            "lng": 14.3315107,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30433,
            "lat": 49.6632047,
            "lng": 18.308792,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27998,
            "lat": 43.1179531,
            "lng": 6.3553372,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3362,
            "lat": 43.4837163,
            "lng": 0.3774976,
            "type": "poi",
            "category": "campsite",
            "title": "Camping a la Ferme"
        },
        {
            "id": 30473,
            "lat": 55.7855337,
            "lng": 12.5944569,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50332,
            "lat": 27.784801,
            "lng": -17.9037868,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28468,
            "lat": 51.8199508,
            "lng": 3.8757693,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28469,
            "lat": 50.8393593,
            "lng": 4.3434848,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28470,
            "lat": 50.8478358,
            "lng": 4.3396402,
            "type": "poi",
            "category": "shower",
            "title": "Consigne Article 23"
        },
        {
            "id": 50922,
            "lat": -14.7370579,
            "lng": 35.1744629,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27720,
            "lat": 53.2575087,
            "lng": -9.0862204,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48147,
            "lat": 39.0964079,
            "lng": -84.5099973,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27729,
            "lat": 54.2116581,
            "lng": -9.0984718,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27730,
            "lat": 48.6945428,
            "lng": -4.0559231,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30161,
            "lat": 60.7538272,
            "lng": 14.9717828,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48212,
            "lat": 64.27997,
            "lng": -21.0871613,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30174,
            "lat": 38.3911238,
            "lng": 16.5323348,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28471,
            "lat": 42.3752585,
            "lng": -8.9379497,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50338,
            "lat": 33.4197534,
            "lng": -117.6202266,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30847,
            "lat": 53.9973429,
            "lng": 22.8248449,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50343,
            "lat": 29.4922295,
            "lng": -82.9708207,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48216,
            "lat": 13.7451732,
            "lng": 79.6972483,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27750,
            "lat": 53.5946122,
            "lng": 8.3582511,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28475,
            "lat": 48.6305328,
            "lng": 9.3268491,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 49483,
            "lat": -34.34881,
            "lng": 150.9202528,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 49486,
            "lat": -34.4230189,
            "lng": 150.9062516,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15088,
            "lat": 53.0982182,
            "lng": -2.6218982,
            "type": "poi",
            "category": "caravan_site",
            "title": "Rookery Cottage"
        },
        {
            "id": 49875,
            "lat": 38.4309509,
            "lng": -28.4618631,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28474,
            "lat": 43.1056954,
            "lng": 0.4730213,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50358,
            "lat": 30.5328067,
            "lng": -7.9257522,
            "type": "poi",
            "category": "shower",
            "title": "Douche publique"
        },
        {
            "id": 30169,
            "lat": 47.0183291,
            "lng": 28.8085344,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 737,
            "lat": 45.4381336,
            "lng": 36.8883865,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 30170,
            "lat": 47.0191649,
            "lng": 28.8096411,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30849,
            "lat": 49.2489003,
            "lng": 11.0947037,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30850,
            "lat": 49.2485974,
            "lng": 11.0950135,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 38079,
            "lat": 44.4748764,
            "lng": -109.4094205,
            "type": "poi",
            "category": "caravan_site",
            "title": "Yellowstone Valley Inn"
        },
        {
            "id": 46019,
            "lat": 60.0264307,
            "lng": 5.8463926,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 49127,
            "lat": 36.6486389,
            "lng": 138.1866849,
            "type": "poi",
            "category": "shower",
            "title": "アルプス温泉"
        },
        {
            "id": 28058,
            "lat": 39.9063513,
            "lng": 8.5155829,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 49216,
            "lat": 37.1104798,
            "lng": 139.6157796,
            "type": "poi",
            "category": "shower",
            "title": "白樺の湯"
        },
        {
            "id": 49331,
            "lat": -4.2867616,
            "lng": 33.8852997,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15183,
            "lat": 52.4215446,
            "lng": 9.3729485,
            "type": "poi",
            "category": "caravan_site",
            "title": "Bokeloh"
        },
        {
            "id": 15184,
            "lat": 52.4368216,
            "lng": 9.3238817,
            "type": "poi",
            "category": "caravan_site",
            "title": "Stellplatz Hagenburg"
        },
        {
            "id": 43710,
            "lat": 46.1882762,
            "lng": -82.3873372,
            "type": "poi",
            "category": "caravan_site",
            "title": "Brennan Harbour RV Park"
        },
        {
            "id": 43711,
            "lat": 50.2818449,
            "lng": -65.5157807,
            "type": "poi",
            "category": "caravan_site",
            "title": "site van life"
        },
        {
            "id": 43713,
            "lat": 29.49455,
            "lng": 60.7963384,
            "type": "poi",
            "category": "caravan_site",
            "title": "غدیر جدید"
        },
        {
            "id": 49359,
            "lat": 29.6927269,
            "lng": -84.7882242,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48199,
            "lat": -21.0937996,
            "lng": 167.410765,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27748,
            "lat": 52.0166547,
            "lng": 4.3753284,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27749,
            "lat": 53.594588,
            "lng": 8.3581782,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30171,
            "lat": 48.094325,
            "lng": 16.6595833,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30562,
            "lat": 55.7552741,
            "lng": 27.9555091,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30851,
            "lat": 49.2483328,
            "lng": 11.0945522,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30852,
            "lat": 49.2485898,
            "lng": 11.0944878,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15197,
            "lat": 48.4179619,
            "lng": 9.9165815,
            "type": "poi",
            "category": "caravan_site",
            "title": "Wohnmobilstellplätze Blaustein"
        },
        {
            "id": 38133,
            "lat": 34.5643469,
            "lng": -79.9271641,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 43719,
            "lat": -2.262101,
            "lng": -78.1396917,
            "type": "poi",
            "category": "caravan_site",
            "title": "redondel vía riobamba"
        },
        {
            "id": 30747,
            "lat": 49.9241141,
            "lng": 14.2740053,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28483,
            "lat": 51.5104756,
            "lng": -0.0364541,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28485,
            "lat": 41.2650014,
            "lng": 1.985244,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30855,
            "lat": 44.6699366,
            "lng": 17.1579129,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28486,
            "lat": 36.5445595,
            "lng": 4.6095416,
            "type": "poi",
            "category": "shower",
            "title": "Hammam Benbournane"
        },
        {
            "id": 30176,
            "lat": 53.2338124,
            "lng": 16.6855889,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30177,
            "lat": 53.3054483,
            "lng": 12.7338554,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30178,
            "lat": 53.3087397,
            "lng": 12.7481536,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30697,
            "lat": 49.5748378,
            "lng": 10.6316158,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30698,
            "lat": 49.5748556,
            "lng": 10.6321801,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30699,
            "lat": 35.1530096,
            "lng": 24.4791797,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28302,
            "lat": 36.1009139,
            "lng": 0.4163638,
            "type": "poi",
            "category": "shower",
            "title": "Bain et Douche DJEBLI"
        },
        {
            "id": 30732,
            "lat": 48.9025117,
            "lng": 18.1239985,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30733,
            "lat": 48.9025255,
            "lng": 18.1239646,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30735,
            "lat": 43.9587556,
            "lng": 39.9302028,
            "type": "poi",
            "category": "shower",
            "title": "Летний душ"
        },
        {
            "id": 30746,
            "lat": 49.9235191,
            "lng": 14.2724559,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50372,
            "lat": 48.5365591,
            "lng": -123.0167188,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50373,
            "lat": 22.2836453,
            "lng": 114.1514602,
            "type": "poi",
            "category": "shower",
            "title": "Wa Hing Lane Public Bathhouse"
        },
        {
            "id": 28491,
            "lat": 48.6404569,
            "lng": -2.247903,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30856,
            "lat": 59.2818908,
            "lng": 18.0085647,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30199,
            "lat": 36.8523485,
            "lng": 30.8708353,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30200,
            "lat": 36.8523577,
            "lng": 30.870938,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30868,
            "lat": 45.8166213,
            "lng": 15.9850361,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30748,
            "lat": 54.1801936,
            "lng": 12.0870993,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30869,
            "lat": 45.8167612,
            "lng": 15.9850213,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30870,
            "lat": 54.1804212,
            "lng": 12.081324,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 43720,
            "lat": 56.004379,
            "lng": 83.8166478,
            "type": "poi",
            "category": "caravan_site",
            "title": "Местный пляж."
        },
        {
            "id": 43721,
            "lat": 56.0258835,
            "lng": 83.8194527,
            "type": "poi",
            "category": "caravan_site",
            "title": "Кемпинг, рыбалка для горожан"
        },
        {
            "id": 30871,
            "lat": 53.2244032,
            "lng": 13.281589,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 1340,
            "lat": 57.3057761,
            "lng": 33.1660789,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 30749,
            "lat": 56.6598914,
            "lng": 14.0755076,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 49981,
            "lat": 22.1147417,
            "lng": -81.1161897,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 49982,
            "lat": 38.5570692,
            "lng": -28.4295843,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30750,
            "lat": 34.9843104,
            "lng": 34.0058935,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15107,
            "lat": 51.1225384,
            "lng": -2.7806481,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 15108,
            "lat": 52.1272413,
            "lng": -4.6578245,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 37836,
            "lat": 56.0015165,
            "lng": -4.5923566,
            "type": "poi",
            "category": "caravan_site",
            "title": "Lomond Woods Holiday Park"
        },
        {
            "id": 28506,
            "lat": 47.6618191,
            "lng": 8.6167126,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50466,
            "lat": -38.3421958,
            "lng": 144.3189196,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30878,
            "lat": 58.1749092,
            "lng": 13.5221292,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50929,
            "lat": -14.7382485,
            "lng": 35.1719925,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52527,
            "lat": -28.0751661,
            "lng": -48.6270281,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52528,
            "lat": 16.1428494,
            "lng": 100.6190827,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 38144,
            "lat": 55.0628417,
            "lng": -114.0207258,
            "type": "poi",
            "category": "caravan_site",
            "title": "Mosquito Lake Resort"
        },
        {
            "id": 17615,
            "lat": 53.9594829,
            "lng": 14.1566761,
            "type": "poi",
            "category": "caravan_site",
            "title": "Stellplatz Blasendorff"
        },
        {
            "id": 15201,
            "lat": 42.1048395,
            "lng": 3.1583374,
            "type": "poi",
            "category": "caravan_site",
            "title": "Càmping Punta Milà"
        },
        {
            "id": 38147,
            "lat": 27.579573,
            "lng": 84.4939352,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 30198,
            "lat": 35.8919899,
            "lng": 27.7726818,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48264,
            "lat": 32.0749376,
            "lng": 34.7646865,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30201,
            "lat": 36.8529023,
            "lng": 30.8705661,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27773,
            "lat": 38.9769439,
            "lng": 1.302373,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30202,
            "lat": 47.6266496,
            "lng": 12.8708165,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28515,
            "lat": 41.0737307,
            "lng": 1.1396489,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28516,
            "lat": 41.0738591,
            "lng": 1.1388443,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28517,
            "lat": 41.0739696,
            "lng": 1.1380787,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28518,
            "lat": 41.07406,
            "lng": 1.1371386,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 37854,
            "lat": -34.0890957,
            "lng": 22.9762452,
            "type": "poi",
            "category": "caravan_site",
            "title": "Buffelsbaai Caravan park"
        },
        {
            "id": 30225,
            "lat": 47.7272663,
            "lng": 10.9668113,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30879,
            "lat": 60.8510776,
            "lng": 27.3243059,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28527,
            "lat": 53.0955833,
            "lng": 5.8441403,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30880,
            "lat": 54.9535995,
            "lng": 12.4660955,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30881,
            "lat": 43.5134047,
            "lng": 16.2488654,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50485,
            "lat": 61.3474715,
            "lng": 5.0717989,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30226,
            "lat": 47.5966485,
            "lng": 10.738362,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 17617,
            "lat": 50.6299215,
            "lng": 11.1074508,
            "type": "poi",
            "category": "caravan_site",
            "title": "Reisemobilstellplatz Barigauer Turm"
        },
        {
            "id": 30227,
            "lat": 47.5976202,
            "lng": 10.7368396,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30882,
            "lat": 43.421134,
            "lng": 25.251818,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30883,
            "lat": 45.6992649,
            "lng": 13.7255051,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2793,
            "lat": 52.6729181,
            "lng": 1.5862196,
            "type": "poi",
            "category": "campsite",
            "title": "Clippesby Hall"
        },
        {
            "id": 28334,
            "lat": 50.8361278,
            "lng": 0.4624038,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50000,
            "lat": 49.3245245,
            "lng": -124.2715853,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50001,
            "lat": 48.0941391,
            "lng": -122.7230903,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50002,
            "lat": 48.1386464,
            "lng": -122.7617331,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 38153,
            "lat": -32.4244695,
            "lng": 138.5320951,
            "type": "poi",
            "category": "caravan_site",
            "title": "Horseshoe View Caravan Park"
        },
        {
            "id": 38156,
            "lat": 32.7366132,
            "lng": -79.9928499,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 43726,
            "lat": 52.1125126,
            "lng": 72.5682349,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 43727,
            "lat": 55.1292884,
            "lng": 60.3474305,
            "type": "poi",
            "category": "caravan_site",
            "title": "Теренкуль"
        },
        {
            "id": 30753,
            "lat": 34.9903476,
            "lng": 33.9562297,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 43728,
            "lat": 51.9444237,
            "lng": 72.6164868,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 30223,
            "lat": 47.6912175,
            "lng": 11.1740429,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30224,
            "lat": 47.6933483,
            "lng": 11.1710792,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48294,
            "lat": 28.0068924,
            "lng": -16.6610953,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30754,
            "lat": 34.9908244,
            "lng": 33.9579864,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30756,
            "lat": 45.2927093,
            "lng": 13.5763129,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50930,
            "lat": -14.7383289,
            "lng": 35.1740686,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50935,
            "lat": -14.7388166,
            "lng": 35.1715768,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50945,
            "lat": -14.7412056,
            "lng": 35.1727355,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50952,
            "lat": 30.8588355,
            "lng": 75.8604238,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50953,
            "lat": 13.3894505,
            "lng": 103.8518356,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30935,
            "lat": 45.3485328,
            "lng": 14.3436985,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30939,
            "lat": 45.3518944,
            "lng": 14.3368656,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50969,
            "lat": -14.5794955,
            "lng": 35.1796491,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 17629,
            "lat": 59.9359949,
            "lng": 22.3970191,
            "type": "poi",
            "category": "caravan_site",
            "title": "Rantasalo"
        },
        {
            "id": 15205,
            "lat": 42.3344531,
            "lng": 3.1973514,
            "type": "poi",
            "category": "caravan_site",
            "title": "Càmping L'Arola"
        },
        {
            "id": 50511,
            "lat": 21.2784378,
            "lng": -89.706287,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30888,
            "lat": 65.0883063,
            "lng": 11.7385334,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50520,
            "lat": 26.5103764,
            "lng": 34.0679509,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30235,
            "lat": 47.5728526,
            "lng": 10.1937396,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28390,
            "lat": 38.5355721,
            "lng": -0.1517351,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28556,
            "lat": 41.7183692,
            "lng": -8.849941,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2777,
            "lat": 45.1862897,
            "lng": 5.0206289,
            "type": "poi",
            "category": "campsite",
            "title": "Les Pins"
        },
        {
            "id": 2778,
            "lat": 48.6369451,
            "lng": 7.4313197,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Municipal de Wasselonne ***"
        },
        {
            "id": 2779,
            "lat": 48.0883517,
            "lng": 8.249286,
            "type": "poi",
            "category": "campsite",
            "title": "Zeltlagerplatz Stöcklewald"
        },
        {
            "id": 2780,
            "lat": 52.7085632,
            "lng": 5.2860006,
            "type": "poi",
            "category": "campsite",
            "title": "De Vest"
        },
        {
            "id": 2781,
            "lat": 52.1098353,
            "lng": 8.3342732,
            "type": "poi",
            "category": "campsite",
            "title": "Campingplatz"
        },
        {
            "id": 2782,
            "lat": 48.5777234,
            "lng": 2.4833905,
            "type": "poi",
            "category": "campsite",
            "title": "Les Canadieres"
        },
        {
            "id": 2783,
            "lat": 48.9210641,
            "lng": 2.7215816,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 50537,
            "lat": 28.9313472,
            "lng": -13.6451023,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50538,
            "lat": 28.9313837,
            "lng": -13.6450621,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50561,
            "lat": 18.3305354,
            "lng": -65.3215992,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50563,
            "lat": 18.3322118,
            "lng": -65.3223018,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50578,
            "lat": -33.8388588,
            "lng": 151.2794977,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30236,
            "lat": 47.6303888,
            "lng": 10.2467147,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30239,
            "lat": 47.6744535,
            "lng": 10.3328636,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28384,
            "lat": 38.5348126,
            "lng": -0.1538524,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28386,
            "lat": 38.5350435,
            "lng": -0.1534749,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28388,
            "lat": 38.5352804,
            "lng": -0.1527588,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28391,
            "lat": 38.5360836,
            "lng": -0.15073,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28394,
            "lat": 38.5364384,
            "lng": -0.1484497,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30884,
            "lat": 55.9072654,
            "lng": 12.8084339,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28557,
            "lat": 36.1796599,
            "lng": 5.4607137,
            "type": "poi",
            "category": "shower",
            "title": "Douche de la mosquée"
        },
        {
            "id": 50140,
            "lat": -35.2429972,
            "lng": 149.4107218,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 37899,
            "lat": -27.6424325,
            "lng": 30.3383683,
            "type": "poi",
            "category": "caravan_site",
            "title": "Utrecht Country Club"
        },
        {
            "id": 15207,
            "lat": 50.3224034,
            "lng": 7.2284327,
            "type": "poi",
            "category": "caravan_site",
            "title": "Reisemobilstellplatz am Viehmarkt Mayen"
        },
        {
            "id": 15210,
            "lat": 52.5363685,
            "lng": -0.3382623,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 30797,
            "lat": 36.1989427,
            "lng": 29.6371535,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30802,
            "lat": 34.9737414,
            "lng": 34.0403168,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28577,
            "lat": 52.9357236,
            "lng": 5.9588685,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 43730,
            "lat": 44.3876521,
            "lng": 135.861709,
            "type": "poi",
            "category": "caravan_site",
            "title": "КЛОКОВО"
        },
        {
            "id": 50581,
            "lat": 44.5001226,
            "lng": -76.0402449,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 1341,
            "lat": 57.3094877,
            "lng": 33.1506116,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 19177,
            "lat": 38.5975923,
            "lng": 42.2771569,
            "type": "poi",
            "category": "caravan_site",
            "title": "The perfect overnight site"
        },
        {
            "id": 30257,
            "lat": 49.1600861,
            "lng": 12.8088122,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27794,
            "lat": 47.2420913,
            "lng": 9.9440853,
            "type": "poi",
            "category": "shower",
            "title": "Schwefelquelle"
        },
        {
            "id": 30258,
            "lat": 54.4737999,
            "lng": 10.0301811,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30259,
            "lat": 54.4745828,
            "lng": 10.0325341,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30260,
            "lat": 54.4752312,
            "lng": 10.0348559,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28397,
            "lat": 38.5367908,
            "lng": -0.1464147,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50582,
            "lat": 44.5013036,
            "lng": -76.0375725,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52533,
            "lat": 28.138323,
            "lng": -80.5801698,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28400,
            "lat": 38.5368613,
            "lng": -0.1450182,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28401,
            "lat": 38.53686,
            "lng": -0.1449483,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28403,
            "lat": 38.5369625,
            "lng": -0.1436234,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28413,
            "lat": 38.5366753,
            "lng": -0.1347635,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28422,
            "lat": 53.1240192,
            "lng": -3.9850995,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28461,
            "lat": 49.3940229,
            "lng": 8.8096504,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28462,
            "lat": 49.3941504,
            "lng": 8.8104283,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50638,
            "lat": -14.5779289,
            "lng": 35.1792504,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2989,
            "lat": 43.8900941,
            "lng": 2.9811631,
            "type": "poi",
            "category": "campsite",
            "title": "Champ de Mascourbe"
        },
        {
            "id": 50163,
            "lat": 33.6056515,
            "lng": -117.920869,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28430,
            "lat": 43.5522167,
            "lng": -6.9939202,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30809,
            "lat": 43.1963017,
            "lng": 11.1759854,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28448,
            "lat": 43.4638565,
            "lng": -1.5754008,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50258,
            "lat": 8.6660568,
            "lng": 97.6488914,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50259,
            "lat": 56.8998189,
            "lng": 45.0157582,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 17636,
            "lat": 54.6219581,
            "lng": 16.9863593,
            "type": "poi",
            "category": "caravan_site",
            "title": "Holidays"
        },
        {
            "id": 17637,
            "lat": 43.1412581,
            "lng": 13.1905653,
            "type": "poi",
            "category": "caravan_site",
            "title": "Valleverde"
        },
        {
            "id": 48397,
            "lat": -15.9512843,
            "lng": 128.381542,
            "type": "poi",
            "category": "shower",
            "title": "ablutions"
        },
        {
            "id": 48399,
            "lat": 29.7032534,
            "lng": -84.7620318,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27802,
            "lat": 54.2963943,
            "lng": 8.6205191,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27803,
            "lat": 54.7245025,
            "lng": 8.7017913,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50260,
            "lat": 31.9694683,
            "lng": 5.3099286,
            "type": "poi",
            "category": "shower",
            "title": "HAMMAM"
        },
        {
            "id": 48409,
            "lat": -29.4936535,
            "lng": -54.6897788,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48420,
            "lat": 42.4325292,
            "lng": -93.8043283,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27810,
            "lat": 48.597715,
            "lng": -4.5611196,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30288,
            "lat": 53.8956782,
            "lng": 10.7111423,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50261,
            "lat": 8.5975684,
            "lng": 98.5626597,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50286,
            "lat": -36.6780125,
            "lng": 149.8460521,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50294,
            "lat": -34.1449561,
            "lng": -59.845042,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50296,
            "lat": -33.8096045,
            "lng": 150.7641347,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50653,
            "lat": -14.6259658,
            "lng": 35.1809768,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52535,
            "lat": -1.3591395,
            "lng": -80.7375885,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48447,
            "lat": 36.1666439,
            "lng": -95.8670945,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30289,
            "lat": 56.0663199,
            "lng": 14.4549919,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15152,
            "lat": 45.5618416,
            "lng": 7.9571869,
            "type": "poi",
            "category": "caravan_site",
            "title": "Santuario di Graglia"
        },
        {
            "id": 48450,
            "lat": 34.7460979,
            "lng": 139.3542354,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28466,
            "lat": 49.3944714,
            "lng": 8.8096139,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28472,
            "lat": 51.4918247,
            "lng": 8.0828615,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15215,
            "lat": 53.4304773,
            "lng": 0.1417075,
            "type": "poi",
            "category": "caravan_site",
            "title": "Brickyard Fisheries"
        },
        {
            "id": 15216,
            "lat": 53.2656633,
            "lng": 0.0851808,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 38229,
            "lat": 38.4856904,
            "lng": -109.740275,
            "type": "poi",
            "category": "caravan_site",
            "title": "Site 13"
        },
        {
            "id": 28473,
            "lat": 49.4237687,
            "lng": 7.7529064,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50342,
            "lat": 12.1608707,
            "lng": -69.0041069,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28487,
            "lat": 36.7333982,
            "lng": 3.2797299,
            "type": "poi",
            "category": "shower",
            "title": "Douche Saide"
        },
        {
            "id": 50390,
            "lat": 41.5948741,
            "lng": -84.1518963,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50391,
            "lat": 41.5980315,
            "lng": -84.1526766,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 43735,
            "lat": 57.78589,
            "lng": 56.6358619,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 43738,
            "lat": -26.7453064,
            "lng": 27.5714533,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 16328,
            "lat": 47.6689229,
            "lng": -3.1775922,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 18868,
            "lat": 44.4010641,
            "lng": 33.9861848,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 16329,
            "lat": 43.0463732,
            "lng": -2.2120535,
            "type": "poi",
            "category": "caravan_site",
            "title": "Beasain"
        },
        {
            "id": 48437,
            "lat": 43.367959,
            "lng": -78.2290696,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48438,
            "lat": 43.3677893,
            "lng": -78.2325648,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48439,
            "lat": 43.3679336,
            "lng": -78.2307004,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48440,
            "lat": 43.3679962,
            "lng": -78.2342385,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28514,
            "lat": 51.5551062,
            "lng": -1.0829285,
            "type": "poi",
            "category": "shower",
            "title": "The Shower Block"
        },
        {
            "id": 28519,
            "lat": 41.0741707,
            "lng": 1.1361209,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50792,
            "lat": -14.3650557,
            "lng": 35.1686035,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50793,
            "lat": -14.3651402,
            "lng": 35.1681802,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50970,
            "lat": -14.5798434,
            "lng": 35.1796544,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50971,
            "lat": -14.5799368,
            "lng": 35.1801775,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50972,
            "lat": -14.5801053,
            "lng": 35.1797454,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2891,
            "lat": 40.3374951,
            "lng": -5.1781106,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 50973,
            "lat": -14.5804664,
            "lng": 35.1779539,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51021,
            "lat": -14.5866184,
            "lng": 35.1810787,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15217,
            "lat": 48.7236498,
            "lng": 9.6357495,
            "type": "poi",
            "category": "caravan_site",
            "title": "Wohnmobilstellplatz Rechberghausen"
        },
        {
            "id": 18871,
            "lat": 35.5382895,
            "lng": 35.7775754,
            "type": "poi",
            "category": "caravan_site",
            "title": "سانغام حمود"
        },
        {
            "id": 46189,
            "lat": 56.958862,
            "lng": 60.8178448,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 27816,
            "lat": 48.949661,
            "lng": 9.1236666,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48457,
            "lat": 41.8383368,
            "lng": -87.6067237,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48458,
            "lat": -36.8122588,
            "lng": 174.800731,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28520,
            "lat": 41.0742195,
            "lng": 1.1355957,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28521,
            "lat": 41.0661276,
            "lng": 1.152266,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28522,
            "lat": 41.0748302,
            "lng": 1.1306689,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28523,
            "lat": 41.0743609,
            "lng": 1.1339115,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28524,
            "lat": 41.0744601,
            "lng": 1.1198537,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28525,
            "lat": 41.0748247,
            "lng": 1.1225222,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50785,
            "lat": -14.467681,
            "lng": 35.2380691,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50789,
            "lat": -14.3647551,
            "lng": 35.1683091,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50790,
            "lat": -14.364988,
            "lng": 35.1680417,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50791,
            "lat": -14.3650475,
            "lng": 35.1679581,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50937,
            "lat": -14.7390397,
            "lng": 35.1719711,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50938,
            "lat": -14.7390501,
            "lng": 35.1726604,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28824,
            "lat": 41.3701646,
            "lng": 2.1889409,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 18882,
            "lat": 44.6163645,
            "lng": 33.7371004,
            "type": "poi",
            "category": "caravan_site",
            "title": "эко усадьба эски кермен"
        },
        {
            "id": 19538,
            "lat": 45.5588066,
            "lng": 15.5190602,
            "type": "poi",
            "category": "caravan_site",
            "title": "Two rivers"
        },
        {
            "id": 19541,
            "lat": 44.4331643,
            "lng": 28.7622992,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 48462,
            "lat": 6.723933,
            "lng": 80.076784,
            "type": "poi",
            "category": "shower",
            "title": "Public well"
        },
        {
            "id": 48463,
            "lat": -0.2468857,
            "lng": 35.7265764,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50978,
            "lat": -14.5811283,
            "lng": 35.1783375,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50981,
            "lat": -14.5812399,
            "lng": 35.1798422,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50982,
            "lat": -14.5813152,
            "lng": 35.1796383,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50983,
            "lat": -14.5814113,
            "lng": 35.1799092,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 17587,
            "lat": 53.6381487,
            "lng": 11.4077943,
            "type": "poi",
            "category": "caravan_site",
            "title": "Am Hauptbahnhof"
        },
        {
            "id": 17660,
            "lat": 60.0585881,
            "lng": 24.5635379,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 16336,
            "lat": 43.3366556,
            "lng": -1.1952626,
            "type": "poi",
            "category": "caravan_site",
            "title": "Aire de camping-cars de la Ferme Agerria"
        },
        {
            "id": 43767,
            "lat": 42.7183244,
            "lng": 79.4638078,
            "type": "poi",
            "category": "caravan_site",
            "title": "2500m camping"
        },
        {
            "id": 50664,
            "lat": -14.6268309,
            "lng": 35.1808826,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50794,
            "lat": -14.3652116,
            "lng": 35.1680237,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50984,
            "lat": -14.5814814,
            "lng": 35.1797349,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51004,
            "lat": -14.5826235,
            "lng": 35.1760174,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51005,
            "lat": -14.5826858,
            "lng": 35.1762158,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 43791,
            "lat": 42.8816461,
            "lng": 132.4346845,
            "type": "poi",
            "category": "caravan_site",
            "title": "Лагерь в лесу"
        },
        {
            "id": 43792,
            "lat": -35.0516548,
            "lng": 173.7027048,
            "type": "poi",
            "category": "caravan_site",
            "title": "Totara North Road Freedom Camping Area"
        },
        {
            "id": 43793,
            "lat": 41.297083,
            "lng": 69.7207072,
            "type": "poi",
            "category": "caravan_site",
            "title": "Шиномонтаж"
        },
        {
            "id": 19553,
            "lat": 35.4765004,
            "lng": 43.2455371,
            "type": "poi",
            "category": "caravan_site",
            "title": "Anwer Dhiaa"
        },
        {
            "id": 48466,
            "lat": -0.2482991,
            "lng": 35.7268959,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27818,
            "lat": 49.7912788,
            "lng": 9.2724623,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27819,
            "lat": 49.7912924,
            "lng": 9.2716602,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27820,
            "lat": 49.7916301,
            "lng": 9.271865,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51007,
            "lat": -14.5827481,
            "lng": 35.1747326,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51008,
            "lat": -14.5828364,
            "lng": 35.1799441,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51023,
            "lat": -14.5867482,
            "lng": 35.1807756,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51024,
            "lat": -14.5868222,
            "lng": 35.1802915,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51025,
            "lat": -14.5868598,
            "lng": 35.1789597,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51027,
            "lat": -14.586939,
            "lng": 35.1804028,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51030,
            "lat": -14.5871129,
            "lng": 35.1804698,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 38029,
            "lat": 8.84588,
            "lng": 40.00706,
            "type": "poi",
            "category": "caravan_site",
            "title": "Camp Site"
        },
        {
            "id": 38316,
            "lat": -42.4145511,
            "lng": 173.6776414,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 38317,
            "lat": -19.6456651,
            "lng": 134.19882,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 17665,
            "lat": 50.03655,
            "lng": 11.9934559,
            "type": "poi",
            "category": "caravan_site",
            "title": "Wohmobilparkplatz Wunsiedel"
        },
        {
            "id": 15415,
            "lat": 40.5711059,
            "lng": -8.4432995,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 15420,
            "lat": 45.3871771,
            "lng": 7.7577352,
            "type": "poi",
            "category": "caravan_site",
            "title": "Piazzale Villalfonsina"
        },
        {
            "id": 43782,
            "lat": 34.019953,
            "lng": -81.4372941,
            "type": "poi",
            "category": "caravan_site",
            "title": "Adams Towne White Oak RV & Boat Park"
        },
        {
            "id": 43784,
            "lat": 61.7691928,
            "lng": 4.8851542,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 43807,
            "lat": -30.9248734,
            "lng": -54.349522,
            "type": "poi",
            "category": "caravan_site",
            "title": "VIP DAY"
        },
        {
            "id": 51353,
            "lat": -14.9307628,
            "lng": 35.695793,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51354,
            "lat": -14.9308652,
            "lng": 35.6952119,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15174,
            "lat": 51.291836,
            "lng": -3.0096242,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 3482,
            "lat": 53.2542187,
            "lng": -3.9802724,
            "type": "poi",
            "category": "campsite",
            "title": "Platt's Farm"
        },
        {
            "id": 46311,
            "lat": 57.2682362,
            "lng": 60.2092972,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 30294,
            "lat": 44.6707072,
            "lng": 37.634846,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30295,
            "lat": 47.4902163,
            "lng": 42.2227915,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50665,
            "lat": -14.62694,
            "lng": 35.1809953,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50666,
            "lat": -14.6270007,
            "lng": 35.1809341,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50673,
            "lat": -14.6275959,
            "lng": 35.1806733,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51031,
            "lat": -14.5871648,
            "lng": 35.1809687,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51352,
            "lat": -14.9307071,
            "lng": 35.6894813,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51355,
            "lat": -14.9315604,
            "lng": 35.6953936,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51356,
            "lat": -14.9318092,
            "lng": 35.6941061,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51357,
            "lat": -15.0590277,
            "lng": 35.5126805,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51358,
            "lat": -15.0590426,
            "lng": 35.5126456,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50667,
            "lat": -14.6271137,
            "lng": 35.180666,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50668,
            "lat": -14.627123,
            "lng": 35.1819321,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50669,
            "lat": -14.6271643,
            "lng": 35.1806057,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52540,
            "lat": 32.9495096,
            "lng": -116.3035213,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 17667,
            "lat": 61.1931269,
            "lng": 23.7385315,
            "type": "poi",
            "category": "caravan_site",
            "title": "Pumppari Camping"
        },
        {
            "id": 43796,
            "lat": 37.6067447,
            "lng": -99.2992676,
            "type": "poi",
            "category": "caravan_site",
            "title": "Greensburg RV Park"
        },
        {
            "id": 18897,
            "lat": 43.7342652,
            "lng": 11.5564102,
            "type": "poi",
            "category": "caravan_site",
            "title": "Area Camper Vallombrosa"
        },
        {
            "id": 18898,
            "lat": 57.3295858,
            "lng": 32.7392724,
            "type": "poi",
            "category": "caravan_site",
            "title": "camping by the lake"
        },
        {
            "id": 43800,
            "lat": 56.5998924,
            "lng": 60.3412548,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 18901,
            "lat": 68.0258286,
            "lng": 24.645853,
            "type": "poi",
            "category": "caravan_site",
            "title": "Lohiranta"
        },
        {
            "id": 43805,
            "lat": -22.7187829,
            "lng": -45.5651671,
            "type": "poi",
            "category": "caravan_site",
            "title": "Estacionamento Motorhome Campos Jordao"
        },
        {
            "id": 50670,
            "lat": -14.6274471,
            "lng": 35.1804624,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50671,
            "lat": -14.6274611,
            "lng": 35.1806161,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50672,
            "lat": -14.6275476,
            "lng": 35.1806113,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 2991,
            "lat": 44.6480418,
            "lng": 5.057393,
            "type": "poi",
            "category": "campsite",
            "title": "La Briance"
        },
        {
            "id": 2992,
            "lat": 39.6497327,
            "lng": -0.483885,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 2993,
            "lat": 45.4362025,
            "lng": -1.0911765,
            "type": "poi",
            "category": "campsite",
            "title": "Camping les Familles"
        },
        {
            "id": 2994,
            "lat": 48.9398129,
            "lng": 7.029907,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Coer d'Alsace"
        },
        {
            "id": 2995,
            "lat": 45.6686862,
            "lng": 2.989015,
            "type": "poi",
            "category": "campsite",
            "title": "Camping et Chalet du Lac d'Aydat"
        },
        {
            "id": 2996,
            "lat": 49.8549674,
            "lng": 3.3091972,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Saint-Quentin"
        },
        {
            "id": 2997,
            "lat": 51.150952,
            "lng": 9.7917156,
            "type": "poi",
            "category": "campsite",
            "title": "Haus der Jugend"
        },
        {
            "id": 2998,
            "lat": 46.567965,
            "lng": 3.1170204,
            "type": "poi",
            "category": "campsite",
            "title": "Camping La Caille"
        },
        {
            "id": 2999,
            "lat": 36.6144619,
            "lng": -5.3422287,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Municipal Las Camaretas"
        },
        {
            "id": 3000,
            "lat": 50.5608565,
            "lng": 7.9987302,
            "type": "poi",
            "category": "campsite",
            "title": "Zum Katzenstein"
        },
        {
            "id": 3001,
            "lat": 47.5138174,
            "lng": -2.4351131,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Kernéjeune"
        },
        {
            "id": 3002,
            "lat": 49.1789747,
            "lng": 7.7430982,
            "type": "poi",
            "category": "campsite",
            "title": "Waldjugendzeltplatz Am Schafberg"
        },
        {
            "id": 3003,
            "lat": 48.7236101,
            "lng": -3.5712485,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal de Keravilin"
        },
        {
            "id": 3004,
            "lat": 46.2529069,
            "lng": 4.010851,
            "type": "poi",
            "category": "campsite",
            "title": "Aire naturelle d'Artaix"
        },
        {
            "id": 3005,
            "lat": 49.4395929,
            "lng": 5.719201,
            "type": "poi",
            "category": "campsite",
            "title": "Camping à la ferme"
        },
        {
            "id": 3006,
            "lat": 53.1141953,
            "lng": -4.1331365,
            "type": "poi",
            "category": "campsite",
            "title": "Llwyn Celyn bach"
        },
        {
            "id": 3007,
            "lat": 51.9097275,
            "lng": -3.4472508,
            "type": "poi",
            "category": "campsite",
            "title": "Cwm-llwch"
        },
        {
            "id": 3008,
            "lat": 45.0037812,
            "lng": -1.1348614,
            "type": "poi",
            "category": "campsite",
            "title": "L'Ermitage"
        },
        {
            "id": 3009,
            "lat": 48.9696706,
            "lng": 1.9595762,
            "type": "poi",
            "category": "campsite",
            "title": "Les Chesnets"
        },
        {
            "id": 3010,
            "lat": 37.9932811,
            "lng": -5.6710771,
            "type": "poi",
            "category": "campsite",
            "title": "Camping El Martinete"
        },
        {
            "id": 3011,
            "lat": 46.6826444,
            "lng": 2.7868416,
            "type": "poi",
            "category": "campsite",
            "title": "Camping des Écossais"
        },
        {
            "id": 48481,
            "lat": -34.3077688,
            "lng": 150.9345564,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50674,
            "lat": -14.6277423,
            "lng": 35.1802184,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51367,
            "lat": -15.0638046,
            "lng": 35.5072457,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15243,
            "lat": 52.0910231,
            "lng": -0.0102538,
            "type": "poi",
            "category": "caravan_site",
            "title": "Hawthorn Park"
        },
        {
            "id": 27827,
            "lat": 54.5308959,
            "lng": 8.873281,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50675,
            "lat": -14.6279301,
            "lng": 35.1805702,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28581,
            "lat": 47.5751646,
            "lng": 7.5832833,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3013,
            "lat": 51.1395254,
            "lng": 9.8682308,
            "type": "poi",
            "category": "campsite",
            "title": "Im Schemmerfeld"
        },
        {
            "id": 3014,
            "lat": 43.320379,
            "lng": -0.7621061,
            "type": "poi",
            "category": "campsite",
            "title": "Navarents"
        },
        {
            "id": 3015,
            "lat": 49.2411229,
            "lng": 9.9634734,
            "type": "poi",
            "category": "campsite",
            "title": "Sportjugendlager Karl-Hermann Müller"
        },
        {
            "id": 3016,
            "lat": 50.5369729,
            "lng": -4.5856813,
            "type": "poi",
            "category": "campsite",
            "title": "Colliford Tavern Camp Site"
        },
        {
            "id": 3017,
            "lat": 53.5736922,
            "lng": -1.5676589,
            "type": "poi",
            "category": "campsite",
            "title": "Cinderhill"
        },
        {
            "id": 3018,
            "lat": 53.0121012,
            "lng": 5.6250028,
            "type": "poi",
            "category": "campsite",
            "title": "Koekoek en de waard"
        },
        {
            "id": 3019,
            "lat": 52.9155854,
            "lng": 1.3214332,
            "type": "poi",
            "category": "campsite",
            "title": "Forest Park"
        },
        {
            "id": 3020,
            "lat": 43.017234,
            "lng": -0.9519514,
            "type": "poi",
            "category": "campsite",
            "title": "Ixtila"
        },
        {
            "id": 3021,
            "lat": 44.8505153,
            "lng": 2.2316848,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Les Bouleaux"
        },
        {
            "id": 3022,
            "lat": 44.9796358,
            "lng": 5.1637359,
            "type": "poi",
            "category": "campsite",
            "title": "La Combe d'Oyans"
        },
        {
            "id": 3023,
            "lat": 52.0240289,
            "lng": 1.0752171,
            "type": "poi",
            "category": "campsite",
            "title": "Tomcat Farm Caravan Services"
        },
        {
            "id": 3024,
            "lat": 44.3372095,
            "lng": 3.4764007,
            "type": "poi",
            "category": "campsite",
            "title": "Del Ron"
        },
        {
            "id": 3025,
            "lat": 44.1946712,
            "lng": 3.6577832,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal Bel Air"
        },
        {
            "id": 3026,
            "lat": 44.6369948,
            "lng": 4.9505336,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Gilles"
        },
        {
            "id": 3027,
            "lat": 50.2742298,
            "lng": -5.2378285,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3028,
            "lat": 50.1969482,
            "lng": -5.0794845,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3029,
            "lat": 43.9472368,
            "lng": 7.4158954,
            "type": "poi",
            "category": "campsite",
            "title": "Camping à la Ferme du Seuillet"
        },
        {
            "id": 3031,
            "lat": 42.5844267,
            "lng": 0.1701355,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3032,
            "lat": 52.831423,
            "lng": 1.4222778,
            "type": "poi",
            "category": "campsite",
            "title": "Stoney Brook"
        },
        {
            "id": 30905,
            "lat": 53.7209906,
            "lng": 14.2957934,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50715,
            "lat": -14.5457847,
            "lng": 35.1891099,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50716,
            "lat": -14.5458088,
            "lng": 35.1891944,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50717,
            "lat": -14.5458346,
            "lng": 35.1895739,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51606,
            "lat": -14.9036726,
            "lng": 35.6788427,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30300,
            "lat": 54.2602737,
            "lng": 13.4072795,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51607,
            "lat": -14.9986044,
            "lng": 35.5974844,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50722,
            "lat": -14.5461913,
            "lng": 35.1889289,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51037,
            "lat": -14.5873219,
            "lng": 35.1802298,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51047,
            "lat": -14.5877748,
            "lng": 35.1798301,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51048,
            "lat": -14.58778,
            "lng": 35.1795485,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51368,
            "lat": -15.0638893,
            "lng": 35.5066254,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51603,
            "lat": -14.9033339,
            "lng": 35.674921,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51608,
            "lat": -14.7863203,
            "lng": 35.7673771,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51604,
            "lat": -14.9034455,
            "lng": 35.6791307,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51627,
            "lat": -14.8232774,
            "lng": 35.7100658,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51716,
            "lat": -14.8757051,
            "lng": 35.6337306,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52542,
            "lat": -28.6340212,
            "lng": 153.5996769,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15192,
            "lat": 53.1742729,
            "lng": -3.8135558,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 17676,
            "lat": 63.080242,
            "lng": 15.4017336,
            "type": "poi",
            "category": "caravan_site",
            "title": "Small caravan park, electricity available."
        },
        {
            "id": 38354,
            "lat": 49.8481053,
            "lng": -124.5317617,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 38355,
            "lat": 34.0870009,
            "lng": -80.910382,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 43828,
            "lat": 51.6679978,
            "lng": 101.2023586,
            "type": "poi",
            "category": "caravan_site",
            "title": "конец сплава"
        },
        {
            "id": 16349,
            "lat": 47.2740444,
            "lng": 7.3777549,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 18907,
            "lat": 43.9248173,
            "lng": 42.7631799,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 30297,
            "lat": 48.0313007,
            "lng": 11.6017346,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30299,
            "lat": 48.0319024,
            "lng": 11.6025812,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48498,
            "lat": -31.9950215,
            "lng": 115.751347,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48499,
            "lat": 19.5475778,
            "lng": -71.7200253,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31013,
            "lat": 43.9578361,
            "lng": 15.4292889,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27830,
            "lat": 53.8895261,
            "lng": 8.6616105,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27831,
            "lat": 53.8905089,
            "lng": 8.6665861,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51057,
            "lat": -14.5881097,
            "lng": 35.1796786,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30943,
            "lat": 44.3911444,
            "lng": 38.3335438,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30946,
            "lat": 68.2040432,
            "lng": 18.1851466,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30947,
            "lat": 41.7053198,
            "lng": 12.3400786,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30948,
            "lat": 41.7053528,
            "lng": 12.3399921,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 38390,
            "lat": -28.6410757,
            "lng": 153.6115104,
            "type": "poi",
            "category": "caravan_site",
            "title": "First Sun"
        },
        {
            "id": 42978,
            "lat": 60.2741176,
            "lng": 6.2495774,
            "type": "poi",
            "category": "caravan_site",
            "title": "Jondal Båthamn"
        },
        {
            "id": 43850,
            "lat": 47.3812896,
            "lng": -91.9156014,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 43851,
            "lat": 47.3791564,
            "lng": -91.9177736,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 27832,
            "lat": 53.8913396,
            "lng": 8.6745635,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 18658,
            "lat": 37.009786,
            "lng": 15.2898467,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 43846,
            "lat": 55.8480279,
            "lng": 8.2837817,
            "type": "poi",
            "category": "caravan_site",
            "title": "Bork Havn Camping"
        },
        {
            "id": 16358,
            "lat": 46.1361031,
            "lng": 4.0110733,
            "type": "poi",
            "category": "caravan_site",
            "title": "Aire camping-cars Noailly"
        },
        {
            "id": 18910,
            "lat": 49.7682603,
            "lng": 11.3331371,
            "type": "poi",
            "category": "caravan_site",
            "title": "Wohnmobilstellplatz Pezoldstraße - Gößweinstein"
        },
        {
            "id": 27833,
            "lat": 43.5215721,
            "lng": 6.9412767,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50723,
            "lat": -14.5465258,
            "lng": 35.1881522,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28605,
            "lat": 52.2240871,
            "lng": 8.8386485,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28606,
            "lat": 52.5106971,
            "lng": 9.079763,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 38391,
            "lat": 43.4212168,
            "lng": -85.7876728,
            "type": "poi",
            "category": "caravan_site",
            "title": "Ed H. Henning Campground"
        },
        {
            "id": 38394,
            "lat": 39.0255788,
            "lng": -86.5217941,
            "type": "poi",
            "category": "caravan_site",
            "title": "Jellystone"
        },
        {
            "id": 18656,
            "lat": 56.0023417,
            "lng": 21.0755989,
            "type": "poi",
            "category": "caravan_site",
            "title": "OpaKopa"
        },
        {
            "id": 18657,
            "lat": 37.6993513,
            "lng": 15.0004001,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 50724,
            "lat": -14.5160286,
            "lng": 35.1959054,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50726,
            "lat": -14.5162354,
            "lng": 35.1957628,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51717,
            "lat": -14.9017857,
            "lng": 35.6548507,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51718,
            "lat": -14.9021797,
            "lng": 35.6555984,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51947,
            "lat": -11.0158222,
            "lng": 33.5884228,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 38423,
            "lat": -35.6055591,
            "lng": 138.1283229,
            "type": "poi",
            "category": "caravan_site",
            "title": "Cape Jervis Campsite"
        },
        {
            "id": 52101,
            "lat": -13.8927058,
            "lng": 34.5049778,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52154,
            "lat": -13.8822937,
            "lng": 34.5399647,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52155,
            "lat": -13.882359,
            "lng": 34.5397306,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3145,
            "lat": 52.3936687,
            "lng": -2.398218,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3902,
            "lat": 34.0357833,
            "lng": -6.8291333,
            "type": "poi",
            "category": "campsite",
            "title": "Camp De la Plage"
        },
        {
            "id": 52156,
            "lat": -13.8826189,
            "lng": 34.5381255,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52322,
            "lat": -13.9051481,
            "lng": 34.5441072,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52326,
            "lat": -13.9118797,
            "lng": 34.5456287,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52327,
            "lat": -13.9119122,
            "lng": 34.543083,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52328,
            "lat": -13.9119617,
            "lng": 34.5450702,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 18911,
            "lat": 64.4764245,
            "lng": 34.6630025,
            "type": "poi",
            "category": "caravan_site",
            "title": "Nord camping"
        },
        {
            "id": 46458,
            "lat": -39.4296721,
            "lng": 174.1469275,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 27836,
            "lat": 44.1814708,
            "lng": 8.3930579,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27837,
            "lat": 44.1814749,
            "lng": 8.3972665,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27838,
            "lat": 44.1728634,
            "lng": 8.3624405,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27839,
            "lat": 44.1731541,
            "lng": 8.3639859,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48514,
            "lat": 25.9127197,
            "lng": 34.4074117,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50773,
            "lat": -14.370862,
            "lng": 34.7842259,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30949,
            "lat": 54.0315429,
            "lng": 10.754776,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30950,
            "lat": 45.4440145,
            "lng": 12.458918,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30951,
            "lat": 45.4437702,
            "lng": 12.4587498,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30952,
            "lat": 45.4444912,
            "lng": 12.4584631,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30953,
            "lat": 45.4450409,
            "lng": 12.4582371,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51860,
            "lat": -15.0771122,
            "lng": 35.5059771,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52329,
            "lat": -13.9122162,
            "lng": 34.5433049,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52330,
            "lat": -13.9122832,
            "lng": 34.5458929,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31072,
            "lat": 43.4306715,
            "lng": 10.3929913,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 43878,
            "lat": 32.1579159,
            "lng": 34.9902063,
            "type": "poi",
            "category": "caravan_site",
            "title": "حامد"
        },
        {
            "id": 3139,
            "lat": 45.2014003,
            "lng": 2.1463527,
            "type": "poi",
            "category": "campsite",
            "title": "Camping d'Auriac"
        },
        {
            "id": 3140,
            "lat": 52.2781611,
            "lng": -4.1043546,
            "type": "poi",
            "category": "campsite",
            "title": "Outerbounds_Camping"
        },
        {
            "id": 3141,
            "lat": 53.2128311,
            "lng": 6.6633385,
            "type": "poi",
            "category": "campsite",
            "title": "Break Out Grunopark"
        },
        {
            "id": 3142,
            "lat": 53.7949122,
            "lng": -1.1260684,
            "type": "poi",
            "category": "campsite",
            "title": "Moss Hagg Farm Campsite"
        },
        {
            "id": 3143,
            "lat": 45.8775874,
            "lng": 0.8640618,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3144,
            "lat": 49.9288253,
            "lng": 9.1937404,
            "type": "poi",
            "category": "campsite",
            "title": "Jugendzeltplatz Wachenbachtal"
        },
        {
            "id": 1342,
            "lat": 57.3122875,
            "lng": 33.1413603,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 48516,
            "lat": 19.4361698,
            "lng": -72.199042,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27840,
            "lat": 43.5236804,
            "lng": 6.9433084,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30304,
            "lat": 45.3531298,
            "lng": 19.6236104,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 43879,
            "lat": 43.5596967,
            "lng": 133.3582422,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 50774,
            "lat": -14.3711011,
            "lng": 34.7807525,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30954,
            "lat": 45.4451273,
            "lng": 12.4582002,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30955,
            "lat": 45.4455768,
            "lng": 12.4580004,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30956,
            "lat": 45.4458144,
            "lng": 12.458162,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30957,
            "lat": 46.1219402,
            "lng": 34.8273961,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 38478,
            "lat": 33.9763891,
            "lng": -78.4980115,
            "type": "poi",
            "category": "caravan_site",
            "title": "Whispering Pines Nudist Resort"
        },
        {
            "id": 17707,
            "lat": 41.2409569,
            "lng": 22.7161909,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 18920,
            "lat": 40.9001975,
            "lng": 20.6988684,
            "type": "poi",
            "category": "caravan_site",
            "title": "Fabio"
        },
        {
            "id": 18921,
            "lat": 44.0695876,
            "lng": 41.4772355,
            "type": "poi",
            "category": "caravan_site",
            "title": "Оз.Рогожинское"
        },
        {
            "id": 43874,
            "lat": 29.152531,
            "lng": 46.3482295,
            "type": "poi",
            "category": "caravan_site",
            "title": "البرج الواقف"
        },
        {
            "id": 16365,
            "lat": 43.1832381,
            "lng": -8.3053061,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 16366,
            "lat": 46.7036388,
            "lng": 7.6309212,
            "type": "poi",
            "category": "caravan_site",
            "title": "Stellplatz Gwatt"
        },
        {
            "id": 46487,
            "lat": 38.0521158,
            "lng": -99.9605036,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 28852,
            "lat": 41.3952391,
            "lng": 2.2076997,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3147,
            "lat": 43.2502972,
            "lng": 3.3005353,
            "type": "poi",
            "category": "campsite",
            "title": "Marabouts"
        },
        {
            "id": 3148,
            "lat": 47.9639114,
            "lng": 9.9284775,
            "type": "poi",
            "category": "campsite",
            "title": "Freizeitplatz Truilz"
        },
        {
            "id": 3149,
            "lat": 50.7084318,
            "lng": -1.4103648,
            "type": "poi",
            "category": "campsite",
            "title": "Corf Camp (Scouts)"
        },
        {
            "id": 3151,
            "lat": 51.5704603,
            "lng": 5.7454088,
            "type": "poi",
            "category": "campsite",
            "title": "De Kastanjes"
        },
        {
            "id": 3152,
            "lat": 48.7207417,
            "lng": 3.7034716,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Municipal de Sézanne"
        },
        {
            "id": 3153,
            "lat": 39.2744782,
            "lng": -0.2777912,
            "type": "poi",
            "category": "campsite",
            "title": "San Pascual"
        },
        {
            "id": 3154,
            "lat": 39.2525781,
            "lng": -0.266226,
            "type": "poi",
            "category": "campsite",
            "title": "Les Palmeres"
        },
        {
            "id": 3155,
            "lat": 39.2419151,
            "lng": -0.2637348,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Barraquetes"
        },
        {
            "id": 3156,
            "lat": 37.6430775,
            "lng": -1.948046,
            "type": "poi",
            "category": "campsite",
            "title": "El Zorro"
        },
        {
            "id": 3157,
            "lat": 52.4106621,
            "lng": -2.248086,
            "type": "poi",
            "category": "campsite",
            "title": "Wolverley Camping and Caravanning Club Site"
        },
        {
            "id": 3158,
            "lat": 42.6031277,
            "lng": 2.3982632,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Bellevue"
        },
        {
            "id": 3159,
            "lat": 44.5211487,
            "lng": 5.0593774,
            "type": "poi",
            "category": "campsite",
            "title": "Domaine Provençal"
        },
        {
            "id": 3160,
            "lat": 50.6411279,
            "lng": -2.3784418,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3161,
            "lat": 53.3431857,
            "lng": 6.3058396,
            "type": "poi",
            "category": "campsite",
            "title": "'t Ol Gat"
        },
        {
            "id": 3162,
            "lat": 40.8318427,
            "lng": -0.8812225,
            "type": "poi",
            "category": "campsite",
            "title": "Camping \"Las Cabañas\""
        },
        {
            "id": 3163,
            "lat": 50.9087003,
            "lng": 0.4323292,
            "type": "poi",
            "category": "campsite",
            "title": "Battle Normanhurst Court"
        },
        {
            "id": 3164,
            "lat": 53.1590575,
            "lng": -1.3778935,
            "type": "poi",
            "category": "campsite",
            "title": "10 Acres Farm"
        },
        {
            "id": 3165,
            "lat": 43.8201648,
            "lng": 6.619951,
            "type": "poi",
            "category": "campsite",
            "title": "Centre Equestre la Grande Bastide"
        },
        {
            "id": 3166,
            "lat": 44.360297,
            "lng": 3.2303478,
            "type": "poi",
            "category": "campsite",
            "title": "Aire de camping naturelle du Bouquet"
        },
        {
            "id": 3167,
            "lat": 43.4213127,
            "lng": 6.3373866,
            "type": "poi",
            "category": "campsite",
            "title": "Domaine de la cigalière"
        },
        {
            "id": 3168,
            "lat": 41.9375704,
            "lng": -6.6169962,
            "type": "poi",
            "category": "campsite",
            "title": "Parque de Campismo"
        },
        {
            "id": 3169,
            "lat": 50.5749817,
            "lng": -4.8994987,
            "type": "poi",
            "category": "campsite",
            "title": "Southwinds"
        },
        {
            "id": 3170,
            "lat": 45.1587581,
            "lng": 0.27311,
            "type": "poi",
            "category": "campsite",
            "title": "Camping du Lac"
        },
        {
            "id": 50775,
            "lat": -14.3712518,
            "lng": 34.7833878,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52720,
            "lat": 28.8595074,
            "lng": -13.8159192,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50778,
            "lat": -14.4648864,
            "lng": 34.8444972,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3172,
            "lat": 48.8332846,
            "lng": -1.038351,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal"
        },
        {
            "id": 3173,
            "lat": 53.3567305,
            "lng": 6.3307481,
            "type": "poi",
            "category": "campsite",
            "title": "Mini-camping De Watergeuzen"
        },
        {
            "id": 3174,
            "lat": 50.7733513,
            "lng": -4.5628773,
            "type": "poi",
            "category": "campsite",
            "title": "Penhalt Farm Campsite"
        },
        {
            "id": 3175,
            "lat": 43.2396551,
            "lng": -1.2060968,
            "type": "poi",
            "category": "campsite",
            "title": "Ferme Etchemendigaraya"
        },
        {
            "id": 3176,
            "lat": 44.7101442,
            "lng": 2.3589046,
            "type": "poi",
            "category": "campsite",
            "title": "Municipal"
        },
        {
            "id": 3177,
            "lat": 50.7346826,
            "lng": -1.5520947,
            "type": "poi",
            "category": "campsite",
            "title": "Solent View"
        },
        {
            "id": 3178,
            "lat": 46.1475416,
            "lng": 1.3652178,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Municipal de Morterolles sur Semme"
        },
        {
            "id": 3179,
            "lat": 46.8453234,
            "lng": -1.489891,
            "type": "poi",
            "category": "campsite",
            "title": "Municipal Le Val de Boulogne"
        },
        {
            "id": 3180,
            "lat": 41.7400597,
            "lng": -8.1581147,
            "type": "poi",
            "category": "campsite",
            "title": "Parque de Campismo do Vidoeiro"
        },
        {
            "id": 3181,
            "lat": 46.2563208,
            "lng": 5.0767956,
            "type": "poi",
            "category": "campsite",
            "title": "La Ferme de Cornaton"
        },
        {
            "id": 3182,
            "lat": 50.0361903,
            "lng": 8.2062446,
            "type": "poi",
            "category": "campsite",
            "title": "Rettbergsaue Schierstein"
        },
        {
            "id": 3183,
            "lat": 40.1318388,
            "lng": -7.5118801,
            "type": "poi",
            "category": "campsite",
            "title": "Parque de Campismo do Fundão"
        },
        {
            "id": 3184,
            "lat": 44.9042921,
            "lng": 2.2049484,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3185,
            "lat": 44.526112,
            "lng": 1.71972,
            "type": "poi",
            "category": "campsite",
            "title": "Le Mas de Nadal"
        },
        {
            "id": 3186,
            "lat": 45.4073783,
            "lng": 1.4855056,
            "type": "poi",
            "category": "campsite",
            "title": "La Bonne Source"
        },
        {
            "id": 3187,
            "lat": 43.836311,
            "lng": 3.12284,
            "type": "poi",
            "category": "campsite",
            "title": "Le pas de Ceilhes"
        },
        {
            "id": 3188,
            "lat": 44.809261,
            "lng": 1.40737,
            "type": "poi",
            "category": "campsite",
            "title": "La Clairière"
        },
        {
            "id": 3189,
            "lat": 44.395512,
            "lng": 5.471,
            "type": "poi",
            "category": "campsite",
            "title": "Tamier"
        },
        {
            "id": 3190,
            "lat": 44.708823,
            "lng": 5.1317815,
            "type": "poi",
            "category": "campsite",
            "title": "Val Drôme Soleil"
        },
        {
            "id": 3191,
            "lat": 40.7090892,
            "lng": 9.7121863,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Salamaghe"
        },
        {
            "id": 3192,
            "lat": 43.2258891,
            "lng": 0.7891455,
            "type": "poi",
            "category": "campsite",
            "title": "Pré Fixe"
        },
        {
            "id": 3193,
            "lat": 48.1304816,
            "lng": 7.1621053,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Lefébure"
        },
        {
            "id": 3194,
            "lat": 52.9425423,
            "lng": 7.5806143,
            "type": "poi",
            "category": "campsite",
            "title": "Campingplatz Zum Naturpark"
        },
        {
            "id": 28613,
            "lat": 40.3878687,
            "lng": -3.7058451,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28614,
            "lat": 40.3879423,
            "lng": -3.7061395,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3197,
            "lat": 51.6075418,
            "lng": 9.4290828,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3198,
            "lat": 44.4107483,
            "lng": 0.2198909,
            "type": "poi",
            "category": "campsite",
            "title": "Aire naturelle Les Allées"
        },
        {
            "id": 3199,
            "lat": 50.703458,
            "lng": 3.4907296,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3200,
            "lat": 48.1161502,
            "lng": 1.5380954,
            "type": "poi",
            "category": "campsite",
            "title": "Camping A la ferme de Secouray"
        },
        {
            "id": 3201,
            "lat": 52.073578,
            "lng": 7.1792115,
            "type": "poi",
            "category": "campsite",
            "title": "Camping - Ferienhof Wenker"
        },
        {
            "id": 3202,
            "lat": 50.3358198,
            "lng": -4.5463031,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3203,
            "lat": 44.7508213,
            "lng": 5.3658197,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Justin"
        },
        {
            "id": 3204,
            "lat": 51.1670902,
            "lng": -3.9261321,
            "type": "poi",
            "category": "campsite",
            "title": "Westland Farm"
        },
        {
            "id": 3205,
            "lat": 51.1600907,
            "lng": -4.1925862,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3206,
            "lat": 54.1455517,
            "lng": -2.2938364,
            "type": "poi",
            "category": "campsite",
            "title": "Holme Farm"
        },
        {
            "id": 3207,
            "lat": 51.4009364,
            "lng": 5.673339,
            "type": "poi",
            "category": "campsite",
            "title": "Somerense Vennen"
        },
        {
            "id": 3208,
            "lat": 50.3824992,
            "lng": -4.6505865,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3210,
            "lat": 43.1923354,
            "lng": 1.4570496,
            "type": "poi",
            "category": "campsite",
            "title": "Le Bourdieu"
        },
        {
            "id": 3211,
            "lat": 43.0444426,
            "lng": 6.1462983,
            "type": "poi",
            "category": "campsite",
            "title": "La Bergerie"
        },
        {
            "id": 3212,
            "lat": 48.8558772,
            "lng": 9.2337816,
            "type": "poi",
            "category": "campsite",
            "title": "Sonnenhof"
        },
        {
            "id": 3213,
            "lat": 39.4009719,
            "lng": -7.4864973,
            "type": "poi",
            "category": "campsite",
            "title": "Quinta do Pomarinho"
        },
        {
            "id": 3214,
            "lat": 52.8287245,
            "lng": 4.7906776,
            "type": "poi",
            "category": "campsite",
            "title": "'t Bullekroffie"
        },
        {
            "id": 3215,
            "lat": 50.7261466,
            "lng": 6.0384534,
            "type": "poi",
            "category": "campsite",
            "title": "Jugendgruppenzeltplatz Aachen"
        },
        {
            "id": 3216,
            "lat": 54.5336764,
            "lng": -2.677181,
            "type": "poi",
            "category": "campsite",
            "title": "New Ing Lodge Camping"
        },
        {
            "id": 3217,
            "lat": 52.1661788,
            "lng": 4.9492728,
            "type": "poi",
            "category": "campsite",
            "title": "Onder de panne"
        },
        {
            "id": 3218,
            "lat": 45.6778557,
            "lng": 5.4649838,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal"
        },
        {
            "id": 3219,
            "lat": 52.7414164,
            "lng": -1.0078329,
            "type": "poi",
            "category": "campsite",
            "title": "Birchcanoes.com"
        },
        {
            "id": 3220,
            "lat": 52.3131294,
            "lng": 5.5727783,
            "type": "poi",
            "category": "campsite",
            "title": "De Berkebomen"
        },
        {
            "id": 50779,
            "lat": -14.4650266,
            "lng": 34.8444932,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 17713,
            "lat": 68.8161247,
            "lng": 15.154021,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 30308,
            "lat": 42.7794339,
            "lng": 10.805655,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30908,
            "lat": 38.3945708,
            "lng": 23.7639681,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28615,
            "lat": 40.3880051,
            "lng": -3.7058042,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3223,
            "lat": 46.9395739,
            "lng": 8.0073427,
            "type": "poi",
            "category": "campsite",
            "title": "Campingplatz Gasthaus Bad"
        },
        {
            "id": 3224,
            "lat": 52.5077856,
            "lng": 6.3602835,
            "type": "poi",
            "category": "campsite",
            "title": "Landgoed Vilsteren"
        },
        {
            "id": 3225,
            "lat": 41.9965861,
            "lng": 9.4434373,
            "type": "poi",
            "category": "campsite",
            "title": "Arinella Bianca"
        },
        {
            "id": 3226,
            "lat": 52.9069239,
            "lng": 5.461288,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Venema"
        },
        {
            "id": 3227,
            "lat": 43.996208,
            "lng": 2.5602153,
            "type": "poi",
            "category": "campsite",
            "title": "Les Chalets du Tarn"
        },
        {
            "id": 3228,
            "lat": 51.2141693,
            "lng": -4.0665472,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3229,
            "lat": 43.0136387,
            "lng": 1.9720477,
            "type": "poi",
            "category": "campsite",
            "title": "Camping La Besse"
        },
        {
            "id": 3230,
            "lat": 39.440953,
            "lng": 8.4229735,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Ortus de Mari"
        },
        {
            "id": 3231,
            "lat": 38.4683932,
            "lng": -9.1758891,
            "type": "poi",
            "category": "campsite",
            "title": "Parque de Campismo dos Fetáis"
        },
        {
            "id": 3232,
            "lat": 46.6605054,
            "lng": -1.0655577,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3233,
            "lat": 50.3009,
            "lng": -4.85781,
            "type": "poi",
            "category": "campsite",
            "title": "Meadow Lakes Holiday Park"
        },
        {
            "id": 3234,
            "lat": 54.30968,
            "lng": -1.70713,
            "type": "poi",
            "category": "campsite",
            "title": "Akebar Park"
        },
        {
            "id": 3235,
            "lat": 51.7538784,
            "lng": -2.3401521,
            "type": "poi",
            "category": "campsite",
            "title": "Apple Tree Park"
        },
        {
            "id": 3236,
            "lat": 52.01033,
            "lng": -1.30052,
            "type": "poi",
            "category": "campsite",
            "title": "Bo Peep Caravan Park"
        },
        {
            "id": 3237,
            "lat": 52.5690978,
            "lng": 1.3258764,
            "type": "poi",
            "category": "campsite",
            "title": "Broadland Sun Association Naturist Campsite"
        },
        {
            "id": 3238,
            "lat": 50.16925,
            "lng": -5.36358,
            "type": "poi",
            "category": "campsite",
            "title": "Calloose Caravan Park"
        },
        {
            "id": 3239,
            "lat": 50.22541,
            "lng": -5.07993,
            "type": "poi",
            "category": "campsite",
            "title": "Carnon Downs C. & C. Park"
        },
        {
            "id": 3240,
            "lat": 54.47858,
            "lng": -7.73088,
            "type": "poi",
            "category": "campsite",
            "title": "Castle Archdale"
        },
        {
            "id": 3241,
            "lat": 54.891254,
            "lng": -4.3791756,
            "type": "poi",
            "category": "campsite",
            "title": "Castle Cary Holiday Park"
        },
        {
            "id": 3242,
            "lat": 52.04996,
            "lng": -4.53158,
            "type": "poi",
            "category": "campsite",
            "title": "Cenarth Falls Holiday Park"
        },
        {
            "id": 3243,
            "lat": 50.71452,
            "lng": -4.33369,
            "type": "poi",
            "category": "campsite",
            "title": "Chapmanswell Car Park"
        },
        {
            "id": 3244,
            "lat": 50.7885104,
            "lng": -2.0151242,
            "type": "poi",
            "category": "campsite",
            "title": "Charris Car.& Camp. Park"
        },
        {
            "id": 3245,
            "lat": 51.8929169,
            "lng": 0.8616073,
            "type": "poi",
            "category": "campsite",
            "title": "Colchester Country Park"
        },
        {
            "id": 3246,
            "lat": 51.2924269,
            "lng": 0.6110918,
            "type": "poi",
            "category": "campsite",
            "title": "Coldblow Farm"
        },
        {
            "id": 3278,
            "lat": 50.7288,
            "lng": -3.71774,
            "type": "poi",
            "category": "campsite",
            "title": "Springfield Holiday Park"
        },
        {
            "id": 28616,
            "lat": 40.3880669,
            "lng": -3.7060839,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50787,
            "lat": -14.3637159,
            "lng": 35.1689159,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50788,
            "lat": -14.3640924,
            "lng": 35.1654218,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3248,
            "lat": 52.8545341,
            "lng": 1.29173,
            "type": "poi",
            "category": "campsite",
            "title": "Deer's Glade Car. & Camp. Park"
        },
        {
            "id": 3250,
            "lat": 51.0884961,
            "lng": -3.5390245,
            "type": "poi",
            "category": "campsite",
            "title": "Exe Valley Caravan Site"
        },
        {
            "id": 3251,
            "lat": 51.99838,
            "lng": -4.94312,
            "type": "poi",
            "category": "campsite",
            "title": "Fishguard Bay Caravan and Camping Park"
        },
        {
            "id": 3252,
            "lat": 51.7912929,
            "lng": -2.7336436,
            "type": "poi",
            "category": "campsite",
            "title": "Glen Trothy C. & C. Park"
        },
        {
            "id": 3253,
            "lat": 51.1464994,
            "lng": -3.9197502,
            "type": "poi",
            "category": "campsite",
            "title": "Greenacres Touring Caravan Park"
        },
        {
            "id": 3254,
            "lat": 52.0484329,
            "lng": -0.7321416,
            "type": "poi",
            "category": "campsite",
            "title": "Gulliver's Meadow Camp Site"
        },
        {
            "id": 3255,
            "lat": 50.77897,
            "lng": -1.72728,
            "type": "poi",
            "category": "campsite",
            "title": "Harrow Wood Farm Car. Park"
        },
        {
            "id": 3256,
            "lat": 53.40944,
            "lng": -2.46428,
            "type": "poi",
            "category": "campsite",
            "title": "Holly Bank Caravan Park"
        },
        {
            "id": 3257,
            "lat": 54.02934,
            "lng": -1.90315,
            "type": "poi",
            "category": "campsite",
            "title": "Howgill Lodge"
        },
        {
            "id": 3258,
            "lat": 52.7206588,
            "lng": 0.4360165,
            "type": "poi",
            "category": "campsite",
            "title": "King's Lynn Caravan and Camping Park"
        },
        {
            "id": 3259,
            "lat": 51.7225918,
            "lng": -1.4266301,
            "type": "poi",
            "category": "campsite",
            "title": "Lincoln Farm Park"
        },
        {
            "id": 3260,
            "lat": 51.16681,
            "lng": -0.04273,
            "type": "poi",
            "category": "campsite",
            "title": "Long Acres Caravan & Camping"
        },
        {
            "id": 3261,
            "lat": 50.08802,
            "lng": -5.65286,
            "type": "poi",
            "category": "campsite",
            "title": "Lower Treave"
        },
        {
            "id": 3262,
            "lat": 54.64667,
            "lng": -2.73861,
            "type": "poi",
            "category": "campsite",
            "title": "Lowther Holiday Park"
        },
        {
            "id": 3263,
            "lat": 53.37931,
            "lng": -0.31493,
            "type": "poi",
            "category": "campsite",
            "title": "Market Rasen Racecourse"
        },
        {
            "id": 3264,
            "lat": 50.7858681,
            "lng": -1.9854489,
            "type": "poi",
            "category": "campsite",
            "title": "Merley Court Touring Park"
        },
        {
            "id": 3265,
            "lat": 52.57708,
            "lng": -2.64519,
            "type": "poi",
            "category": "campsite",
            "title": "Mill Farm Caravan Park"
        },
        {
            "id": 3266,
            "lat": 51.71074,
            "lng": -4.72998,
            "type": "poi",
            "category": "campsite",
            "title": "Moreton Farm Leisure Park"
        },
        {
            "id": 3267,
            "lat": 51.89825,
            "lng": -2.96889,
            "type": "poi",
            "category": "campsite",
            "title": "Pandy Caravan Club Site"
        },
        {
            "id": 3268,
            "lat": 52.73292,
            "lng": 0.14697,
            "type": "poi",
            "category": "campsite",
            "title": "Parklands"
        },
        {
            "id": 3269,
            "lat": 50.34076,
            "lng": -5.10625,
            "type": "poi",
            "category": "campsite",
            "title": "Penrose Holiday Park"
        },
        {
            "id": 3270,
            "lat": 50.3453423,
            "lng": -5.1407979,
            "type": "poi",
            "category": "campsite",
            "title": "Perranporth Cp & Touring Park"
        },
        {
            "id": 3271,
            "lat": 50.37728,
            "lng": -4.41818,
            "type": "poi",
            "category": "campsite",
            "title": "Polborder House Car. & Cp. Park"
        },
        {
            "id": 3272,
            "lat": 50.19622,
            "lng": -5.49142,
            "type": "poi",
            "category": "campsite",
            "title": "Polmanter Tourist Park"
        },
        {
            "id": 3273,
            "lat": 51.1077,
            "lng": -3.22674,
            "type": "poi",
            "category": "campsite",
            "title": "Quantock Orchard Caravan Park"
        },
        {
            "id": 3274,
            "lat": 50.7437066,
            "lng": -2.2239699,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3275,
            "lat": 52.68002,
            "lng": 1.69777,
            "type": "poi",
            "category": "campsite",
            "title": "Scratby Hall Caravan Park"
        },
        {
            "id": 3276,
            "lat": 50.82147,
            "lng": -1.85364,
            "type": "poi",
            "category": "campsite",
            "title": "Shamba Holidays"
        },
        {
            "id": 3277,
            "lat": 50.42245,
            "lng": -4.93489,
            "type": "poi",
            "category": "campsite",
            "title": "Southleigh Manor Holiday Park"
        },
        {
            "id": 1343,
            "lat": 57.3228517,
            "lng": 33.1125366,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 9102,
            "lat": 46.3758683,
            "lng": 6.6167574,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 3280,
            "lat": 52.1829657,
            "lng": -1.7284692,
            "type": "poi",
            "category": "campsite",
            "title": "Stratford Touring Park"
        },
        {
            "id": 3281,
            "lat": 50.2911,
            "lng": -5.08812,
            "type": "poi",
            "category": "campsite",
            "title": "Summer Valley Tour. Park"
        },
        {
            "id": 3282,
            "lat": 50.24488,
            "lng": -5.25314,
            "type": "poi",
            "category": "campsite",
            "title": "Tehidy Holiday Park"
        },
        {
            "id": 3283,
            "lat": 50.8407637,
            "lng": -2.1942387,
            "type": "poi",
            "category": "campsite",
            "title": "The Inside Park"
        },
        {
            "id": 3284,
            "lat": 52.2177423,
            "lng": -2.8883936,
            "type": "poi",
            "category": "campsite",
            "title": "Townsend Touring Park"
        },
        {
            "id": 3285,
            "lat": 51.69288,
            "lng": -4.75722,
            "type": "poi",
            "category": "campsite",
            "title": "Trefalun Park"
        },
        {
            "id": 3286,
            "lat": 50.4215251,
            "lng": -4.9421143,
            "type": "poi",
            "category": "campsite",
            "title": "Trekenning Tourist Park"
        },
        {
            "id": 3288,
            "lat": 50.448702,
            "lng": -5.0276163,
            "type": "poi",
            "category": "campsite",
            "title": "Watergate Bay Touring Park"
        },
        {
            "id": 3289,
            "lat": 51.01556,
            "lng": -3.3525,
            "type": "poi",
            "category": "campsite",
            "title": "Waterrow Touring Park"
        },
        {
            "id": 3290,
            "lat": 50.81676,
            "lng": -1.99024,
            "type": "poi",
            "category": "campsite",
            "title": "Wilksworth Farm C.P."
        },
        {
            "id": 3291,
            "lat": 52.0170506,
            "lng": 0.7471137,
            "type": "poi",
            "category": "campsite",
            "title": "Willowmere Camp. Park"
        },
        {
            "id": 3292,
            "lat": 54.5462996,
            "lng": -1.7849113,
            "type": "poi",
            "category": "campsite",
            "title": "Winston Caravan Park"
        },
        {
            "id": 3293,
            "lat": 53.1629509,
            "lng": -0.2199212,
            "type": "poi",
            "category": "campsite",
            "title": "Woodhall Country Park"
        },
        {
            "id": 3294,
            "lat": 54.1385363,
            "lng": -1.6308158,
            "type": "poi",
            "category": "campsite",
            "title": "Woodhouse Farm"
        },
        {
            "id": 3295,
            "lat": 51.00436,
            "lng": -3.6247,
            "type": "poi",
            "category": "campsite",
            "title": "Zeacombe House Car.Park"
        },
        {
            "id": 3296,
            "lat": 53.2390311,
            "lng": -3.8372563,
            "type": "poi",
            "category": "campsite",
            "title": "Cae Wennol Yurts"
        },
        {
            "id": 3297,
            "lat": 44.0860982,
            "lng": 3.6844601,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3298,
            "lat": 52.853786,
            "lng": 5.5200678,
            "type": "poi",
            "category": "campsite",
            "title": "Minicamping Heechhiem"
        },
        {
            "id": 3299,
            "lat": 51.8120703,
            "lng": 5.658965,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3300,
            "lat": 44.850212,
            "lng": 1.5136387,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3301,
            "lat": 49.6872607,
            "lng": 8.4017283,
            "type": "poi",
            "category": "campsite",
            "title": "Campingplatz am Tamburinsee"
        },
        {
            "id": 3302,
            "lat": 46.5789376,
            "lng": 4.4480569,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3303,
            "lat": 52.542286,
            "lng": 6.3014711,
            "type": "poi",
            "category": "campsite",
            "title": "boerderijcamping 't Slag"
        },
        {
            "id": 3304,
            "lat": 50.4038323,
            "lng": -5.1068612,
            "type": "poi",
            "category": "campsite",
            "title": "Quarryfield Campsite"
        },
        {
            "id": 3305,
            "lat": 44.913188,
            "lng": 2.24641,
            "type": "poi",
            "category": "campsite",
            "title": "Camping du Puech des Ouilhes"
        },
        {
            "id": 3306,
            "lat": 38.8810622,
            "lng": -3.6957884,
            "type": "poi",
            "category": "campsite",
            "title": "Los Arenales"
        },
        {
            "id": 3307,
            "lat": 46.259936,
            "lng": 1.886976,
            "type": "poi",
            "category": "campsite",
            "title": "Le Péchadoire"
        },
        {
            "id": 3308,
            "lat": 42.4104516,
            "lng": 9.5334707,
            "type": "poi",
            "category": "campsite",
            "title": "Miami Plage"
        },
        {
            "id": 3309,
            "lat": 44.485583,
            "lng": 5.3767051,
            "type": "poi",
            "category": "campsite",
            "title": "Le Moulin"
        },
        {
            "id": 3310,
            "lat": 36.6126647,
            "lng": 2.2309216,
            "type": "poi",
            "category": "campsite",
            "title": "Oued El Bellaa"
        },
        {
            "id": 3311,
            "lat": 46.5442682,
            "lng": -1.6912498,
            "type": "poi",
            "category": "campsite",
            "title": "Camping \"Au pré de l'Étang\""
        },
        {
            "id": 3361,
            "lat": 44.1657777,
            "lng": 1.5451727,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal La Piboulette"
        },
        {
            "id": 27843,
            "lat": 51.4055828,
            "lng": 7.4560282,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30959,
            "lat": 41.960546,
            "lng": 12.4793019,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3313,
            "lat": 50.2913098,
            "lng": 8.0326266,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3314,
            "lat": 52.5895599,
            "lng": -0.4058546,
            "type": "poi",
            "category": "campsite",
            "title": "Sacrewell Farm"
        },
        {
            "id": 3315,
            "lat": 50.092131,
            "lng": 5.1696279,
            "type": "poi",
            "category": "campsite",
            "title": "Les Brullins"
        },
        {
            "id": 3316,
            "lat": 46.3366778,
            "lng": 4.3847111,
            "type": "poi",
            "category": "campsite",
            "title": "Château de Montrouant"
        },
        {
            "id": 3317,
            "lat": 52.2506743,
            "lng": 7.0288111,
            "type": "poi",
            "category": "campsite",
            "title": "Erve Beernink"
        },
        {
            "id": 3318,
            "lat": 48.0901096,
            "lng": -2.2546657,
            "type": "poi",
            "category": "campsite",
            "title": "Point Accueil Jeunes"
        },
        {
            "id": 3319,
            "lat": 42.7421059,
            "lng": 0.307851,
            "type": "poi",
            "category": "campsite",
            "title": "Aire de Bivouac"
        },
        {
            "id": 3320,
            "lat": 42.7089354,
            "lng": 0.2950261,
            "type": "poi",
            "category": "campsite",
            "title": "Aire de Bivouac de l'Hospice du Rioumajou"
        },
        {
            "id": 3321,
            "lat": 43.4977076,
            "lng": 3.0276111,
            "type": "poi",
            "category": "campsite",
            "title": "Camping CAMPOTEL \"Le Nice\""
        },
        {
            "id": 3322,
            "lat": 41.1304758,
            "lng": 1.3035907,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Las Palmeras"
        },
        {
            "id": 3323,
            "lat": 48.0810108,
            "lng": -2.1102693,
            "type": "poi",
            "category": "campsite",
            "title": "Camping La Marette"
        },
        {
            "id": 3324,
            "lat": 44.4172124,
            "lng": 4.9091792,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Grignan"
        },
        {
            "id": 3325,
            "lat": 48.2312058,
            "lng": 9.6760143,
            "type": "poi",
            "category": "campsite",
            "title": "Biolandhof Walter"
        },
        {
            "id": 3326,
            "lat": 52.1941613,
            "lng": 5.4405912,
            "type": "poi",
            "category": "campsite",
            "title": "Overbos"
        },
        {
            "id": 3327,
            "lat": 47.0723239,
            "lng": 5.2007269,
            "type": "poi",
            "category": "campsite",
            "title": "Aire de Loisirs"
        },
        {
            "id": 3328,
            "lat": 44.9011841,
            "lng": 1.5695236,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Le Pic"
        },
        {
            "id": 3329,
            "lat": 46.1738923,
            "lng": 7.0352381,
            "type": "poi",
            "category": "campsite",
            "title": "Camping La Châtaigneraie"
        },
        {
            "id": 3330,
            "lat": 44.0893167,
            "lng": 3.5471158,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de l'Espérou"
        },
        {
            "id": 3331,
            "lat": 43.9733172,
            "lng": 3.5880181,
            "type": "poi",
            "category": "campsite",
            "title": "La Tessonne"
        },
        {
            "id": 3333,
            "lat": 44.82873,
            "lng": 0.0364931,
            "type": "poi",
            "category": "campsite",
            "title": "Lo Qualh"
        },
        {
            "id": 3334,
            "lat": 47.323242,
            "lng": 4.3308123,
            "type": "poi",
            "category": "campsite",
            "title": "Camping \"le Village\""
        },
        {
            "id": 3335,
            "lat": 44.5841586,
            "lng": 5.1360755,
            "type": "poi",
            "category": "campsite",
            "title": "Le gap des tortelles"
        },
        {
            "id": 3336,
            "lat": 45.4040377,
            "lng": 2.6659844,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal Les bruyères"
        },
        {
            "id": 30316,
            "lat": 54.4284462,
            "lng": 10.3617208,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3338,
            "lat": 45.8530093,
            "lng": 1.9620878,
            "type": "poi",
            "category": "campsite",
            "title": "Aire naturelle de camping de Pelletonges"
        },
        {
            "id": 3339,
            "lat": 48.7982479,
            "lng": 3.2152224,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Le Moulin des Prés"
        },
        {
            "id": 3340,
            "lat": 46.3872387,
            "lng": 1.5231087,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal de Saint-Sébastien"
        },
        {
            "id": 3341,
            "lat": 42.9217384,
            "lng": -5.961397,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Rio Luna"
        },
        {
            "id": 3342,
            "lat": 43.1206298,
            "lng": -0.733422,
            "type": "poi",
            "category": "campsite",
            "title": "Aramits"
        },
        {
            "id": 3343,
            "lat": 44.2729706,
            "lng": 6.3059742,
            "type": "poi",
            "category": "campsite",
            "title": "Les Pinées (fermé)"
        },
        {
            "id": 3344,
            "lat": 36.9199834,
            "lng": -4.8042406,
            "type": "poi",
            "category": "campsite",
            "title": "Parque Ardales Zona 1"
        },
        {
            "id": 3345,
            "lat": 43.0057768,
            "lng": 1.7300892,
            "type": "poi",
            "category": "campsite",
            "title": "Camping à la ferme"
        },
        {
            "id": 3346,
            "lat": 44.0085221,
            "lng": -0.8926791,
            "type": "poi",
            "category": "campsite",
            "title": "Camping le Clavé"
        },
        {
            "id": 3347,
            "lat": 44.8756221,
            "lng": 1.5738103,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Les Borgnes"
        },
        {
            "id": 3348,
            "lat": 38.4943474,
            "lng": -9.0045514,
            "type": "poi",
            "category": "campsite",
            "title": "Parque de Campismo Picheleiros"
        },
        {
            "id": 3349,
            "lat": 51.9915445,
            "lng": -1.3737122,
            "type": "poi",
            "category": "campsite",
            "title": "Cheyney Manor House Campsite"
        },
        {
            "id": 3350,
            "lat": 44.178731,
            "lng": 3.7516527,
            "type": "poi",
            "category": "campsite",
            "title": "Lou Treillat"
        },
        {
            "id": 3351,
            "lat": 42.8937616,
            "lng": 1.7933163,
            "type": "poi",
            "category": "campsite",
            "title": "La Fount de Sicre"
        },
        {
            "id": 3352,
            "lat": 43.0311979,
            "lng": 1.9374986,
            "type": "poi",
            "category": "campsite",
            "title": "La Pibola"
        },
        {
            "id": 3353,
            "lat": 52.1339262,
            "lng": 1.316317,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3354,
            "lat": 45.1594033,
            "lng": 5.0096185,
            "type": "poi",
            "category": "campsite",
            "title": "Le Biquet"
        },
        {
            "id": 3355,
            "lat": 43.3624109,
            "lng": 3.3193296,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Clairac"
        },
        {
            "id": 3356,
            "lat": 44.5805104,
            "lng": 5.1080978,
            "type": "poi",
            "category": "campsite",
            "title": "Le grand bois"
        },
        {
            "id": 3357,
            "lat": 44.7587998,
            "lng": 0.746513,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Les pierres blanches"
        },
        {
            "id": 3358,
            "lat": 42.3036056,
            "lng": 8.8756641,
            "type": "poi",
            "category": "campsite",
            "title": "Bergeries de Radule"
        },
        {
            "id": 3359,
            "lat": 39.9620378,
            "lng": 8.4024715,
            "type": "poi",
            "category": "campsite",
            "title": "AgricampingAgricampeggio Murtas di Giuliano Nardi"
        },
        {
            "id": 3360,
            "lat": 43.7093473,
            "lng": 2.7077289,
            "type": "poi",
            "category": "campsite",
            "title": "Sources Chaudes"
        },
        {
            "id": 38248,
            "lat": 41.6459779,
            "lng": -76.6992128,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 51115,
            "lat": 45.164999,
            "lng": -87.223335,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28895,
            "lat": 50.3229928,
            "lng": 6.941632,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3365,
            "lat": 46.1789312,
            "lng": 2.4890447,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal"
        },
        {
            "id": 3367,
            "lat": 52.4256588,
            "lng": -4.0577057,
            "type": "poi",
            "category": "campsite",
            "title": "Bryncarnedd"
        },
        {
            "id": 3368,
            "lat": 45.8322806,
            "lng": 5.2996999,
            "type": "poi",
            "category": "campsite",
            "title": "Camping du Domaine de Beauséjour"
        },
        {
            "id": 3369,
            "lat": 50.8435578,
            "lng": 5.0277166,
            "type": "poi",
            "category": "campsite",
            "title": "Leeuwerikenveld"
        },
        {
            "id": 3370,
            "lat": 51.0699719,
            "lng": 4.4651642,
            "type": "poi",
            "category": "campsite",
            "title": "Roosendael"
        },
        {
            "id": 3371,
            "lat": 43.5180209,
            "lng": -0.1472398,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3372,
            "lat": 40.3792316,
            "lng": 0.3885074,
            "type": "poi",
            "category": "campsite",
            "title": "Los Pinos"
        },
        {
            "id": 3373,
            "lat": 42.6950795,
            "lng": 2.0970311,
            "type": "poi",
            "category": "campsite",
            "title": "Le Bosqet"
        },
        {
            "id": 3374,
            "lat": 48.72256,
            "lng": -0.91476,
            "type": "poi",
            "category": "campsite",
            "title": "Le Potager"
        },
        {
            "id": 3375,
            "lat": 51.2665059,
            "lng": 4.1112689,
            "type": "poi",
            "category": "campsite",
            "title": "Fort Bedmar"
        },
        {
            "id": 3376,
            "lat": 37.9048653,
            "lng": -6.6727701,
            "type": "poi",
            "category": "campsite",
            "title": "El Madroñal"
        },
        {
            "id": 3377,
            "lat": 50.5581774,
            "lng": 8.2852913,
            "type": "poi",
            "category": "campsite",
            "title": "Tipidorf Outdoor Zentrum Lahntal"
        },
        {
            "id": 3378,
            "lat": 45.9884376,
            "lng": 4.0451674,
            "type": "poi",
            "category": "campsite",
            "title": "L'Orée du Lac"
        },
        {
            "id": 3379,
            "lat": 48.1507179,
            "lng": -0.4131198,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal d'Évron"
        },
        {
            "id": 3380,
            "lat": 52.0049655,
            "lng": -4.9399418,
            "type": "poi",
            "category": "campsite",
            "title": "SA65 9ET"
        },
        {
            "id": 3381,
            "lat": 47.435286,
            "lng": 7.253642,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3382,
            "lat": 44.9993829,
            "lng": 1.2467419,
            "type": "poi",
            "category": "campsite",
            "title": "La Bouquerie"
        },
        {
            "id": 3383,
            "lat": 52.2934016,
            "lng": 5.5920731,
            "type": "poi",
            "category": "campsite",
            "title": "Kampeerboerderij de Zandkamp"
        },
        {
            "id": 3384,
            "lat": 40.7063057,
            "lng": -6.3348019,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3385,
            "lat": 47.4003488,
            "lng": 1.9526826,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Le Petit Arcachon"
        },
        {
            "id": 3386,
            "lat": 53.157299,
            "lng": 6.460027,
            "type": "poi",
            "category": "campsite",
            "title": "Scheepstra"
        },
        {
            "id": 3387,
            "lat": 44.2021434,
            "lng": 5.538016,
            "type": "poi",
            "category": "campsite",
            "title": "Les Biaux"
        },
        {
            "id": 4646,
            "lat": 47.875028,
            "lng": -2.2084773,
            "type": "poi",
            "category": "campsite",
            "title": "La Noë"
        },
        {
            "id": 30320,
            "lat": 54.4285402,
            "lng": 10.3617157,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50798,
            "lat": -14.4582451,
            "lng": 35.2344442,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28620,
            "lat": 53.2563734,
            "lng": -9.3065708,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3389,
            "lat": 42.9790243,
            "lng": -0.1648414,
            "type": "poi",
            "category": "campsite",
            "title": "Aire Naturelle Le Caoussariou"
        },
        {
            "id": 3390,
            "lat": 52.6858196,
            "lng": -1.4741853,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3392,
            "lat": 46.0996954,
            "lng": 1.5788564,
            "type": "poi",
            "category": "campsite",
            "title": "Aire naturelle de camping de l’Ardour"
        },
        {
            "id": 3393,
            "lat": 41.7082959,
            "lng": -8.0414773,
            "type": "poi",
            "category": "campsite",
            "title": "Gerês Greenpark"
        },
        {
            "id": 3394,
            "lat": 45.7508116,
            "lng": 1.9367854,
            "type": "poi",
            "category": "campsite",
            "title": "Camping du Puy de Faux"
        },
        {
            "id": 3395,
            "lat": 49.4700288,
            "lng": -2.4439334,
            "type": "poi",
            "category": "campsite",
            "title": "Seagull Camping Site"
        },
        {
            "id": 3396,
            "lat": 52.7301458,
            "lng": 4.6672746,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Groede"
        },
        {
            "id": 3397,
            "lat": 42.8917123,
            "lng": 1.3120678,
            "type": "poi",
            "category": "campsite",
            "title": "Camping à la ferme l'Azaïgouat"
        },
        {
            "id": 3398,
            "lat": 49.254413,
            "lng": 7.9500938,
            "type": "poi",
            "category": "campsite",
            "title": "Trekking Pfalz: Eußerthal"
        },
        {
            "id": 3399,
            "lat": 45.6066254,
            "lng": 1.8838392,
            "type": "poi",
            "category": "campsite",
            "title": "Camping du Lac"
        },
        {
            "id": 3400,
            "lat": 53.2156878,
            "lng": 5.8906351,
            "type": "poi",
            "category": "campsite",
            "title": "De Kleine Wielen"
        },
        {
            "id": 3401,
            "lat": 43.485419,
            "lng": 6.7204988,
            "type": "poi",
            "category": "campsite",
            "title": "Camping La Pierre Verte"
        },
        {
            "id": 3402,
            "lat": 52.9125117,
            "lng": 9.2288178,
            "type": "poi",
            "category": "campsite",
            "title": "Wassersportverein Verden e.V."
        },
        {
            "id": 3403,
            "lat": 52.7334205,
            "lng": 1.3551703,
            "type": "poi",
            "category": "campsite",
            "title": "Hautbois Residential & Activities Centre"
        },
        {
            "id": 3404,
            "lat": 42.9203319,
            "lng": 2.2176925,
            "type": "poi",
            "category": "campsite",
            "title": "Petit Paradis"
        },
        {
            "id": 3405,
            "lat": 50.3991506,
            "lng": -4.0877486,
            "type": "poi",
            "category": "campsite",
            "title": "Riverside"
        },
        {
            "id": 3407,
            "lat": 47.1578666,
            "lng": 1.1595214,
            "type": "poi",
            "category": "campsite",
            "title": "Les Côteaux du Lac"
        },
        {
            "id": 3408,
            "lat": 53.7472306,
            "lng": -1.9451546,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3409,
            "lat": 46.9400033,
            "lng": 2.9591387,
            "type": "poi",
            "category": "campsite",
            "title": "Le Robinson"
        },
        {
            "id": 3410,
            "lat": 40.5939776,
            "lng": -8.2627469,
            "type": "poi",
            "category": "campsite",
            "title": "Fonte Frade"
        },
        {
            "id": 50802,
            "lat": -14.459084,
            "lng": 35.2333053,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48552,
            "lat": 56.3238139,
            "lng": 9.1152741,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 17716,
            "lat": 46.6798742,
            "lng": 41.7099595,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 52726,
            "lat": 52.826613,
            "lng": 50.500086,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31112,
            "lat": 63.4499477,
            "lng": 10.4335989,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48555,
            "lat": 20.2029238,
            "lng": -87.4326757,
            "type": "poi",
            "category": "shower",
            "title": "duchas"
        },
        {
            "id": 3413,
            "lat": 52.3342753,
            "lng": 5.5520874,
            "type": "poi",
            "category": "campsite",
            "title": "Bolhaven"
        },
        {
            "id": 3414,
            "lat": 52.5369212,
            "lng": 6.1297517,
            "type": "poi",
            "category": "campsite",
            "title": "De Agnietenberg"
        },
        {
            "id": 3415,
            "lat": 44.9363891,
            "lng": 1.084499,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Toohapi Le Mas"
        },
        {
            "id": 3416,
            "lat": 47.6807656,
            "lng": 6.0396107,
            "type": "poi",
            "category": "campsite",
            "title": "Camping La Maladière"
        },
        {
            "id": 3417,
            "lat": 53.5820141,
            "lng": -0.9909964,
            "type": "poi",
            "category": "campsite",
            "title": "Hatfield Outdoor Activity Centre"
        },
        {
            "id": 3418,
            "lat": 36.5133905,
            "lng": 4.4090049,
            "type": "poi",
            "category": "campsite",
            "title": "Assensu T Zinkoucht"
        },
        {
            "id": 3419,
            "lat": 47.6127167,
            "lng": 5.9647891,
            "type": "poi",
            "category": "campsite",
            "title": "Aire Naturelle de Camping La Prairie"
        },
        {
            "id": 3420,
            "lat": 54.1047831,
            "lng": -2.4097528,
            "type": "poi",
            "category": "campsite",
            "title": "Abbey Farm"
        },
        {
            "id": 3422,
            "lat": 45.8179926,
            "lng": 1.6529899,
            "type": "poi",
            "category": "campsite",
            "title": "Lous Suais Camping Naturiste"
        },
        {
            "id": 3423,
            "lat": 54.0721161,
            "lng": -2.7477936,
            "type": "poi",
            "category": "campsite",
            "title": "New Parkside Farm Camp Site"
        },
        {
            "id": 3424,
            "lat": 52.8154415,
            "lng": 5.9970994,
            "type": "poi",
            "category": "campsite",
            "title": "De Eikenhof"
        },
        {
            "id": 3425,
            "lat": 52.8157696,
            "lng": 6.0065412,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Krolsbergen"
        },
        {
            "id": 3426,
            "lat": 44.6422507,
            "lng": 1.220712,
            "type": "poi",
            "category": "campsite",
            "title": "Tente Simone"
        },
        {
            "id": 3427,
            "lat": 46.4398508,
            "lng": 4.2812167,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Municipal de Charolles"
        },
        {
            "id": 3428,
            "lat": 42.6367455,
            "lng": 9.0199043,
            "type": "poi",
            "category": "campsite",
            "title": "Le Belgodere"
        },
        {
            "id": 3429,
            "lat": 40.2363931,
            "lng": -7.487623,
            "type": "poi",
            "category": "campsite",
            "title": "Parque Carlos Pinto"
        },
        {
            "id": 3430,
            "lat": 49.2619848,
            "lng": 7.6948787,
            "type": "poi",
            "category": "campsite",
            "title": "Abenteuer Walderlebniszentrum Heidelsburg"
        },
        {
            "id": 3431,
            "lat": 50.4817135,
            "lng": -5.027653,
            "type": "poi",
            "category": "campsite",
            "title": "Bedruthan House Camping"
        },
        {
            "id": 3432,
            "lat": 53.7748032,
            "lng": -1.8969228,
            "type": "poi",
            "category": "campsite",
            "title": "Smithy House"
        },
        {
            "id": 1344,
            "lat": 56.4341058,
            "lng": 29.1992771,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 28621,
            "lat": 48.0116626,
            "lng": 8.1011999,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50803,
            "lat": -14.4593262,
            "lng": 35.2365172,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50804,
            "lat": -14.4593899,
            "lng": 35.2364262,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28622,
            "lat": 38.4892727,
            "lng": -9.1828422,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31215,
            "lat": 60.138508,
            "lng": 24.9213796,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28972,
            "lat": 44.399755,
            "lng": 8.6859101,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 38264,
            "lat": 51.6523158,
            "lng": -111.9791763,
            "type": "poi",
            "category": "caravan_site",
            "title": "Fox Lake"
        },
        {
            "id": 38500,
            "lat": -38.01278,
            "lng": 145.99028,
            "type": "poi",
            "category": "caravan_site",
            "title": "Neerim South Caravan Park"
        },
        {
            "id": 43917,
            "lat": 33.3608235,
            "lng": 44.3032309,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 4781,
            "lat": 43.8755602,
            "lng": 3.1243166,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal"
        },
        {
            "id": 48557,
            "lat": -20.6407939,
            "lng": 134.2230176,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50805,
            "lat": -14.4595094,
            "lng": 35.2365586,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50808,
            "lat": -14.4547014,
            "lng": 35.2224888,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50810,
            "lat": -14.3646301,
            "lng": 35.1680427,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50811,
            "lat": -14.3646633,
            "lng": 35.169018,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50812,
            "lat": -14.3647442,
            "lng": 35.1690158,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50813,
            "lat": -14.3647939,
            "lng": 35.1677454,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50814,
            "lat": -14.3648084,
            "lng": 35.1682324,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50819,
            "lat": -14.3619357,
            "lng": 35.166772,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51120,
            "lat": -27.949038,
            "lng": 153.4098255,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52740,
            "lat": -45.425869,
            "lng": 167.7201484,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28896,
            "lat": 53.7853329,
            "lng": 9.7646257,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52764,
            "lat": 55.7438396,
            "lng": 8.1737195,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31134,
            "lat": 48.3492337,
            "lng": 14.5312669,
            "type": "poi",
            "category": "shower",
            "title": "Fauendusche"
        },
        {
            "id": 30329,
            "lat": 48.8321246,
            "lng": 12.4029106,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28623,
            "lat": 52.6404469,
            "lng": -7.2304139,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28624,
            "lat": 51.7580661,
            "lng": -10.09434,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28977,
            "lat": 43.9972931,
            "lng": 4.3847432,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9103,
            "lat": 45.8699388,
            "lng": 8.363654,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 50820,
            "lat": -14.3620135,
            "lng": 35.1669176,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28625,
            "lat": 38.6855601,
            "lng": -9.3064159,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30963,
            "lat": 41.218648,
            "lng": 31.4104473,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 38531,
            "lat": 63.2459939,
            "lng": 8.282204,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 30964,
            "lat": 41.2197319,
            "lng": 31.4102763,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50821,
            "lat": -14.3620819,
            "lng": 35.1666222,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50822,
            "lat": -14.3622074,
            "lng": 35.1670803,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50823,
            "lat": -14.3623162,
            "lng": 35.1676379,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50831,
            "lat": -14.36293,
            "lng": 35.1676892,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30965,
            "lat": 63.8258542,
            "lng": 20.2232391,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52557,
            "lat": -27.9619602,
            "lng": 153.4281735,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51121,
            "lat": -14.3079214,
            "lng": 35.1147209,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51122,
            "lat": -14.3079326,
            "lng": 35.1148712,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51123,
            "lat": -14.3080009,
            "lng": 35.1153649,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 38535,
            "lat": 48.2650885,
            "lng": -92.4848813,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 15278,
            "lat": 52.8823103,
            "lng": -3.0416116,
            "type": "poi",
            "category": "caravan_site",
            "title": "Pentreclawdd Caravan Park"
        },
        {
            "id": 17726,
            "lat": 64.1572556,
            "lng": 20.3611334,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 17727,
            "lat": 64.2311147,
            "lng": 20.2675895,
            "type": "poi",
            "category": "caravan_site",
            "title": "Sanabadet"
        },
        {
            "id": 38541,
            "lat": 60.9972481,
            "lng": 8.9887999,
            "type": "poi",
            "category": "caravan_site",
            "title": "Vaset Camping"
        },
        {
            "id": 43961,
            "lat": 27.6514957,
            "lng": 22.5004091,
            "type": "poi",
            "category": "caravan_site",
            "title": "Camp area"
        },
        {
            "id": 46584,
            "lat": 24.0412077,
            "lng": -109.9872789,
            "type": "poi",
            "category": "caravan_site",
            "title": "El Amigo"
        },
        {
            "id": 46601,
            "lat": 38.9948144,
            "lng": -119.1695564,
            "type": "poi",
            "category": "caravan_site",
            "title": "Hawkeye R.V. Park"
        },
        {
            "id": 27848,
            "lat": 52.4106771,
            "lng": -2.2469745,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51125,
            "lat": -14.3083527,
            "lng": 35.1163338,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51126,
            "lat": -14.308504,
            "lng": 35.1163489,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28976,
            "lat": 53.5236819,
            "lng": -10.1347697,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31227,
            "lat": 42.1382949,
            "lng": 19.0292779,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 53005,
            "lat": 52.8507141,
            "lng": -118.0803197,
            "type": "poi",
            "category": "shower",
            "title": "Campsite Shower"
        },
        {
            "id": 38318,
            "lat": 59.7550198,
            "lng": 9.3619636,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 17732,
            "lat": 41.768209,
            "lng": 13.9510438,
            "type": "poi",
            "category": "caravan_site",
            "title": "Parcheggio Oasi del Lago"
        },
        {
            "id": 43984,
            "lat": 33.3134152,
            "lng": 44.4961334,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 30332,
            "lat": 36.3358737,
            "lng": 28.2065784,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30333,
            "lat": 36.3391816,
            "lng": 28.2044381,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48574,
            "lat": 44.0832533,
            "lng": -122.238717,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50832,
            "lat": -14.3630078,
            "lng": 35.1672044,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50833,
            "lat": -14.3631167,
            "lng": 35.1675619,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50834,
            "lat": -14.3631498,
            "lng": 35.1669368,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30942,
            "lat": 51.3920261,
            "lng": 37.8056322,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30966,
            "lat": 42.9544067,
            "lng": 27.8985857,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28626,
            "lat": 43.2303099,
            "lng": 6.6607819,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28630,
            "lat": 51.553588,
            "lng": 8.158623,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51146,
            "lat": 33.4691378,
            "lng": -117.7174885,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51147,
            "lat": 33.4728464,
            "lng": -117.72,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28631,
            "lat": 47.0469264,
            "lng": 8.3210655,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51149,
            "lat": 59.4499921,
            "lng": -135.3181031,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52559,
            "lat": -28.3612428,
            "lng": 153.5763332,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52560,
            "lat": -28.3580569,
            "lng": 153.5749735,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 53035,
            "lat": 41.2808341,
            "lng": 69.2178911,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 53037,
            "lat": 56.8205257,
            "lng": -5.1061026,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28986,
            "lat": 44.0624914,
            "lng": 3.9784777,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 53414,
            "lat": 43.025008,
            "lng": -112.4139279,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 44014,
            "lat": 51.1790421,
            "lng": 108.330275,
            "type": "poi",
            "category": "caravan_site",
            "title": "Охраняемая стоянка"
        },
        {
            "id": 16390,
            "lat": 48.9866399,
            "lng": 9.4103831,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravanstellplatz Sportplatz Rietenau"
        },
        {
            "id": 30977,
            "lat": 46.0381437,
            "lng": 11.2360317,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 38587,
            "lat": 44.5427452,
            "lng": -80.9369738,
            "type": "poi",
            "category": "caravan_site",
            "title": "Harrision Park"
        },
        {
            "id": 17738,
            "lat": 50.2206533,
            "lng": 12.3119195,
            "type": "poi",
            "category": "caravan_site",
            "title": "Reisemobilstellplatz Freibad Bad Brambach"
        },
        {
            "id": 18955,
            "lat": 36.6149157,
            "lng": 42.9814179,
            "type": "poi",
            "category": "caravan_site",
            "title": "Engineer Saad Moslih"
        },
        {
            "id": 44018,
            "lat": 30.5788397,
            "lng": 47.5981015,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 1345,
            "lat": 56.4321957,
            "lng": 29.2005646,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 27852,
            "lat": 48.5622308,
            "lng": 9.6106106,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27854,
            "lat": 48.5623729,
            "lng": 9.6104942,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27855,
            "lat": 48.5624688,
            "lng": 9.6106702,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30343,
            "lat": 36.3415682,
            "lng": 28.2042446,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30344,
            "lat": 36.3420261,
            "lng": 28.2042441,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 50963,
            "lat": -14.5786207,
            "lng": 35.179759,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28632,
            "lat": 45.9334472,
            "lng": 7.0936427,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28634,
            "lat": 45.9351823,
            "lng": 7.0956794,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30978,
            "lat": 46.03822,
            "lng": 11.2361403,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30979,
            "lat": 45.4838093,
            "lng": 12.2830397,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30980,
            "lat": 45.4838811,
            "lng": 12.2829805,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30981,
            "lat": 55.0585147,
            "lng": 10.6400019,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51169,
            "lat": 47.1318763,
            "lng": -70.3696019,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30974,
            "lat": 37.7913903,
            "lng": 20.8999992,
            "type": "poi",
            "category": "shower",
            "title": "Beach shower"
        },
        {
            "id": 30976,
            "lat": 46.5033613,
            "lng": 11.2992913,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51170,
            "lat": 47.1323123,
            "lng": -70.3688994,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51419,
            "lat": -15.0073021,
            "lng": 35.5487839,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31278,
            "lat": 60.1524145,
            "lng": 24.9521693,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 53155,
            "lat": 27.1317026,
            "lng": 33.8310742,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29055,
            "lat": 35.3837477,
            "lng": 5.3720051,
            "type": "poi",
            "category": "shower",
            "title": "Les frères Mihoubi"
        },
        {
            "id": 44026,
            "lat": 31.5667727,
            "lng": 46.1258054,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 44029,
            "lat": 60.750253,
            "lng": 4.995054,
            "type": "poi",
            "category": "caravan_site",
            "title": "Åvika"
        },
        {
            "id": 44030,
            "lat": 59.918357,
            "lng": 5.315597,
            "type": "poi",
            "category": "caravan_site",
            "title": "Fitjar"
        },
        {
            "id": 44031,
            "lat": 60.8972752,
            "lng": 5.5194207,
            "type": "poi",
            "category": "caravan_site",
            "title": "Joker"
        },
        {
            "id": 38596,
            "lat": -8.0733877,
            "lng": -79.1181994,
            "type": "poi",
            "category": "caravan_site",
            "title": "Huanchaco Gardens RV Park"
        },
        {
            "id": 15291,
            "lat": 39.4901399,
            "lng": -4.5276755,
            "type": "poi",
            "category": "caravan_site",
            "title": "Camping Navas de Estena"
        },
        {
            "id": 38599,
            "lat": -34.1243101,
            "lng": 22.1190846,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 38600,
            "lat": 42.7557061,
            "lng": -122.494714,
            "type": "poi",
            "category": "caravan_site",
            "title": "Crater Lake RV Park"
        },
        {
            "id": 18960,
            "lat": 45.3603943,
            "lng": 32.9131999,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 18961,
            "lat": 60.147982,
            "lng": 10.29329,
            "type": "poi",
            "category": "caravan_site",
            "title": "Stall Lisletta"
        },
        {
            "id": 27860,
            "lat": 48.0308847,
            "lng": 9.2869173,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48607,
            "lat": -33.0531242,
            "lng": 135.4645695,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27878,
            "lat": 49.9611452,
            "lng": 7.713532,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27882,
            "lat": 49.9613174,
            "lng": 7.7131291,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48664,
            "lat": 39.8540754,
            "lng": -74.0862634,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51171,
            "lat": 50.1382775,
            "lng": -122.9479856,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28636,
            "lat": 51.8749766,
            "lng": 5.9875547,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28637,
            "lat": 49.0922156,
            "lng": 8.767168,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51173,
            "lat": 51.069291,
            "lng": -113.8638442,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51178,
            "lat": 48.8304926,
            "lng": -64.220801,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51179,
            "lat": 48.8289804,
            "lng": -64.2236617,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51180,
            "lat": 48.8283433,
            "lng": -64.2225876,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51181,
            "lat": 48.8268478,
            "lng": -64.2244232,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51174,
            "lat": 51.0693867,
            "lng": -113.8638553,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28640,
            "lat": 50.1832298,
            "lng": 1.6173161,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28641,
            "lat": 42.1822873,
            "lng": 3.1100862,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 18962,
            "lat": 59.489569,
            "lng": 10.32243,
            "type": "poi",
            "category": "caravan_site",
            "title": "Hakan Bobilhavn"
        },
        {
            "id": 51184,
            "lat": 51.8570086,
            "lng": -121.285801,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51185,
            "lat": 51.8570542,
            "lng": -121.2857607,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51186,
            "lat": 50.5059477,
            "lng": -119.8338394,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28654,
            "lat": 50.9282448,
            "lng": 7.027145,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29087,
            "lat": 48.39551,
            "lng": 2.5030185,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31430,
            "lat": 48.0501645,
            "lng": 12.2300493,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29198,
            "lat": 46.1594906,
            "lng": 8.7651637,
            "type": "poi",
            "category": "shower",
            "title": "open air shower"
        },
        {
            "id": 44073,
            "lat": 44.6569585,
            "lng": 135.3497161,
            "type": "poi",
            "category": "caravan_site",
            "title": "Красивая лавкк"
        },
        {
            "id": 30370,
            "lat": 44.3915445,
            "lng": 38.3295653,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30371,
            "lat": 44.3916073,
            "lng": 38.330212,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15294,
            "lat": 43.2854541,
            "lng": -8.2045308,
            "type": "poi",
            "category": "caravan_site",
            "title": "Área de Autocaravanas de Betanzos"
        },
        {
            "id": 30372,
            "lat": 44.2510563,
            "lng": 15.5368129,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27883,
            "lat": 42.6707265,
            "lng": 9.446389,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27884,
            "lat": 42.6702966,
            "lng": 9.4464909,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27886,
            "lat": 42.6695314,
            "lng": 9.4467055,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27892,
            "lat": 41.5244416,
            "lng": 9.2719285,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28655,
            "lat": 50.9281465,
            "lng": 7.0271593,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28656,
            "lat": 50.9282178,
            "lng": 7.0273013,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28657,
            "lat": 50.928571,
            "lng": 7.0274755,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51232,
            "lat": 36.3288355,
            "lng": 140.5932522,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31000,
            "lat": 45.1755287,
            "lng": 14.6860328,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28661,
            "lat": 54.4547216,
            "lng": 8.972286,
            "type": "poi",
            "category": "shower",
            "title": "Hundedusche"
        },
        {
            "id": 31004,
            "lat": 36.7878316,
            "lng": 14.5083284,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28665,
            "lat": 44.0487125,
            "lng": 9.8395166,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51313,
            "lat": -14.905503,
            "lng": 35.6757118,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 44071,
            "lat": 32.3047911,
            "lng": 35.0262716,
            "type": "poi",
            "category": "caravan_site",
            "title": "ayman alfar"
        },
        {
            "id": 44072,
            "lat": 57.1224253,
            "lng": 105.3319599,
            "type": "poi",
            "category": "caravan_site",
            "title": "Nps6"
        },
        {
            "id": 44075,
            "lat": 14.0581538,
            "lng": 44.8563286,
            "type": "poi",
            "category": "caravan_site",
            "title": "وادي حميسان"
        },
        {
            "id": 44076,
            "lat": 10.9703116,
            "lng": 0.3634553,
            "type": "poi",
            "category": "caravan_site",
            "title": "Residence"
        },
        {
            "id": 44077,
            "lat": 10.9711312,
            "lng": 0.3625467,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 30373,
            "lat": 43.4839761,
            "lng": 10.331844,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27893,
            "lat": 40.821693,
            "lng": 9.6770914,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51314,
            "lat": -14.9059722,
            "lng": 35.6757647,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51320,
            "lat": -14.915086,
            "lng": 35.69035,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 53625,
            "lat": 37.8455411,
            "lng": -25.1473218,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31460,
            "lat": 39.4994569,
            "lng": 26.9324534,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31471,
            "lat": 35.2370228,
            "lng": 23.7202527,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 53680,
            "lat": 28.1427623,
            "lng": -16.4396665,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29201,
            "lat": 50.1123096,
            "lng": 5.1332143,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29218,
            "lat": 42.1556069,
            "lng": 3.1125289,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29222,
            "lat": 42.1575573,
            "lng": 3.1120732,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 18993,
            "lat": 40.9586726,
            "lng": 44.6009769,
            "type": "poi",
            "category": "caravan_site",
            "title": "dzoraget beach"
        },
        {
            "id": 44234,
            "lat": 42.9641457,
            "lng": -110.9687698,
            "type": "poi",
            "category": "caravan_site",
            "title": "Star Valley Ranch RV Park"
        },
        {
            "id": 3730,
            "lat": 43.349728,
            "lng": -0.2626843,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal"
        },
        {
            "id": 27899,
            "lat": 44.4467955,
            "lng": -1.2554972,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27900,
            "lat": 44.4476048,
            "lng": -1.2554533,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27901,
            "lat": 44.4483599,
            "lng": -1.2555274,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51321,
            "lat": -14.9150867,
            "lng": 35.6908871,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51322,
            "lat": -14.9151068,
            "lng": 35.6920478,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51323,
            "lat": -14.9155908,
            "lng": 35.6926909,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51338,
            "lat": -14.9202389,
            "lng": 35.6920133,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51339,
            "lat": -14.9231886,
            "lng": 35.6899748,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31486,
            "lat": 40.2736518,
            "lng": 22.6002065,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 38621,
            "lat": 0.5100824,
            "lng": 25.1888677,
            "type": "poi",
            "category": "caravan_site",
            "title": "AMICONGO"
        },
        {
            "id": 17749,
            "lat": 56.995247,
            "lng": 23.1344617,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 38623,
            "lat": 55.8567935,
            "lng": -4.8796238,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 17750,
            "lat": 66.4730249,
            "lng": 16.5592133,
            "type": "poi",
            "category": "caravan_site",
            "title": "Silverhyttan Camp & Stugby"
        },
        {
            "id": 38625,
            "lat": 38.8759248,
            "lng": -87.4358108,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 44204,
            "lat": 17.4296078,
            "lng": 102.8144066,
            "type": "poi",
            "category": "caravan_site",
            "title": "วิทยาพันธุ์"
        },
        {
            "id": 29258,
            "lat": 40.1321065,
            "lng": 0.1641559,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29259,
            "lat": 35.2949162,
            "lng": -1.1406725,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29275,
            "lat": 38.6792465,
            "lng": -9.3326247,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29276,
            "lat": 47.0505041,
            "lng": 8.3113633,
            "type": "poi",
            "category": "shower",
            "title": "McClean Hygienecenter"
        },
        {
            "id": 54099,
            "lat": -33.8390989,
            "lng": 151.2529239,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 54100,
            "lat": -33.8391186,
            "lng": 151.2528943,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 16598,
            "lat": 37.4534307,
            "lng": -3.9202376,
            "type": "poi",
            "category": "caravan_site",
            "title": "Alcalá Camper Park"
        },
        {
            "id": 44715,
            "lat": -4.7647418,
            "lng": 55.5210306,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 48698,
            "lat": -37.6811949,
            "lng": 145.0635459,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30379,
            "lat": 43.2850395,
            "lng": 42.1742633,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27907,
            "lat": 53.8957587,
            "lng": 9.1449386,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51340,
            "lat": -14.924145,
            "lng": 35.6894478,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51341,
            "lat": -14.9292091,
            "lng": 35.6951837,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51350,
            "lat": -14.9302659,
            "lng": 35.6930144,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51351,
            "lat": -14.9302795,
            "lng": 35.6934785,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51359,
            "lat": -15.0596364,
            "lng": 35.5122111,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51364,
            "lat": -15.0613902,
            "lng": 35.5119395,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51365,
            "lat": -15.0637355,
            "lng": 35.5023667,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51401,
            "lat": -14.8634092,
            "lng": 35.6289509,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 54116,
            "lat": -12.3623181,
            "lng": 130.8674073,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29329,
            "lat": 50.6664099,
            "lng": 6.8028921,
            "type": "poi",
            "category": "shower",
            "title": "Calla-Kaskaden / Callablüten-Dusche"
        },
        {
            "id": 17752,
            "lat": 49.1399523,
            "lng": 12.3789384,
            "type": "poi",
            "category": "caravan_site",
            "title": "Reisemobilstellplatz Landgasthof Lindenhof"
        },
        {
            "id": 38630,
            "lat": 51.0490668,
            "lng": -116.3653422,
            "type": "poi",
            "category": "caravan_site",
            "title": "Marion Lake Campground"
        },
        {
            "id": 19075,
            "lat": 43.9265314,
            "lng": 21.4039782,
            "type": "poi",
            "category": "caravan_site",
            "title": "Camp Plum"
        },
        {
            "id": 27904,
            "lat": 43.2759033,
            "lng": 2.7080679,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48709,
            "lat": 28.0468037,
            "lng": -14.3404877,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48710,
            "lat": 55.0620461,
            "lng": 59.1567497,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48711,
            "lat": 33.5121548,
            "lng": 126.9596966,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30381,
            "lat": 47.627532,
            "lng": 12.8696946,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30382,
            "lat": 49.6371544,
            "lng": 18.1518625,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31526,
            "lat": 36.7805486,
            "lng": 14.5383292,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31529,
            "lat": 36.7819095,
            "lng": 14.5591329,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30385,
            "lat": 49.6371735,
            "lng": 18.1515877,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30386,
            "lat": 49.6371928,
            "lng": 18.151308,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30387,
            "lat": 49.6369227,
            "lng": 18.1515468,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30388,
            "lat": 49.636904,
            "lng": 18.1518264,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30389,
            "lat": 43.9701655,
            "lng": 15.4042204,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27910,
            "lat": 41.067757,
            "lng": 1.149261,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51407,
            "lat": -14.8645798,
            "lng": 35.62721,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51408,
            "lat": -14.8646833,
            "lng": 35.6278184,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51409,
            "lat": -14.8647616,
            "lng": 35.6275111,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51411,
            "lat": -15.0049008,
            "lng": 35.5490561,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51420,
            "lat": -15.0091826,
            "lng": 35.5508774,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9104,
            "lat": 46.15606,
            "lng": 6.7995718,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 51421,
            "lat": -15.0105285,
            "lng": 35.5525444,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51423,
            "lat": -15.0105262,
            "lng": 35.5536317,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51424,
            "lat": -15.0079271,
            "lng": 35.5529906,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51425,
            "lat": -15.0081725,
            "lng": 35.5530771,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51426,
            "lat": -15.0078727,
            "lng": 35.552996,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51441,
            "lat": -14.9258248,
            "lng": 35.6334385,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31533,
            "lat": 36.7827673,
            "lng": 14.5539284,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15295,
            "lat": 53.4563877,
            "lng": 8.3578459,
            "type": "poi",
            "category": "caravan_site",
            "title": "Wohnmobilstellplatz Seefeld"
        },
        {
            "id": 15296,
            "lat": 52.2212813,
            "lng": 0.9834108,
            "type": "poi",
            "category": "caravan_site",
            "title": "Red House Farm Caravan Site"
        },
        {
            "id": 15298,
            "lat": 52.4254756,
            "lng": -4.0583923,
            "type": "poi",
            "category": "caravan_site",
            "title": "Bryncarnedd"
        },
        {
            "id": 27911,
            "lat": 50.0488265,
            "lng": 8.675784,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27912,
            "lat": 50.0488602,
            "lng": 8.6761824,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27913,
            "lat": 50.0489329,
            "lng": 8.6757335,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27917,
            "lat": 50.0492884,
            "lng": 8.6748357,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27918,
            "lat": 50.0493515,
            "lng": 8.6765932,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27919,
            "lat": 50.0494097,
            "lng": 8.6755272,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 54146,
            "lat": 45.4676246,
            "lng": -74.3395239,
            "type": "poi",
            "category": "shower",
            "title": "Lave-vélo"
        },
        {
            "id": 54147,
            "lat": 33.0688797,
            "lng": 133.1076102,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31537,
            "lat": 43.553477,
            "lng": 10.3018096,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 54163,
            "lat": -36.8303124,
            "lng": 174.8036193,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 54164,
            "lat": -36.8133842,
            "lng": 174.8028275,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51462,
            "lat": -14.9670272,
            "lng": 35.3894728,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51463,
            "lat": -14.9010935,
            "lng": 35.6801806,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3903,
            "lat": 35.1621167,
            "lng": -6.1419167,
            "type": "poi",
            "category": "campsite",
            "title": "Camp Larache"
        },
        {
            "id": 9243,
            "lat": 45.2220469,
            "lng": 9.2257763,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 54165,
            "lat": -36.8324444,
            "lng": 174.7978947,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 54166,
            "lat": -20.2674179,
            "lng": 148.7171501,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51521,
            "lat": -14.8945544,
            "lng": 35.6845039,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31010,
            "lat": 43.9565559,
            "lng": 15.4319429,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51523,
            "lat": -14.8947896,
            "lng": 35.6855239,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51524,
            "lat": -14.8950896,
            "lng": 35.6849287,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 54167,
            "lat": -16.9198652,
            "lng": 145.778179,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15300,
            "lat": 53.1675612,
            "lng": 8.6961107,
            "type": "poi",
            "category": "caravan_site",
            "title": "Wohnmobilpark Lesum"
        },
        {
            "id": 27920,
            "lat": 50.0494101,
            "lng": 8.6756484,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51741,
            "lat": 35.2604088,
            "lng": 139.1216329,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51742,
            "lat": -14.9339685,
            "lng": 35.807833,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51743,
            "lat": -14.9355679,
            "lng": 35.8086464,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27921,
            "lat": 50.0494427,
            "lng": 8.6760156,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27922,
            "lat": 50.0496099,
            "lng": 8.675577,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27923,
            "lat": 50.0496105,
            "lng": 8.6757116,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48739,
            "lat": 19.7998602,
            "lng": -73.3839173,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48740,
            "lat": 20.9946724,
            "lng": -156.6662672,
            "type": "poi",
            "category": "shower",
            "title": "Napili Beach Shower"
        },
        {
            "id": 30390,
            "lat": 53.9627088,
            "lng": 21.7436832,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30391,
            "lat": 40.0973801,
            "lng": 23.3118294,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51459,
            "lat": -14.9697423,
            "lng": 35.3845966,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51460,
            "lat": -14.9682757,
            "lng": 35.38323,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51461,
            "lat": -14.9006244,
            "lng": 35.6791265,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 54149,
            "lat": -23.971928,
            "lng": -46.3270319,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 54150,
            "lat": -23.971199,
            "lng": -46.3288188,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 54168,
            "lat": 37.5550237,
            "lng": 126.984127,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29332,
            "lat": 51.5707611,
            "lng": 3.5275186,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 45314,
            "lat": 30.6088029,
            "lng": -84.8107963,
            "type": "poi",
            "category": "caravan_site",
            "title": "Triple C's Campground and RV Park"
        },
        {
            "id": 30392,
            "lat": 55.9057793,
            "lng": 12.80504,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30393,
            "lat": 51.8554943,
            "lng": 14.1082051,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27924,
            "lat": 46.7273255,
            "lng": 3.5988283,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3950,
            "lat": 42.6655111,
            "lng": 9.300378,
            "type": "poi",
            "category": "campsite",
            "title": "La Pinede"
        },
        {
            "id": 30394,
            "lat": 58.3917217,
            "lng": 15.6787558,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48747,
            "lat": -27.7001374,
            "lng": 114.1699696,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30396,
            "lat": 54.3439155,
            "lng": 12.3979124,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51551,
            "lat": -14.9928786,
            "lng": 35.5941162,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51552,
            "lat": -14.9929421,
            "lng": 35.5933269,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51553,
            "lat": -14.9947175,
            "lng": 35.592307,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51554,
            "lat": -14.9947758,
            "lng": 35.5922601,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51555,
            "lat": -14.9953976,
            "lng": 35.5910987,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51556,
            "lat": -14.9955051,
            "lng": 35.5911952,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31011,
            "lat": 55.6683575,
            "lng": 12.5772469,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28675,
            "lat": 53.6454656,
            "lng": 8.0781076,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28676,
            "lat": 51.4673856,
            "lng": 7.5968672,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30395,
            "lat": 47.0079995,
            "lng": 11.5082742,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30397,
            "lat": 59.4426106,
            "lng": 18.1300297,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27925,
            "lat": 53.6030511,
            "lng": 9.479561,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31012,
            "lat": 43.9067741,
            "lng": 10.7877587,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15302,
            "lat": 50.8191947,
            "lng": -4.4685017,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 38682,
            "lat": -26.9888855,
            "lng": 28.1981728,
            "type": "poi",
            "category": "caravan_site",
            "title": "Oranjeville Vakansie oord"
        },
        {
            "id": 38683,
            "lat": 49.3870974,
            "lng": -99.2391307,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 15304,
            "lat": 52.9766008,
            "lng": -0.7269315,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 15305,
            "lat": 52.5824457,
            "lng": 0.722566,
            "type": "poi",
            "category": "caravan_site",
            "title": "The Water Meadows"
        },
        {
            "id": 15306,
            "lat": 52.5836814,
            "lng": 0.722989,
            "type": "poi",
            "category": "caravan_site",
            "title": "Windmill Paddocks"
        },
        {
            "id": 27926,
            "lat": 53.6031322,
            "lng": 9.4795525,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28677,
            "lat": 49.1429083,
            "lng": 8.5156198,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28681,
            "lat": 50.0843903,
            "lng": 9.2548776,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 54221,
            "lat": 28.2951067,
            "lng": -16.374571,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31569,
            "lat": 49.698142,
            "lng": 12.7344699,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31713,
            "lat": 45.1170246,
            "lng": 14.5144978,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3675,
            "lat": 51.8462143,
            "lng": 6.0047688,
            "type": "poi",
            "category": "campsite",
            "title": "Camping De Puthorst"
        },
        {
            "id": 3677,
            "lat": 51.737173,
            "lng": 3.8325619,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Strandloper"
        },
        {
            "id": 3678,
            "lat": 51.1524879,
            "lng": -2.6916462,
            "type": "poi",
            "category": "campsite",
            "title": "Paddington Farm Trust"
        },
        {
            "id": 3679,
            "lat": 51.9424658,
            "lng": 6.5420795,
            "type": "poi",
            "category": "campsite",
            "title": "De Nieuwe Welpshof"
        },
        {
            "id": 3680,
            "lat": 51.9541531,
            "lng": 6.5762045,
            "type": "poi",
            "category": "campsite",
            "title": "Boerderij 't Lankhof"
        },
        {
            "id": 3681,
            "lat": 51.5857776,
            "lng": 4.2150391,
            "type": "poi",
            "category": "campsite",
            "title": "The Hive"
        },
        {
            "id": 3682,
            "lat": 51.9413403,
            "lng": 5.495984,
            "type": "poi",
            "category": "campsite",
            "title": "De Akker"
        },
        {
            "id": 3683,
            "lat": 51.9259269,
            "lng": 6.2620622,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Te Boomsgoed"
        },
        {
            "id": 3684,
            "lat": 50.9276409,
            "lng": 6.0103844,
            "type": "poi",
            "category": "campsite",
            "title": "Buitencentrum De Heikop"
        },
        {
            "id": 3685,
            "lat": 51.4589367,
            "lng": 5.1886088,
            "type": "poi",
            "category": "campsite",
            "title": "minicamping ArcheryFarm"
        },
        {
            "id": 3686,
            "lat": 51.5453087,
            "lng": 5.2514891,
            "type": "poi",
            "category": "campsite",
            "title": "Anne Marie Hoeve"
        },
        {
            "id": 3687,
            "lat": 51.5722306,
            "lng": 5.1549516,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Het Karrewiel"
        },
        {
            "id": 3688,
            "lat": 51.5165399,
            "lng": 5.3084585,
            "type": "poi",
            "category": "campsite",
            "title": "De Bocht"
        },
        {
            "id": 3689,
            "lat": 51.4344149,
            "lng": 5.2340005,
            "type": "poi",
            "category": "campsite",
            "title": "De Roerdomp"
        },
        {
            "id": 3690,
            "lat": 51.3434035,
            "lng": 5.2278062,
            "type": "poi",
            "category": "campsite",
            "title": "De Achterste Hoef"
        },
        {
            "id": 3691,
            "lat": 51.3854442,
            "lng": 5.3249399,
            "type": "poi",
            "category": "campsite",
            "title": "Kempenstee"
        },
        {
            "id": 3731,
            "lat": 47.1590557,
            "lng": 6.6060286,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 48771,
            "lat": 35.9360882,
            "lng": -98.4396362,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51577,
            "lat": -14.8223935,
            "lng": 35.7037025,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 38699,
            "lat": 26.7231956,
            "lng": -81.6910129,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 52563,
            "lat": 49.0177759,
            "lng": -122.7945515,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31717,
            "lat": 50.471735,
            "lng": 15.3098626,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3694,
            "lat": 51.3732299,
            "lng": 5.543843,
            "type": "poi",
            "category": "campsite",
            "title": "Achter 't Heezerenbosch"
        },
        {
            "id": 3695,
            "lat": 52.4250166,
            "lng": 6.9917511,
            "type": "poi",
            "category": "campsite",
            "title": "Camping De Rammelbeek"
        },
        {
            "id": 3696,
            "lat": 45.7999689,
            "lng": 1.842979,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Lac de Vassivière"
        },
        {
            "id": 3697,
            "lat": 51.5093779,
            "lng": 5.0116774,
            "type": "poi",
            "category": "campsite",
            "title": "Manege Groepsaccomodatie Het Hoefke"
        },
        {
            "id": 3698,
            "lat": 40.3071455,
            "lng": -7.8718566,
            "type": "poi",
            "category": "campsite",
            "title": "Parque de Campismo Ponte das Três Entradas"
        },
        {
            "id": 3699,
            "lat": 52.8016938,
            "lng": 6.6885573,
            "type": "poi",
            "category": "campsite",
            "title": "Minicamping Aelderveen"
        },
        {
            "id": 3700,
            "lat": 44.6504678,
            "lng": 6.1729227,
            "type": "poi",
            "category": "campsite",
            "title": "Les sittelles"
        },
        {
            "id": 3701,
            "lat": 51.7278261,
            "lng": 4.887326,
            "type": "poi",
            "category": "campsite",
            "title": "Kurenpolder"
        },
        {
            "id": 3702,
            "lat": 52.3876025,
            "lng": 6.5886574,
            "type": "poi",
            "category": "campsite",
            "title": "Vakantieoord De Kiekebelt"
        },
        {
            "id": 3703,
            "lat": 44.9338874,
            "lng": 0.9360495,
            "type": "poi",
            "category": "campsite",
            "title": "La Linotte"
        },
        {
            "id": 3704,
            "lat": 52.0101816,
            "lng": 5.3302674,
            "type": "poi",
            "category": "campsite",
            "title": "De biologische boer Tom Verkerk"
        },
        {
            "id": 3705,
            "lat": 52.0995421,
            "lng": 6.2001345,
            "type": "poi",
            "category": "campsite",
            "title": "Boerderijcamping de Hank"
        },
        {
            "id": 3707,
            "lat": 52.3699497,
            "lng": 5.6145461,
            "type": "poi",
            "category": "campsite",
            "title": "Scoutcentrum Harderhaven"
        },
        {
            "id": 3708,
            "lat": 51.6632811,
            "lng": 4.7664313,
            "type": "poi",
            "category": "campsite",
            "title": "Minicamping Johan & Caroline"
        },
        {
            "id": 3709,
            "lat": 45.0125531,
            "lng": 0.1583877,
            "type": "poi",
            "category": "campsite",
            "title": "La Cigaline"
        },
        {
            "id": 3710,
            "lat": 51.3506814,
            "lng": 5.6880722,
            "type": "poi",
            "category": "campsite",
            "title": "Kamp-Bivakboerderij Greijmans"
        },
        {
            "id": 3732,
            "lat": 51.5237753,
            "lng": 5.5725176,
            "type": "poi",
            "category": "campsite",
            "title": "Minicamping Rust en Ruimte"
        },
        {
            "id": 51581,
            "lat": -14.8244634,
            "lng": 35.7072913,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51583,
            "lat": -14.8250182,
            "lng": 35.7069681,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31715,
            "lat": 45.0215967,
            "lng": 14.591664,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 54752,
            "lat": 43.1146124,
            "lng": -71.3254845,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3713,
            "lat": 51.5693084,
            "lng": 3.6604868,
            "type": "poi",
            "category": "campsite",
            "title": "Receptie RCN de Schotsman"
        },
        {
            "id": 3714,
            "lat": 45.0517064,
            "lng": 0.3918654,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal de Sourzac"
        },
        {
            "id": 3715,
            "lat": 36.4475833,
            "lng": 4.1283367,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3716,
            "lat": 52.8874448,
            "lng": 4.7513884,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Koegras"
        },
        {
            "id": 3717,
            "lat": 52.9213673,
            "lng": 6.3446287,
            "type": "poi",
            "category": "campsite",
            "title": "Boscamping Appelscha"
        },
        {
            "id": 3718,
            "lat": 52.900704,
            "lng": 6.1253137,
            "type": "poi",
            "category": "campsite",
            "title": "De Meenthe natuurkampeerterrein"
        },
        {
            "id": 3719,
            "lat": 47.4800429,
            "lng": 3.9134382,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal Sous Roche"
        },
        {
            "id": 3720,
            "lat": 51.4113306,
            "lng": 5.9013442,
            "type": "poi",
            "category": "campsite",
            "title": "Landgoed Julianahoeve"
        },
        {
            "id": 3721,
            "lat": 52.2288216,
            "lng": 6.2395014,
            "type": "poi",
            "category": "campsite",
            "title": "Oxerkamp"
        },
        {
            "id": 3722,
            "lat": 52.192341,
            "lng": 1.1189641,
            "type": "poi",
            "category": "campsite",
            "title": "Broughton Hall Caravan Club CL"
        },
        {
            "id": 3723,
            "lat": 52.0339243,
            "lng": 5.2656496,
            "type": "poi",
            "category": "campsite",
            "title": "Strosteeg"
        },
        {
            "id": 3724,
            "lat": 45.110542,
            "lng": 4.677559,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal de Chantelermuze"
        },
        {
            "id": 3725,
            "lat": 51.197051,
            "lng": 6.3362191,
            "type": "poi",
            "category": "campsite",
            "title": "Tipidorf"
        },
        {
            "id": 3726,
            "lat": 35.4376,
            "lng": -1.2350334,
            "type": "poi",
            "category": "campsite",
            "title": "Camping BADR BANK"
        },
        {
            "id": 3727,
            "lat": 48.3389416,
            "lng": 6.6386814,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Municipal de Rambervillers"
        },
        {
            "id": 3728,
            "lat": 51.7654237,
            "lng": -2.5604277,
            "type": "poi",
            "category": "campsite",
            "title": "Whitemead Park"
        },
        {
            "id": 3729,
            "lat": 50.1162937,
            "lng": 4.1652917,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Madame Basile"
        },
        {
            "id": 15310,
            "lat": 52.0797134,
            "lng": -0.7856899,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 51584,
            "lat": -14.8242611,
            "lng": 35.7078096,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51914,
            "lat": -11.0251983,
            "lng": 33.8529,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51918,
            "lat": -11.0261036,
            "lng": 33.8533538,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3734,
            "lat": 43.0461017,
            "lng": 0.8142912,
            "type": "poi",
            "category": "campsite",
            "title": "Aire naturelle de camping"
        },
        {
            "id": 3735,
            "lat": 43.0474176,
            "lng": 0.8146639,
            "type": "poi",
            "category": "campsite",
            "title": "Aire naturelle de camping"
        },
        {
            "id": 3736,
            "lat": 43.1914091,
            "lng": 5.6021395,
            "type": "poi",
            "category": "campsite",
            "title": "Le soleil"
        },
        {
            "id": 3738,
            "lat": 48.5619801,
            "lng": 1.6748281,
            "type": "poi",
            "category": "campsite",
            "title": "Bivouac de Gas"
        },
        {
            "id": 3739,
            "lat": 51.8115225,
            "lng": 4.9417595,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de la rue"
        },
        {
            "id": 3740,
            "lat": 47.4035778,
            "lng": 7.8485802,
            "type": "poi",
            "category": "campsite",
            "title": "camping"
        },
        {
            "id": 3741,
            "lat": 51.7781055,
            "lng": 5.0799717,
            "type": "poi",
            "category": "campsite",
            "title": "De Hoge Waard"
        },
        {
            "id": 3742,
            "lat": 51.7309381,
            "lng": 5.6031502,
            "type": "poi",
            "category": "campsite",
            "title": "Camping De Maashorst"
        },
        {
            "id": 3743,
            "lat": 52.2087463,
            "lng": 6.1094262,
            "type": "poi",
            "category": "campsite",
            "title": "Kampeerhoeve Bussloo"
        },
        {
            "id": 3744,
            "lat": 43.8956137,
            "lng": 1.3009493,
            "type": "poi",
            "category": "campsite",
            "title": "La Tisarne"
        },
        {
            "id": 3745,
            "lat": 35.0917481,
            "lng": -2.2499023,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3746,
            "lat": 51.243474,
            "lng": 6.060835,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Boschheide"
        },
        {
            "id": 3747,
            "lat": 50.7285405,
            "lng": -2.9690441,
            "type": "poi",
            "category": "campsite",
            "title": "Cannington farm campsite"
        },
        {
            "id": 3748,
            "lat": 52.3779813,
            "lng": -2.2849816,
            "type": "poi",
            "category": "campsite",
            "title": "Rhydd Covert Scout Camp"
        },
        {
            "id": 3749,
            "lat": 52.3925081,
            "lng": 7.0488267,
            "type": "poi",
            "category": "campsite",
            "title": "Camping & Bungalowpark De Papillon"
        },
        {
            "id": 3750,
            "lat": 52.3802901,
            "lng": 6.7280891,
            "type": "poi",
            "category": "campsite",
            "title": "Farmcamps de Boderie"
        },
        {
            "id": 3751,
            "lat": 53.2260128,
            "lng": -0.9995634,
            "type": "poi",
            "category": "campsite",
            "title": "Walesby Forest"
        },
        {
            "id": 3752,
            "lat": 52.9436323,
            "lng": -4.421134,
            "type": "poi",
            "category": "campsite",
            "title": "Away From It All Glamping Holiday"
        },
        {
            "id": 3753,
            "lat": 52.1403181,
            "lng": 5.7573374,
            "type": "poi",
            "category": "campsite",
            "title": "De Midden Veluwe"
        },
        {
            "id": 3754,
            "lat": 43.8543496,
            "lng": 5.4844832,
            "type": "poi",
            "category": "campsite",
            "title": "Aire naturelle Les Joncquiers"
        },
        {
            "id": 3799,
            "lat": 42.0154409,
            "lng": 9.0488049,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4878,
            "lat": 50.901559,
            "lng": -1.7729452,
            "type": "poi",
            "category": "campsite",
            "title": "Greenfields Camp Site"
        },
        {
            "id": 51585,
            "lat": -14.8243181,
            "lng": 35.7083769,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 17748,
            "lat": 44.0617724,
            "lng": 11.8459127,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 48795,
            "lat": 12.2030269,
            "lng": -86.0920694,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3756,
            "lat": 43.1369324,
            "lng": 3.1362045,
            "type": "poi",
            "category": "campsite",
            "title": "Village de vacances Cévéo"
        },
        {
            "id": 3757,
            "lat": 48.2026117,
            "lng": -2.0477211,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal"
        },
        {
            "id": 3758,
            "lat": 51.8765966,
            "lng": -3.2983933,
            "type": "poi",
            "category": "campsite",
            "title": "YHA Danywenallt"
        },
        {
            "id": 3760,
            "lat": 53.0630536,
            "lng": 5.5282986,
            "type": "poi",
            "category": "campsite",
            "title": "Stadscamping Bolsward"
        },
        {
            "id": 3761,
            "lat": 51.8346526,
            "lng": -3.68096,
            "type": "poi",
            "category": "campsite",
            "title": "Brecon Beacons Camping & Caravan Park"
        },
        {
            "id": 3762,
            "lat": 54.9437026,
            "lng": 9.8467776,
            "type": "poi",
            "category": "campsite",
            "title": "Augustenborg Skov Shelter- og Teltplads"
        },
        {
            "id": 3763,
            "lat": 53.0126996,
            "lng": 5.7852975,
            "type": "poi",
            "category": "campsite",
            "title": "Maran Camping"
        },
        {
            "id": 3764,
            "lat": 47.5979978,
            "lng": 2.0085839,
            "type": "poi",
            "category": "campsite",
            "title": "Parcelles des Chauguettes"
        },
        {
            "id": 3765,
            "lat": 39.1794045,
            "lng": -9.0487318,
            "type": "poi",
            "category": "campsite",
            "title": "Parque de Campismo Rural da Serra do Montejunto"
        },
        {
            "id": 3766,
            "lat": 44.2403651,
            "lng": 3.5787728,
            "type": "poi",
            "category": "campsite",
            "title": "La Molière"
        },
        {
            "id": 3767,
            "lat": 51.8679491,
            "lng": 5.6946913,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Muk"
        },
        {
            "id": 3768,
            "lat": 47.9666976,
            "lng": -3.8262027,
            "type": "poi",
            "category": "campsite",
            "title": "Camping des 3 étangs"
        },
        {
            "id": 3769,
            "lat": 51.015606,
            "lng": -0.0348539,
            "type": "poi",
            "category": "campsite",
            "title": "Wild Boar Wood Campsite"
        },
        {
            "id": 3770,
            "lat": 47.0089945,
            "lng": -1.3133767,
            "type": "poi",
            "category": "campsite",
            "title": "Camping du Bois Noir"
        },
        {
            "id": 3771,
            "lat": 46.8337729,
            "lng": -1.9831927,
            "type": "poi",
            "category": "campsite",
            "title": "La Loire Fleurie"
        },
        {
            "id": 3772,
            "lat": 44.7912788,
            "lng": 1.5995601,
            "type": "poi",
            "category": "campsite",
            "title": "Chez Gaby"
        },
        {
            "id": 3773,
            "lat": 51.523464,
            "lng": 3.9853706,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Kleine Stelle"
        },
        {
            "id": 3774,
            "lat": 43.7344163,
            "lng": 5.9724217,
            "type": "poi",
            "category": "campsite",
            "title": "Caming Vivre Plain"
        },
        {
            "id": 3775,
            "lat": 51.6627951,
            "lng": 5.5811966,
            "type": "poi",
            "category": "campsite",
            "title": "mini camping \"Bedafs Hofke\""
        },
        {
            "id": 3873,
            "lat": 45.246492,
            "lng": 2.694242,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 16554,
            "lat": 47.026497,
            "lng": 6.955979,
            "type": "poi",
            "category": "caravan_site",
            "title": "Stellplatz Chaumont"
        },
        {
            "id": 17759,
            "lat": 40.4146581,
            "lng": 15.0041828,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 27939,
            "lat": 36.6868127,
            "lng": 3.3636591,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51586,
            "lat": -14.8244659,
            "lng": 35.7079544,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3777,
            "lat": 52.830611,
            "lng": 4.7064305,
            "type": "poi",
            "category": "campsite",
            "title": "Hoeve Landzicht"
        },
        {
            "id": 3778,
            "lat": 44.0359132,
            "lng": 4.024288,
            "type": "poi",
            "category": "campsite",
            "title": "Camping domaine de Gaujac"
        },
        {
            "id": 3779,
            "lat": 51.8987915,
            "lng": 5.7689339,
            "type": "poi",
            "category": "campsite",
            "title": "Minicamping Achter t Hofke"
        },
        {
            "id": 3780,
            "lat": 46.4875121,
            "lng": 4.9128109,
            "type": "poi",
            "category": "campsite",
            "title": "Camping International d'Uchizy"
        },
        {
            "id": 3781,
            "lat": 45.9154877,
            "lng": 2.4871215,
            "type": "poi",
            "category": "campsite",
            "title": "Camping du château de la Mothe"
        },
        {
            "id": 3782,
            "lat": 45.6941742,
            "lng": 2.1210013,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal"
        },
        {
            "id": 3783,
            "lat": 45.2481675,
            "lng": 2.5366523,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Le Pioulat"
        },
        {
            "id": 3785,
            "lat": 46.8108445,
            "lng": 8.5609526,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3786,
            "lat": 46.0503047,
            "lng": 0.849239,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal"
        },
        {
            "id": 3787,
            "lat": 51.1084194,
            "lng": -0.0127439,
            "type": "poi",
            "category": "campsite",
            "title": "Evergreen Farm Woodland Campsite"
        },
        {
            "id": 3788,
            "lat": 40.0302335,
            "lng": -1.143982,
            "type": "poi",
            "category": "campsite",
            "title": "Fuente de Don Guillén"
        },
        {
            "id": 3789,
            "lat": 45.6899676,
            "lng": 3.6330134,
            "type": "poi",
            "category": "campsite",
            "title": "Camping les Chelles"
        },
        {
            "id": 3790,
            "lat": 43.7135537,
            "lng": 6.1863161,
            "type": "poi",
            "category": "campsite",
            "title": "Saint-Barthélémy"
        },
        {
            "id": 3791,
            "lat": 52.5201652,
            "lng": 6.0088226,
            "type": "poi",
            "category": "campsite",
            "title": "Kampeerplaats De Leaghte"
        },
        {
            "id": 3792,
            "lat": 44.2621641,
            "lng": 5.1295752,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de l'Ayguette"
        },
        {
            "id": 3793,
            "lat": 47.6118992,
            "lng": -3.1512451,
            "type": "poi",
            "category": "campsite",
            "title": "Keravel"
        },
        {
            "id": 3794,
            "lat": 50.6072833,
            "lng": 8.6692563,
            "type": "poi",
            "category": "campsite",
            "title": "Männerbadeverein Gießen"
        },
        {
            "id": 3795,
            "lat": 51.7736505,
            "lng": -2.6068201,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3796,
            "lat": 50.1457441,
            "lng": -5.5436828,
            "type": "poi",
            "category": "campsite",
            "title": "Noongallas"
        },
        {
            "id": 3797,
            "lat": 45.5746421,
            "lng": 7.2104689,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3798,
            "lat": 48.6238905,
            "lng": 9.1462458,
            "type": "poi",
            "category": "campsite",
            "title": "Waldjugendzeltplatz Jungviehweide"
        },
        {
            "id": 17764,
            "lat": 44.1230403,
            "lng": 10.3996619,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 23108,
            "lat": 46.7761428,
            "lng": 11.6415731,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 51587,
            "lat": -14.824488,
            "lng": 35.7086022,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48801,
            "lat": -22.1202809,
            "lng": -51.4146226,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48802,
            "lat": 36.9328807,
            "lng": -121.8626001,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51588,
            "lat": -14.8234871,
            "lng": 35.7088235,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51592,
            "lat": -14.8244783,
            "lng": 35.7095745,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51593,
            "lat": -14.8245826,
            "lng": 35.7101056,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3801,
            "lat": 44.0785564,
            "lng": 3.9543089,
            "type": "poi",
            "category": "campsite",
            "title": "Camping a la ferme Le Mas de l'Église"
        },
        {
            "id": 3802,
            "lat": 53.9284708,
            "lng": 9.889748,
            "type": "poi",
            "category": "campsite",
            "title": "Campingplatz Roland"
        },
        {
            "id": 3804,
            "lat": 46.0211406,
            "lng": 4.7931571,
            "type": "poi",
            "category": "campsite",
            "title": "Le Pigeonnier"
        },
        {
            "id": 3805,
            "lat": 46.0566842,
            "lng": 4.817804,
            "type": "poi",
            "category": "campsite",
            "title": "Simone Thete"
        },
        {
            "id": 3806,
            "lat": 45.9538766,
            "lng": 5.5333311,
            "type": "poi",
            "category": "campsite",
            "title": "Le Pré Commun"
        },
        {
            "id": 3807,
            "lat": 46.0309297,
            "lng": 5.4974679,
            "type": "poi",
            "category": "campsite",
            "title": "Les Thuyas"
        },
        {
            "id": 3808,
            "lat": 46.3319664,
            "lng": 5.1532981,
            "type": "poi",
            "category": "campsite",
            "title": "Ferme Equestre Malafretaz"
        },
        {
            "id": 3809,
            "lat": 46.1499238,
            "lng": 5.6009741,
            "type": "poi",
            "category": "campsite",
            "title": "Le Signal"
        },
        {
            "id": 3810,
            "lat": 46.1396193,
            "lng": 5.6589386,
            "type": "poi",
            "category": "campsite",
            "title": "Le camping des Granges"
        },
        {
            "id": 3811,
            "lat": 46.2519708,
            "lng": 5.2658721,
            "type": "poi",
            "category": "campsite",
            "title": "Aire Naturelle Chatard"
        },
        {
            "id": 3812,
            "lat": 46.2069252,
            "lng": 4.9823156,
            "type": "poi",
            "category": "campsite",
            "title": "Ferme Marchand"
        },
        {
            "id": 3813,
            "lat": 50.0099175,
            "lng": 3.7086425,
            "type": "poi",
            "category": "campsite",
            "title": "Aire Naturelle Boué"
        },
        {
            "id": 3814,
            "lat": 49.5250044,
            "lng": 3.6608337,
            "type": "poi",
            "category": "campsite",
            "title": "Aire Naturelle Bruyères et Montbérault"
        },
        {
            "id": 3815,
            "lat": 49.3828853,
            "lng": 3.473142,
            "type": "poi",
            "category": "campsite",
            "title": "Les Etangs"
        },
        {
            "id": 3816,
            "lat": 49.4019801,
            "lng": 3.5133605,
            "type": "poi",
            "category": "campsite",
            "title": "Le Domaine de la Nature"
        },
        {
            "id": 3817,
            "lat": 49.6052835,
            "lng": 5.0829209,
            "type": "poi",
            "category": "campsite",
            "title": "La Tour Saint-Jérôme"
        },
        {
            "id": 3818,
            "lat": 49.5038307,
            "lng": 4.6833162,
            "type": "poi",
            "category": "campsite",
            "title": "Camping à la ferme"
        },
        {
            "id": 3819,
            "lat": 49.8801473,
            "lng": 4.8255431,
            "type": "poi",
            "category": "campsite",
            "title": "Le Faucon"
        },
        {
            "id": 3820,
            "lat": 48.312016,
            "lng": 4.3337114,
            "type": "poi",
            "category": "campsite",
            "title": "L'Européen"
        },
        {
            "id": 3821,
            "lat": 48.2580639,
            "lng": 4.3425545,
            "type": "poi",
            "category": "campsite",
            "title": "Base de Loisirs Départementale"
        },
        {
            "id": 3822,
            "lat": 48.0244167,
            "lng": 4.0117333,
            "type": "poi",
            "category": "campsite",
            "title": "Ferme de M. DIAZ"
        },
        {
            "id": 3823,
            "lat": 45.9088335,
            "lng": 0.2521923,
            "type": "poi",
            "category": "campsite",
            "title": "Le Magnerit"
        },
        {
            "id": 1346,
            "lat": 37.0633457,
            "lng": 44.8977444,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 15315,
            "lat": 50.9087041,
            "lng": -1.5578002,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 51594,
            "lat": -14.8244439,
            "lng": 35.7098172,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31721,
            "lat": 36.7323775,
            "lng": 14.6808913,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29539,
            "lat": 41.5874447,
            "lng": 2.5852436,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9244,
            "lat": 45.2783819,
            "lng": 9.3568483,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 3825,
            "lat": 45.2130374,
            "lng": 0.1285751,
            "type": "poi",
            "category": "campsite",
            "title": "La Petite Grange"
        },
        {
            "id": 3826,
            "lat": 45.8245974,
            "lng": 0.4448208,
            "type": "poi",
            "category": "campsite",
            "title": "Les Charmilles"
        },
        {
            "id": 3827,
            "lat": 46.0144459,
            "lng": 0.2130986,
            "type": "poi",
            "category": "campsite",
            "title": "Le Réjallant"
        },
        {
            "id": 3828,
            "lat": 45.996297,
            "lng": 0.318973,
            "type": "poi",
            "category": "campsite",
            "title": "Le Val d'Argentor"
        },
        {
            "id": 3830,
            "lat": 46.0915324,
            "lng": 0.4982089,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Pleuville"
        },
        {
            "id": 3831,
            "lat": 45.8418375,
            "lng": 0.2722467,
            "type": "poi",
            "category": "campsite",
            "title": "Chez Devezeau"
        },
        {
            "id": 3832,
            "lat": 46.0156099,
            "lng": 0.8764916,
            "type": "poi",
            "category": "campsite",
            "title": "En Campagne"
        },
        {
            "id": 3833,
            "lat": 46.0426491,
            "lng": 0.6738897,
            "type": "poi",
            "category": "campsite",
            "title": "Le Petit Mas D'Île"
        },
        {
            "id": 3834,
            "lat": 45.9605167,
            "lng": 0.5282465,
            "type": "poi",
            "category": "campsite",
            "title": "Laurent"
        },
        {
            "id": 3835,
            "lat": 45.6076223,
            "lng": 0.0246274,
            "type": "poi",
            "category": "campsite",
            "title": "Le Nizour"
        },
        {
            "id": 3836,
            "lat": 45.8592144,
            "lng": 0.6383351,
            "type": "poi",
            "category": "campsite",
            "title": "La Blanchie"
        },
        {
            "id": 3837,
            "lat": 46.0071313,
            "lng": 0.0975545,
            "type": "poi",
            "category": "campsite",
            "title": "Le Chassagne"
        },
        {
            "id": 3838,
            "lat": 47.5687214,
            "lng": 2.4407212,
            "type": "poi",
            "category": "campsite",
            "title": "Les Petits Près"
        },
        {
            "id": 3839,
            "lat": 47.5709876,
            "lng": 2.4077961,
            "type": "poi",
            "category": "campsite",
            "title": "Domaine d'Inyan"
        },
        {
            "id": 3840,
            "lat": 46.8091786,
            "lng": 2.7317306,
            "type": "poi",
            "category": "campsite",
            "title": "Le Pont de Sargy"
        },
        {
            "id": 3841,
            "lat": 46.7354327,
            "lng": 2.7968336,
            "type": "poi",
            "category": "campsite",
            "title": "Le Village de Goule"
        },
        {
            "id": 3842,
            "lat": 47.2912458,
            "lng": 2.5385916,
            "type": "poi",
            "category": "campsite",
            "title": "Le Petit Bois"
        },
        {
            "id": 3843,
            "lat": 47.3895107,
            "lng": 2.6815475,
            "type": "poi",
            "category": "campsite",
            "title": "La Balance - fermé pour rénovation"
        },
        {
            "id": 3844,
            "lat": 46.8139353,
            "lng": 2.3021596,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Saint-Symphorien"
        },
        {
            "id": 3845,
            "lat": 46.5412949,
            "lng": 2.4261846,
            "type": "poi",
            "category": "campsite",
            "title": "Au Soleil du Berry"
        },
        {
            "id": 3847,
            "lat": 45.9154652,
            "lng": 4.0602944,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Mars"
        },
        {
            "id": 29540,
            "lat": 41.587225,
            "lng": 2.5843462,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51611,
            "lat": -14.9082192,
            "lng": 35.7109733,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52185,
            "lat": -13.8444746,
            "lng": 34.5785501,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51635,
            "lat": -14.7861669,
            "lng": 35.7659822,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31736,
            "lat": 49.4696973,
            "lng": 21.219315,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9246,
            "lat": 45.7109798,
            "lng": 9.6937788,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 31737,
            "lat": 44.248287,
            "lng": 15.177771,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31738,
            "lat": 61.9836923,
            "lng": 26.6335866,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 54822,
            "lat": 43.6942427,
            "lng": -86.4811027,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31739,
            "lat": 44.673812,
            "lng": 14.3964517,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29676,
            "lat": 42.3466173,
            "lng": -3.6769852,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 15318,
            "lat": 52.9339144,
            "lng": 7.9313374,
            "type": "poi",
            "category": "caravan_site",
            "title": "Thülsfelder Talsperre"
        },
        {
            "id": 15319,
            "lat": 42.5445581,
            "lng": -5.588294,
            "type": "poi",
            "category": "caravan_site",
            "title": "Area de León-Parking"
        },
        {
            "id": 15322,
            "lat": 42.4510722,
            "lng": -6.0645625,
            "type": "poi",
            "category": "caravan_site",
            "title": "Los Maragatos"
        },
        {
            "id": 45889,
            "lat": 51.671644,
            "lng": 101.0336135,
            "type": "poi",
            "category": "caravan_site",
            "title": "Вот"
        },
        {
            "id": 45890,
            "lat": 52.7956235,
            "lng": 106.6113375,
            "type": "poi",
            "category": "caravan_site",
            "title": "Старт тадеранских2"
        },
        {
            "id": 30414,
            "lat": 48.3198787,
            "lng": 14.3293963,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30415,
            "lat": 48.3213651,
            "lng": 14.3341576,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51612,
            "lat": -14.8781793,
            "lng": 35.7399455,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51613,
            "lat": -14.8789673,
            "lng": 35.7391878,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51626,
            "lat": -14.8231114,
            "lng": 35.709614,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51632,
            "lat": -14.8053191,
            "lng": 35.7409806,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51633,
            "lat": -14.8054857,
            "lng": 35.7427533,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51634,
            "lat": -14.785937,
            "lng": 35.7654621,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29677,
            "lat": 49.2308313,
            "lng": -1.6473452,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 55192,
            "lat": -28.1647503,
            "lng": 153.5458857,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 55193,
            "lat": -28.1640349,
            "lng": 153.5482726,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27941,
            "lat": 48.666039,
            "lng": 4.7337721,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48815,
            "lat": 54.0799627,
            "lng": 61.5412021,
            "type": "poi",
            "category": "shower",
            "title": "Лагуна"
        },
        {
            "id": 9247,
            "lat": 45.0799434,
            "lng": 6.7244676,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 51636,
            "lat": -14.7865071,
            "lng": 35.765235,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51637,
            "lat": -14.9076608,
            "lng": 35.7041908,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 1413,
            "lat": 54.6401326,
            "lng": 39.8981172,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 51638,
            "lat": -14.9085653,
            "lng": 35.7056817,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51639,
            "lat": -14.9086381,
            "lng": 35.7045238,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51653,
            "lat": -15.0617567,
            "lng": 35.2345625,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 17767,
            "lat": 59.9963744,
            "lng": 30.1105933,
            "type": "poi",
            "category": "caravan_site",
            "title": "Olgino"
        },
        {
            "id": 38753,
            "lat": -16.1911675,
            "lng": 145.415296,
            "type": "poi",
            "category": "caravan_site",
            "title": "Rainforest Village"
        },
        {
            "id": 19414,
            "lat": 41.9086176,
            "lng": 19.2505039,
            "type": "poi",
            "category": "caravan_site",
            "title": "Autocamping Miami"
        },
        {
            "id": 47011,
            "lat": -40.8762931,
            "lng": 172.8126785,
            "type": "poi",
            "category": "caravan_site",
            "title": "Freedom camping spot"
        },
        {
            "id": 48812,
            "lat": 9.5421675,
            "lng": 100.076159,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48813,
            "lat": 9.5425406,
            "lng": 100.076074,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30417,
            "lat": 48.4002826,
            "lng": 17.165954,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51654,
            "lat": -15.0618266,
            "lng": 35.2345773,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51655,
            "lat": -15.0537623,
            "lng": 35.231249,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51659,
            "lat": -14.9675708,
            "lng": 35.6264069,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51660,
            "lat": -14.967896,
            "lng": 35.62636,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29734,
            "lat": 52.8348289,
            "lng": 6.6605151,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29735,
            "lat": 54.4854353,
            "lng": 8.8186062,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29736,
            "lat": 41.7333087,
            "lng": 2.950668,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 55202,
            "lat": -30.4972625,
            "lng": 153.0225867,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31874,
            "lat": 53.9228449,
            "lng": 14.2477333,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31875,
            "lat": 59.2831005,
            "lng": 15.1749529,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27945,
            "lat": 42.2614499,
            "lng": -8.7691857,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 55332,
            "lat": -19.2323085,
            "lng": 18.4989091,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 55345,
            "lat": 43.0272629,
            "lng": 141.462509,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27946,
            "lat": 42.2620384,
            "lng": -8.7705619,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51746,
            "lat": 45.7255551,
            "lng": -68.8360268,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3951,
            "lat": 44.9130682,
            "lng": 1.0154141,
            "type": "poi",
            "category": "campsite",
            "title": "La Combe"
        },
        {
            "id": 51747,
            "lat": 47.8061076,
            "lng": -120.7269909,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9248,
            "lat": 45.0798248,
            "lng": 6.7237948,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 29786,
            "lat": 48.080499,
            "lng": 9.4569294,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29787,
            "lat": 48.079802,
            "lng": 9.4570284,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 55349,
            "lat": 14.1699389,
            "lng": 121.2029877,
            "type": "poi",
            "category": "shower",
            "title": "CT Place Resort"
        },
        {
            "id": 29788,
            "lat": 48.0810398,
            "lng": 9.4579799,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29800,
            "lat": 50.8469066,
            "lng": 2.8972721,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 29801,
            "lat": 43.7334136,
            "lng": 7.428713,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 55494,
            "lat": 27.9993617,
            "lng": 34.4347847,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 55495,
            "lat": 27.9973468,
            "lng": 34.4334218,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 55496,
            "lat": 34.7140909,
            "lng": 135.2273958,
            "type": "poi",
            "category": "shower",
            "title": "Onsen"
        },
        {
            "id": 55498,
            "lat": 0.8666393,
            "lng": 36.8076999,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 55741,
            "lat": 26.5422684,
            "lng": -78.5739331,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 55742,
            "lat": 15.8437853,
            "lng": -5.7873685,
            "type": "poi",
            "category": "shower",
            "title": "7"
        },
        {
            "id": 55743,
            "lat": 15.838126,
            "lng": -5.7849695,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 55760,
            "lat": 15.8374385,
            "lng": -5.7867129,
            "type": "poi",
            "category": "shower",
            "title": "128"
        },
        {
            "id": 55813,
            "lat": 15.8392496,
            "lng": -5.7909385,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 55814,
            "lat": 15.8417197,
            "lng": -5.7874492,
            "type": "poi",
            "category": "shower",
            "title": "74"
        },
        {
            "id": 55815,
            "lat": 15.8418908,
            "lng": -5.7894217,
            "type": "poi",
            "category": "shower",
            "title": "55"
        },
        {
            "id": 55816,
            "lat": 15.8430078,
            "lng": -5.7873321,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 55817,
            "lat": 15.8406954,
            "lng": -5.7875461,
            "type": "poi",
            "category": "shower",
            "title": "7"
        },
        {
            "id": 55818,
            "lat": 15.8410603,
            "lng": -5.790154,
            "type": "poi",
            "category": "shower",
            "title": "68"
        },
        {
            "id": 38772,
            "lat": 37.5265698,
            "lng": -88.584594,
            "type": "poi",
            "category": "caravan_site",
            "title": "Bear Branch Horse Resort"
        },
        {
            "id": 38775,
            "lat": 37.540389,
            "lng": -107.1983828,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 51748,
            "lat": 45.7286332,
            "lng": -68.8376017,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51763,
            "lat": -14.9410788,
            "lng": 35.8078836,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 55318,
            "lat": 33.3815136,
            "lng": -84.3149179,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 45985,
            "lat": 43.7564819,
            "lng": -110.9190166,
            "type": "poi",
            "category": "caravan_site",
            "title": "Site 12"
        },
        {
            "id": 55822,
            "lat": 15.8434998,
            "lng": -5.7858821,
            "type": "poi",
            "category": "shower",
            "title": "2"
        },
        {
            "id": 55824,
            "lat": 15.841097,
            "lng": -5.7897713,
            "type": "poi",
            "category": "shower",
            "title": "65"
        },
        {
            "id": 55864,
            "lat": 15.8409003,
            "lng": -5.7881977,
            "type": "poi",
            "category": "shower",
            "title": "663"
        },
        {
            "id": 55878,
            "lat": 15.8445298,
            "lng": -5.7926915,
            "type": "poi",
            "category": "shower",
            "title": "27"
        },
        {
            "id": 55915,
            "lat": 15.8442499,
            "lng": -5.7934202,
            "type": "poi",
            "category": "shower",
            "title": "440"
        },
        {
            "id": 55916,
            "lat": 15.844268,
            "lng": -5.7927597,
            "type": "poi",
            "category": "shower",
            "title": "432"
        },
        {
            "id": 55985,
            "lat": 15.8416246,
            "lng": -5.7880995,
            "type": "poi",
            "category": "shower",
            "title": "39"
        },
        {
            "id": 55993,
            "lat": 15.8402741,
            "lng": -5.7909413,
            "type": "poi",
            "category": "shower",
            "title": "lt 6"
        },
        {
            "id": 30420,
            "lat": 55.668346,
            "lng": 12.5772724,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3948,
            "lat": 54.4076758,
            "lng": -2.2036591,
            "type": "poi",
            "category": "campsite",
            "title": "Hoggarths campsite"
        },
        {
            "id": 3949,
            "lat": 54.4048428,
            "lng": -2.1664373,
            "type": "poi",
            "category": "campsite",
            "title": "Rukin's Park Lodge Campsite"
        },
        {
            "id": 30421,
            "lat": 55.6686327,
            "lng": 12.577757,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51764,
            "lat": -14.9381743,
            "lng": 35.80507,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51765,
            "lat": -14.9382521,
            "lng": 35.8051572,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 38728,
            "lat": 40.6282755,
            "lng": -96.5755279,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 38810,
            "lat": -41.6265587,
            "lng": 146.710876,
            "type": "poi",
            "category": "caravan_site",
            "title": "Quamby Corner"
        },
        {
            "id": 51767,
            "lat": -14.9387892,
            "lng": 35.8057861,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51768,
            "lat": -14.9388605,
            "lng": 35.8058217,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51769,
            "lat": -14.9390451,
            "lng": 35.8056252,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51791,
            "lat": -14.9499762,
            "lng": 35.8012703,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51792,
            "lat": -14.9500155,
            "lng": 35.8018459,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52319,
            "lat": -13.9049776,
            "lng": 34.5402221,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52587,
            "lat": 10.2610295,
            "lng": 103.9337813,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52588,
            "lat": 10.2607876,
            "lng": 103.9341664,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 55819,
            "lat": 15.8404929,
            "lng": -5.7874214,
            "type": "poi",
            "category": "shower",
            "title": "76"
        },
        {
            "id": 55821,
            "lat": 15.8399619,
            "lng": -5.7893552,
            "type": "poi",
            "category": "shower",
            "title": "1"
        },
        {
            "id": 28695,
            "lat": 51.8884411,
            "lng": 8.5008708,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3954,
            "lat": 41.9117159,
            "lng": 2.3845145,
            "type": "poi",
            "category": "campsite",
            "title": "Càmping Molí de Bojons"
        },
        {
            "id": 3955,
            "lat": 49.5701413,
            "lng": 1.872525,
            "type": "poi",
            "category": "campsite",
            "title": "Aire naturelle de camping les mésanges"
        },
        {
            "id": 3956,
            "lat": 44.0778959,
            "lng": -1.2888173,
            "type": "poi",
            "category": "campsite",
            "title": "Le Tuc"
        },
        {
            "id": 3957,
            "lat": 44.5244084,
            "lng": 2.6789119,
            "type": "poi",
            "category": "campsite",
            "title": "Les Yourtes de Sébrazac"
        },
        {
            "id": 3958,
            "lat": 45.9222779,
            "lng": 6.8288825,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3959,
            "lat": 45.9222257,
            "lng": 6.8290917,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3960,
            "lat": 43.1385138,
            "lng": 1.1265207,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de La Fitte"
        },
        {
            "id": 3961,
            "lat": 48.060865,
            "lng": -3.4139268,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Le Lac Ô Fées"
        },
        {
            "id": 3962,
            "lat": 52.7632806,
            "lng": 1.6318325,
            "type": "poi",
            "category": "campsite",
            "title": "Walnut Farm"
        },
        {
            "id": 3963,
            "lat": 48.9384221,
            "lng": -0.6787328,
            "type": "poi",
            "category": "campsite",
            "title": "La Ferme d'Escures"
        },
        {
            "id": 3964,
            "lat": 51.921584,
            "lng": 6.7192285,
            "type": "poi",
            "category": "campsite",
            "title": "De Brömmels Camping en Geitenkaasboerderij"
        },
        {
            "id": 3966,
            "lat": 50.0712977,
            "lng": 4.4751087,
            "type": "poi",
            "category": "campsite",
            "title": "Bivouac de Boussu-en-Fagne"
        },
        {
            "id": 3967,
            "lat": 54.4626954,
            "lng": -2.5550505,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3968,
            "lat": 49.9862215,
            "lng": 4.1609576,
            "type": "poi",
            "category": "campsite",
            "title": "Bivouac du Nouveau Monde"
        },
        {
            "id": 3969,
            "lat": 50.143572,
            "lng": 4.3047671,
            "type": "poi",
            "category": "campsite",
            "title": "Bivouac du Bois de Hernoy"
        },
        {
            "id": 3970,
            "lat": 52.9426871,
            "lng": 0.7165844,
            "type": "poi",
            "category": "campsite",
            "title": "Fallowfield"
        },
        {
            "id": 3971,
            "lat": 52.9555843,
            "lng": 0.8389671,
            "type": "poi",
            "category": "campsite",
            "title": "Mill Farm"
        },
        {
            "id": 3972,
            "lat": 52.9596878,
            "lng": 0.5477879,
            "type": "poi",
            "category": "campsite",
            "title": "Newholm Nurseries"
        },
        {
            "id": 3973,
            "lat": 52.9497015,
            "lng": 0.8657417,
            "type": "poi",
            "category": "campsite",
            "title": "Blue Skies Campsite"
        },
        {
            "id": 3974,
            "lat": 52.9348742,
            "lng": 0.7641187,
            "type": "poi",
            "category": "campsite",
            "title": "Whitehall Farm"
        },
        {
            "id": 9249,
            "lat": 45.0828373,
            "lng": 7.6324813,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 28696,
            "lat": 51.8878645,
            "lng": 8.5006917,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48851,
            "lat": 28.3778162,
            "lng": -16.723717,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 3976,
            "lat": 52.8698656,
            "lng": 0.6917029,
            "type": "poi",
            "category": "campsite",
            "title": "The Garden"
        },
        {
            "id": 3977,
            "lat": 52.8720814,
            "lng": 0.7925149,
            "type": "poi",
            "category": "campsite",
            "title": "Viewlands"
        },
        {
            "id": 3978,
            "lat": 52.8521903,
            "lng": 1.0563602,
            "type": "poi",
            "category": "campsite",
            "title": "Pineview"
        },
        {
            "id": 3979,
            "lat": 52.7819122,
            "lng": 1.0121813,
            "type": "poi",
            "category": "campsite",
            "title": "The Queen's Head"
        },
        {
            "id": 3981,
            "lat": 52.8999352,
            "lng": 0.930795,
            "type": "poi",
            "category": "campsite",
            "title": "Birds Farm"
        },
        {
            "id": 3982,
            "lat": 52.8436302,
            "lng": 0.8317539,
            "type": "poi",
            "category": "campsite",
            "title": "Fakenham Campsite"
        },
        {
            "id": 3983,
            "lat": 52.8215488,
            "lng": 0.8519106,
            "type": "poi",
            "category": "campsite",
            "title": "Fakenham Racecourse camping"
        },
        {
            "id": 3984,
            "lat": 52.9444211,
            "lng": 1.0037466,
            "type": "poi",
            "category": "campsite",
            "title": "Galleu Hill Farm"
        },
        {
            "id": 3985,
            "lat": 52.9461623,
            "lng": 1.0575861,
            "type": "poi",
            "category": "campsite",
            "title": "Rectory Hill"
        },
        {
            "id": 3986,
            "lat": 52.9128006,
            "lng": 1.1714922,
            "type": "poi",
            "category": "campsite",
            "title": "Rookery Farm"
        },
        {
            "id": 3987,
            "lat": 52.9261498,
            "lng": 0.920659,
            "type": "poi",
            "category": "campsite",
            "title": "Short Lane Farm"
        },
        {
            "id": 3988,
            "lat": 52.8515952,
            "lng": 0.9147062,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 3989,
            "lat": 52.870306,
            "lng": 1.1609053,
            "type": "poi",
            "category": "campsite",
            "title": "Green Farm"
        },
        {
            "id": 3990,
            "lat": 52.9286247,
            "lng": 1.2680668,
            "type": "poi",
            "category": "campsite",
            "title": "Manor Farm"
        },
        {
            "id": 3991,
            "lat": 52.9205737,
            "lng": 1.2437844,
            "type": "poi",
            "category": "campsite",
            "title": "Moorland Park"
        },
        {
            "id": 3992,
            "lat": 52.9130172,
            "lng": 1.2886121,
            "type": "poi",
            "category": "campsite",
            "title": "Oakwood"
        },
        {
            "id": 3993,
            "lat": 52.8330574,
            "lng": 1.1025806,
            "type": "poi",
            "category": "campsite",
            "title": "Pee Wit Farm"
        },
        {
            "id": 3994,
            "lat": 52.932413,
            "lng": 1.2697324,
            "type": "poi",
            "category": "campsite",
            "title": "Wyld Flowers"
        },
        {
            "id": 3995,
            "lat": 52.9026011,
            "lng": 1.3600438,
            "type": "poi",
            "category": "campsite",
            "title": "Pond Farm"
        },
        {
            "id": 3996,
            "lat": 52.9043952,
            "lng": 1.3396154,
            "type": "poi",
            "category": "campsite",
            "title": "Shrublands Farm"
        },
        {
            "id": 3997,
            "lat": 52.0581354,
            "lng": 0.2476445,
            "type": "poi",
            "category": "campsite",
            "title": "Ashwell House"
        },
        {
            "id": 3998,
            "lat": 52.803054,
            "lng": 1.3501354,
            "type": "poi",
            "category": "campsite",
            "title": "Model Farm"
        },
        {
            "id": 3999,
            "lat": 52.8744603,
            "lng": 1.3269694,
            "type": "poi",
            "category": "campsite",
            "title": "Poppyland"
        },
        {
            "id": 4000,
            "lat": 52.73955,
            "lng": 1.24568,
            "type": "poi",
            "category": "campsite",
            "title": "Cobbleacre Park Lakes"
        },
        {
            "id": 4001,
            "lat": 52.7504557,
            "lng": 1.2299279,
            "type": "poi",
            "category": "campsite",
            "title": "Hevingham Lakes"
        },
        {
            "id": 4002,
            "lat": 52.7724796,
            "lng": 1.2314434,
            "type": "poi",
            "category": "campsite",
            "title": "Top Farm"
        },
        {
            "id": 4003,
            "lat": 47.7856271,
            "lng": -3.5711084,
            "type": "poi",
            "category": "campsite",
            "title": "Au Vieux Moulin"
        },
        {
            "id": 4004,
            "lat": 51.7635038,
            "lng": -2.70523,
            "type": "poi",
            "category": "campsite",
            "title": "Highlands Camping and Caravan Site"
        },
        {
            "id": 4005,
            "lat": 43.7628695,
            "lng": 2.4360322,
            "type": "poi",
            "category": "campsite",
            "title": "Base de Loisirs-Camping La Forêt"
        },
        {
            "id": 4006,
            "lat": 53.2420266,
            "lng": -1.8611312,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4007,
            "lat": 46.9482463,
            "lng": 6.8699964,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de la plage de Boudry"
        },
        {
            "id": 4008,
            "lat": 52.733307,
            "lng": 0.8196542,
            "type": "poi",
            "category": "campsite",
            "title": "Mill Farm"
        },
        {
            "id": 4206,
            "lat": 53.0076945,
            "lng": -7.3702902,
            "type": "poi",
            "category": "campsite",
            "title": "Laois Caravan & Camping Park"
        },
        {
            "id": 31024,
            "lat": 40.2489475,
            "lng": 23.2519114,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 4010,
            "lat": 52.7139716,
            "lng": 1.149509,
            "type": "poi",
            "category": "campsite",
            "title": "The Station"
        },
        {
            "id": 4011,
            "lat": 52.7215852,
            "lng": 1.059875,
            "type": "poi",
            "category": "campsite",
            "title": "Utopia Paradise"
        },
        {
            "id": 4012,
            "lat": 52.703332,
            "lng": 1.3142784,
            "type": "poi",
            "category": "campsite",
            "title": "New Farm"
        },
        {
            "id": 4013,
            "lat": 52.8041218,
            "lng": 1.5156203,
            "type": "poi",
            "category": "campsite",
            "title": "Whittletons Farm"
        },
        {
            "id": 4015,
            "lat": 45.1256456,
            "lng": 0.9795912,
            "type": "poi",
            "category": "campsite",
            "title": "Camping du Manoire"
        },
        {
            "id": 4016,
            "lat": 36.2198937,
            "lng": 0.4501984,
            "type": "poi",
            "category": "campsite",
            "title": "Camping مخيم"
        },
        {
            "id": 4017,
            "lat": 52.7124361,
            "lng": 1.5761428,
            "type": "poi",
            "category": "campsite",
            "title": "Causeway Cottage"
        },
        {
            "id": 4018,
            "lat": 52.6362093,
            "lng": 1.4967808,
            "type": "poi",
            "category": "campsite",
            "title": "Church Farm"
        },
        {
            "id": 4019,
            "lat": 52.6073837,
            "lng": 1.4692642,
            "type": "poi",
            "category": "campsite",
            "title": "Strumpshaw Steam Museum"
        },
        {
            "id": 4020,
            "lat": 52.7018756,
            "lng": 1.5151134,
            "type": "poi",
            "category": "campsite",
            "title": "The Dog Inn"
        },
        {
            "id": 4021,
            "lat": 52.7052351,
            "lng": 1.585097,
            "type": "poi",
            "category": "campsite",
            "title": "White House"
        },
        {
            "id": 4022,
            "lat": 52.6929973,
            "lng": 1.5585464,
            "type": "poi",
            "category": "campsite",
            "title": "Woodside Farm"
        },
        {
            "id": 4023,
            "lat": 52.6811513,
            "lng": 1.555465,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4024,
            "lat": 52.4871161,
            "lng": 1.375675,
            "type": "poi",
            "category": "campsite",
            "title": "Bedingham Hall Farm"
        },
        {
            "id": 4025,
            "lat": 52.5436486,
            "lng": 1.1809339,
            "type": "poi",
            "category": "campsite",
            "title": "Claggan"
        },
        {
            "id": 4026,
            "lat": 50.7018776,
            "lng": -2.2191328,
            "type": "poi",
            "category": "campsite",
            "title": "Longthorns Farm Camping Site"
        },
        {
            "id": 4027,
            "lat": 52.8631935,
            "lng": 0.613295,
            "type": "poi",
            "category": "campsite",
            "title": "Bircham Windmill"
        },
        {
            "id": 4028,
            "lat": 52.7278196,
            "lng": 0.5436813,
            "type": "poi",
            "category": "campsite",
            "title": "Gayton Road Fisheries"
        },
        {
            "id": 4029,
            "lat": 52.6973389,
            "lng": 0.5702203,
            "type": "poi",
            "category": "campsite",
            "title": "Maytree House"
        },
        {
            "id": 4030,
            "lat": 52.5732919,
            "lng": 1.0514358,
            "type": "poi",
            "category": "campsite",
            "title": "Milestone Farm"
        },
        {
            "id": 4031,
            "lat": 52.6413779,
            "lng": 0.743943,
            "type": "poi",
            "category": "campsite",
            "title": "Petygards Hall"
        },
        {
            "id": 4032,
            "lat": 52.5781497,
            "lng": 0.9689013,
            "type": "poi",
            "category": "campsite",
            "title": "Rectory Farm"
        },
        {
            "id": 4033,
            "lat": 52.8802446,
            "lng": 0.5011032,
            "type": "poi",
            "category": "campsite",
            "title": "The Queen Victoria"
        },
        {
            "id": 4034,
            "lat": 52.6257511,
            "lng": 0.6329574,
            "type": "poi",
            "category": "campsite",
            "title": "Drymere Lodge"
        },
        {
            "id": 4035,
            "lat": 52.6912607,
            "lng": 1.6974657,
            "type": "poi",
            "category": "campsite",
            "title": "Lawn and Paddock View"
        },
        {
            "id": 4036,
            "lat": 52.6998974,
            "lng": 1.7031132,
            "type": "poi",
            "category": "campsite",
            "title": "Long Beach"
        },
        {
            "id": 4037,
            "lat": 52.7827195,
            "lng": 0.5341556,
            "type": "poi",
            "category": "campsite",
            "title": "The Anvil Inn"
        },
        {
            "id": 4038,
            "lat": 45.8023209,
            "lng": 6.205681,
            "type": "poi",
            "category": "campsite",
            "title": "Le Taillefer"
        },
        {
            "id": 4039,
            "lat": 52.191302,
            "lng": 6.5740098,
            "type": "poi",
            "category": "campsite",
            "title": "De Mölnhöfte"
        },
        {
            "id": 1481,
            "lat": 65.2867275,
            "lng": 30.5653789,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 51841,
            "lat": -15.0754397,
            "lng": 35.5159312,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51842,
            "lat": -15.0761778,
            "lng": 35.5150407,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52416,
            "lat": 20.9019914,
            "lng": -156.4378218,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 4041,
            "lat": 54.7408,
            "lng": 9.5881,
            "type": "poi",
            "category": "campsite",
            "title": "Übernachtungsplatz Winderatter See"
        },
        {
            "id": 4042,
            "lat": 54.7551216,
            "lng": 9.848087,
            "type": "poi",
            "category": "campsite",
            "title": "Trekkingplatz Koppelheck"
        },
        {
            "id": 4043,
            "lat": 46.2533849,
            "lng": -0.7559225,
            "type": "poi",
            "category": "campsite",
            "title": "Le village des toiles"
        },
        {
            "id": 4044,
            "lat": 40.90658,
            "lng": 0.0626397,
            "type": "poi",
            "category": "campsite",
            "title": "La Fresneda"
        },
        {
            "id": 4045,
            "lat": 38.3252917,
            "lng": -2.5745831,
            "type": "poi",
            "category": "campsite",
            "title": "Zona de Acampada las Acebeas"
        },
        {
            "id": 4046,
            "lat": 38.2520633,
            "lng": -2.6838459,
            "type": "poi",
            "category": "campsite",
            "title": "Camping El Robledo"
        },
        {
            "id": 4047,
            "lat": 43.8627259,
            "lng": -1.2742588,
            "type": "poi",
            "category": "campsite",
            "title": "Aire naturelle Petit-Jean"
        },
        {
            "id": 4048,
            "lat": 50.525515,
            "lng": -4.9603158,
            "type": "poi",
            "category": "campsite",
            "title": "Tregella"
        },
        {
            "id": 4049,
            "lat": 46.5526668,
            "lng": -1.0088943,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal"
        },
        {
            "id": 4050,
            "lat": 50.1915936,
            "lng": -5.3292267,
            "type": "poi",
            "category": "campsite",
            "title": "Lavendar Hill"
        },
        {
            "id": 4051,
            "lat": 50.4100576,
            "lng": -4.9915904,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4052,
            "lat": 44.5938105,
            "lng": 5.1536388,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Tzig'ane"
        },
        {
            "id": 4053,
            "lat": 51.6308114,
            "lng": 5.0379499,
            "type": "poi",
            "category": "campsite",
            "title": "De Kraanvensche Berg"
        },
        {
            "id": 4055,
            "lat": 45.1333376,
            "lng": 1.7642318,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Miel"
        },
        {
            "id": 4056,
            "lat": 42.8591092,
            "lng": 2.432445,
            "type": "poi",
            "category": "campsite",
            "title": "La Ferme de Camps"
        },
        {
            "id": 4057,
            "lat": 50.3661043,
            "lng": -4.4857513,
            "type": "poi",
            "category": "campsite",
            "title": "Watergate camping"
        },
        {
            "id": 4058,
            "lat": 42.7561067,
            "lng": 0.6945849,
            "type": "poi",
            "category": "campsite",
            "title": "Càmping Era Lana"
        },
        {
            "id": 4059,
            "lat": 44.7327091,
            "lng": 2.5561379,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4060,
            "lat": 48.0792106,
            "lng": 7.1092706,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Ferme Roess"
        },
        {
            "id": 4061,
            "lat": 44.1316581,
            "lng": 5.1708073,
            "type": "poi",
            "category": "campsite",
            "title": "Camping le Pastory"
        },
        {
            "id": 4062,
            "lat": 51.4011775,
            "lng": 5.1747688,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Op de Veranda"
        },
        {
            "id": 4063,
            "lat": 49.3075605,
            "lng": 9.4625569,
            "type": "poi",
            "category": "campsite",
            "title": "Jagstinsel Wörd"
        },
        {
            "id": 55,
            "lat": 54.313889,
            "lng": 18.266111,
            "type": "poi",
            "category": "campsite",
            "title": "Burczykas"
        },
        {
            "id": 48861,
            "lat": -35.0228411,
            "lng": 138.5163972,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48862,
            "lat": -35.0250764,
            "lng": 138.5168205,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51843,
            "lat": -15.0763261,
            "lng": 35.5141026,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51844,
            "lat": -15.0763591,
            "lng": 35.51411,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51845,
            "lat": -15.0765178,
            "lng": 35.5139196,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 4065,
            "lat": 46.449438,
            "lng": 3.6303336,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4066,
            "lat": 46.7178203,
            "lng": 8.5880937,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4067,
            "lat": 51.8172002,
            "lng": -1.8624731,
            "type": "poi",
            "category": "campsite",
            "title": "Far Peak Camping"
        },
        {
            "id": 4069,
            "lat": 46.7550428,
            "lng": 5.726408,
            "type": "poi",
            "category": "campsite",
            "title": "Camping du Petit Cheval Blanc"
        },
        {
            "id": 4070,
            "lat": 53.1585001,
            "lng": -3.7415804,
            "type": "poi",
            "category": "campsite",
            "title": "Maes-y-Bryn"
        },
        {
            "id": 4071,
            "lat": 51.742449,
            "lng": -0.005992,
            "type": "poi",
            "category": "campsite",
            "title": "Lee Valley Almost Wild Campsite"
        },
        {
            "id": 4072,
            "lat": 53.4001198,
            "lng": 5.3475176,
            "type": "poi",
            "category": "campsite",
            "title": "Dennedune"
        },
        {
            "id": 4073,
            "lat": 51.835975,
            "lng": -2.8982969,
            "type": "poi",
            "category": "campsite",
            "title": "Hogshead Camping Site"
        },
        {
            "id": 4074,
            "lat": 44.4764223,
            "lng": 3.4944121,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal Les Berges du Bramont"
        },
        {
            "id": 4075,
            "lat": 52.2045838,
            "lng": 8.8578013,
            "type": "poi",
            "category": "campsite",
            "title": "WSC Porta"
        },
        {
            "id": 4076,
            "lat": 52.1927441,
            "lng": 9.0861287,
            "type": "poi",
            "category": "campsite",
            "title": "Camping am Weserangerbad"
        },
        {
            "id": 4077,
            "lat": 44.5355806,
            "lng": 2.5612769,
            "type": "poi",
            "category": "campsite",
            "title": "Glamping Terre Rouge"
        },
        {
            "id": 4078,
            "lat": 47.1073904,
            "lng": 9.0047259,
            "type": "poi",
            "category": "campsite",
            "title": "Matt"
        },
        {
            "id": 4079,
            "lat": 53.1703802,
            "lng": 6.1092004,
            "type": "poi",
            "category": "campsite",
            "title": "Motorcamping 't Witveen"
        },
        {
            "id": 4080,
            "lat": 46.0286958,
            "lng": 3.4823693,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Les Marants"
        },
        {
            "id": 4081,
            "lat": 49.0832587,
            "lng": 7.9190543,
            "type": "poi",
            "category": "campsite",
            "title": "Trekking Pfalz: Ruine Guttenberg"
        },
        {
            "id": 4082,
            "lat": 35.378609,
            "lng": -5.1729225,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4083,
            "lat": 46.9491854,
            "lng": 3.957494,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4084,
            "lat": 52.1790927,
            "lng": 5.0433024,
            "type": "poi",
            "category": "campsite",
            "title": "De Vier Elementen"
        },
        {
            "id": 4085,
            "lat": 52.2752537,
            "lng": 5.0994496,
            "type": "poi",
            "category": "campsite",
            "title": "Amsterdamse Lichtbond Naturistenvereniging Dagrecreatie"
        },
        {
            "id": 4086,
            "lat": 52.1476558,
            "lng": 5.0982217,
            "type": "poi",
            "category": "campsite",
            "title": "Gravingen"
        },
        {
            "id": 4087,
            "lat": 46.6502706,
            "lng": 3.6825168,
            "type": "poi",
            "category": "campsite",
            "title": "Les Gérolles"
        },
        {
            "id": 4702,
            "lat": 44.8231301,
            "lng": -0.1102207,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal de Sainte-Terre"
        },
        {
            "id": 30429,
            "lat": 53.693627,
            "lng": 11.4370136,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51858,
            "lat": -15.0733954,
            "lng": 35.5083197,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51859,
            "lat": -15.0734433,
            "lng": 35.5078315,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31032,
            "lat": 42.0103077,
            "lng": 12.5054479,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 28711,
            "lat": 40.7852962,
            "lng": 9.6706569,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 4089,
            "lat": 52.9543732,
            "lng": -1.9202669,
            "type": "poi",
            "category": "campsite",
            "title": "Raddle Inn Campsite"
        },
        {
            "id": 4090,
            "lat": 51.2396814,
            "lng": 2.9686875,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Thalassa"
        },
        {
            "id": 4091,
            "lat": 54.4070544,
            "lng": -1.7948908,
            "type": "poi",
            "category": "campsite",
            "title": "Swaleview Caravan Park"
        },
        {
            "id": 4092,
            "lat": 38.4823861,
            "lng": -2.4476351,
            "type": "poi",
            "category": "campsite",
            "title": "Campamento Juvenil San Juan"
        },
        {
            "id": 4093,
            "lat": 45.0674434,
            "lng": 4.2905291,
            "type": "poi",
            "category": "campsite",
            "title": "Chantegrenouille"
        },
        {
            "id": 4094,
            "lat": 47.4622429,
            "lng": -0.8887782,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal de Villemoisan"
        },
        {
            "id": 4095,
            "lat": 46.9800734,
            "lng": -0.2199705,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal Le Clos Imbert"
        },
        {
            "id": 4097,
            "lat": 45.7398657,
            "lng": 0.5845951,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de l'Étang"
        },
        {
            "id": 4098,
            "lat": 44.2148105,
            "lng": 0.4822493,
            "type": "poi",
            "category": "campsite",
            "title": "Aire Naturelle Communale Serignac sur Garonne"
        },
        {
            "id": 4099,
            "lat": 38.6396442,
            "lng": -0.7475525,
            "type": "poi",
            "category": "campsite",
            "title": "Àrea d'acampanda de la Partida Campaneta (Nom turístic inventat: Lomas de Jara)"
        },
        {
            "id": 4101,
            "lat": 45.4738803,
            "lng": 3.5546796,
            "type": "poi",
            "category": "campsite",
            "title": "Le Sauzet"
        },
        {
            "id": 4102,
            "lat": 52.2131217,
            "lng": 1.5724561,
            "type": "poi",
            "category": "campsite",
            "title": "Applefields"
        },
        {
            "id": 4103,
            "lat": 44.8181339,
            "lng": 1.6858878,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Padimadour"
        },
        {
            "id": 4104,
            "lat": 36.7847189,
            "lng": -4.1745508,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Iznate"
        },
        {
            "id": 4105,
            "lat": 51.3644898,
            "lng": -1.2800566,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4106,
            "lat": 51.4089278,
            "lng": -2.7655858,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4107,
            "lat": 51.673443,
            "lng": -2.4199304,
            "type": "poi",
            "category": "campsite",
            "title": "Hogsdown Farm"
        },
        {
            "id": 4108,
            "lat": 51.5680606,
            "lng": -2.3950915,
            "type": "poi",
            "category": "campsite",
            "title": "Little Wood Caravan Park"
        },
        {
            "id": 4109,
            "lat": 47.1717864,
            "lng": 4.060878,
            "type": "poi",
            "category": "campsite",
            "title": "L'Hermitage"
        },
        {
            "id": 4110,
            "lat": 36.5025505,
            "lng": -4.8044683,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Buganvilla"
        },
        {
            "id": 4111,
            "lat": 47.7966686,
            "lng": 5.2341858,
            "type": "poi",
            "category": "campsite",
            "title": "Ferme de la Croisée"
        },
        {
            "id": 4112,
            "lat": 44.923888,
            "lng": 1.029723,
            "type": "poi",
            "category": "campsite",
            "title": "Le Pech Charmant ***"
        },
        {
            "id": 9250,
            "lat": 45.0824749,
            "lng": 7.6328078,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 31033,
            "lat": 44.2612282,
            "lng": 15.1639916,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 4115,
            "lat": 43.7647527,
            "lng": 7.0381377,
            "type": "poi",
            "category": "campsite",
            "title": "Domaine St Gilles"
        },
        {
            "id": 4116,
            "lat": 44.9082615,
            "lng": 9.5926905,
            "type": "poi",
            "category": "campsite",
            "title": "River Camping"
        },
        {
            "id": 4117,
            "lat": 45.507315,
            "lng": 4.2154908,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Bébieux"
        },
        {
            "id": 4118,
            "lat": 45.6368022,
            "lng": 7.8479046,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Mongenet"
        },
        {
            "id": 4119,
            "lat": 43.1191739,
            "lng": 1.7940565,
            "type": "poi",
            "category": "campsite",
            "title": "Bel Repayre"
        },
        {
            "id": 4120,
            "lat": 52.9051092,
            "lng": -1.805304,
            "type": "poi",
            "category": "campsite",
            "title": "Somersal Mill Farm"
        },
        {
            "id": 4121,
            "lat": 47.9253815,
            "lng": 0.8452431,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal Sargé-sur-Braye"
        },
        {
            "id": 4122,
            "lat": 48.3849022,
            "lng": 9.6369721,
            "type": "poi",
            "category": "campsite",
            "title": "Jugendzeltlager Platz Bärental"
        },
        {
            "id": 4123,
            "lat": 43.268285,
            "lng": 1.8687045,
            "type": "poi",
            "category": "campsite",
            "title": "La Piboulette"
        },
        {
            "id": 4124,
            "lat": 43.3807587,
            "lng": 2.3092605,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Municipal de Fontcouverte"
        },
        {
            "id": 4125,
            "lat": 51.9499014,
            "lng": -2.9811284,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4126,
            "lat": 44.190139,
            "lng": 1.97764,
            "type": "poi",
            "category": "campsite",
            "title": "Village Nature de Mergieux"
        },
        {
            "id": 4127,
            "lat": 36.9350458,
            "lng": -4.0746986,
            "type": "poi",
            "category": "campsite",
            "title": "La Alcausa"
        },
        {
            "id": 4128,
            "lat": 36.9170593,
            "lng": -4.1201868,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4129,
            "lat": 43.6792925,
            "lng": 2.3856022,
            "type": "poi",
            "category": "campsite",
            "title": "Camping le Bois Flottant"
        },
        {
            "id": 4130,
            "lat": 44.0739099,
            "lng": 1.3683517,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal"
        },
        {
            "id": 4131,
            "lat": 36.6554538,
            "lng": -5.2886056,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Cabañas Jimena de Liber"
        },
        {
            "id": 4132,
            "lat": 44.3374393,
            "lng": 1.5432546,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4133,
            "lat": 45.8255052,
            "lng": 1.7655703,
            "type": "poi",
            "category": "campsite",
            "title": "Le Moulin de l'Eau"
        },
        {
            "id": 4134,
            "lat": 45.5083279,
            "lng": 1.4472644,
            "type": "poi",
            "category": "campsite",
            "title": "FKK Chez Koos & Junitha"
        },
        {
            "id": 4135,
            "lat": 45.2376282,
            "lng": 1.3177834,
            "type": "poi",
            "category": "campsite",
            "title": "Le Mas d'Ayen"
        },
        {
            "id": 4136,
            "lat": 44.6300111,
            "lng": 9.8690459,
            "type": "poi",
            "category": "campsite",
            "title": "Camping il Falco"
        },
        {
            "id": 4137,
            "lat": 53.2512259,
            "lng": -4.1341675,
            "type": "poi",
            "category": "campsite",
            "title": "Llyn Y Gors"
        },
        {
            "id": 1482,
            "lat": 65.2990538,
            "lng": 30.5726028,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 23257,
            "lat": 38.7303712,
            "lng": 34.8769562,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 172594,
            "lat": 43.6915593,
            "lng": 7.2491998,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31035,
            "lat": 43.1882622,
            "lng": 10.5394727,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52589,
            "lat": 16.11952,
            "lng": -22.9073792,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31037,
            "lat": 43.1888266,
            "lng": 10.5428445,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 4139,
            "lat": 36.4333214,
            "lng": 5.88543,
            "type": "poi",
            "category": "campsite",
            "title": "محمية طبيعية"
        },
        {
            "id": 4140,
            "lat": 53.3719901,
            "lng": -4.5521893,
            "type": "poi",
            "category": "campsite",
            "title": "Gadlys Coastal Holiday Cottages"
        },
        {
            "id": 4142,
            "lat": 53.362871,
            "lng": 6.4515883,
            "type": "poi",
            "category": "campsite",
            "title": "Kanocamping de Dobbe"
        },
        {
            "id": 4143,
            "lat": 46.2554977,
            "lng": 4.5975109,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal Les Crots"
        },
        {
            "id": 4144,
            "lat": 46.2739512,
            "lng": 4.5582443,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal"
        },
        {
            "id": 4146,
            "lat": 53.8629844,
            "lng": -1.476837,
            "type": "poi",
            "category": "campsite",
            "title": "Greenscapes Nusery Campsite"
        },
        {
            "id": 4147,
            "lat": 44.5211006,
            "lng": 5.7342747,
            "type": "poi",
            "category": "campsite",
            "title": "Camping du Chevalet"
        },
        {
            "id": 4148,
            "lat": 44.3130913,
            "lng": 5.8330728,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Montéglin"
        },
        {
            "id": 4149,
            "lat": 47.9502926,
            "lng": -3.9630462,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Les Myrtilles"
        },
        {
            "id": 4150,
            "lat": 47.9513907,
            "lng": -3.9676443,
            "type": "poi",
            "category": "campsite",
            "title": "Camping du Bois de Pleuven"
        },
        {
            "id": 4151,
            "lat": 45.6031769,
            "lng": 2.6906529,
            "type": "poi",
            "category": "campsite",
            "title": "Camping du Pont de la Dordogne"
        },
        {
            "id": 4152,
            "lat": 52.0205992,
            "lng": 6.2947734,
            "type": "poi",
            "category": "campsite",
            "title": "Coens Camping"
        },
        {
            "id": 4153,
            "lat": 45.7283915,
            "lng": 3.345752,
            "type": "poi",
            "category": "campsite",
            "title": "Le Colombier"
        },
        {
            "id": 4154,
            "lat": 47.8725301,
            "lng": 7.1732818,
            "type": "poi",
            "category": "campsite",
            "title": "La Sapiniere"
        },
        {
            "id": 4155,
            "lat": 46.1284821,
            "lng": 5.4323343,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4156,
            "lat": 49.8456702,
            "lng": 7.3911895,
            "type": "poi",
            "category": "campsite",
            "title": "Trekkingcamp Schmidtburg"
        },
        {
            "id": 4157,
            "lat": 45.4161427,
            "lng": 2.4811124,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Les Aubazines"
        },
        {
            "id": 4158,
            "lat": 43.009452,
            "lng": 0.7964312,
            "type": "poi",
            "category": "campsite",
            "title": "Camping La Rivière aux Papillons"
        },
        {
            "id": 4183,
            "lat": 54.9427756,
            "lng": -6.8965833,
            "type": "poi",
            "category": "campsite",
            "title": "Hillfoot Campsite"
        },
        {
            "id": 31038,
            "lat": 54.0089493,
            "lng": 10.7723121,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31039,
            "lat": 46.5329188,
            "lng": 11.5346633,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31040,
            "lat": 36.898361,
            "lng": 27.245657,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 31041,
            "lat": 36.89819,
            "lng": 27.245281,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 55994,
            "lat": 15.8422644,
            "lng": -5.7872399,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 9251,
            "lat": 45.0821553,
            "lng": 7.6270098,
            "type": "poi",
            "category": "drinking_water",
            "title": "Drinking water"
        },
        {
            "id": 4160,
            "lat": 50.2874188,
            "lng": 1.6853047,
            "type": "poi",
            "category": "campsite",
            "title": "La Garenne de Moncourt"
        },
        {
            "id": 4161,
            "lat": 43.3715223,
            "lng": 2.2435078,
            "type": "poi",
            "category": "campsite",
            "title": "Domaine de Bernardou"
        },
        {
            "id": 4162,
            "lat": 49.5422824,
            "lng": 8.7697879,
            "type": "poi",
            "category": "campsite",
            "title": "Jugendzeltplatz Waldskopf"
        },
        {
            "id": 4163,
            "lat": 36.8123465,
            "lng": 4.9846089,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Bleu Marine"
        },
        {
            "id": 4164,
            "lat": 44.5032316,
            "lng": 5.3820886,
            "type": "poi",
            "category": "campsite",
            "title": "oasis de bellecombe"
        },
        {
            "id": 4165,
            "lat": 44.4121818,
            "lng": 5.2615832,
            "type": "poi",
            "category": "campsite",
            "title": "Camping La Vallée Bleue"
        },
        {
            "id": 4166,
            "lat": 44.6782051,
            "lng": 1.8796593,
            "type": "poi",
            "category": "campsite",
            "title": "Camping d'Assier"
        },
        {
            "id": 4167,
            "lat": 45.3379042,
            "lng": 5.05998,
            "type": "poi",
            "category": "campsite",
            "title": "Intercommunal Beaurepaire"
        },
        {
            "id": 4168,
            "lat": 48.6900756,
            "lng": 4.5689628,
            "type": "poi",
            "category": "campsite",
            "title": "Mont Morêt"
        },
        {
            "id": 4169,
            "lat": 45.0751726,
            "lng": 0.0124051,
            "type": "poi",
            "category": "campsite",
            "title": "La Forêt"
        },
        {
            "id": 4170,
            "lat": 45.0276652,
            "lng": 0.9713594,
            "type": "poi",
            "category": "campsite",
            "title": "Château Le Verdoyer"
        },
        {
            "id": 4172,
            "lat": 44.0594524,
            "lng": 5.9042791,
            "type": "poi",
            "category": "campsite",
            "title": "Lou Pebre d'ail"
        },
        {
            "id": 4173,
            "lat": 44.6363801,
            "lng": 9.4903716,
            "type": "poi",
            "category": "campsite",
            "title": "Rocca dei Folli Village"
        },
        {
            "id": 4174,
            "lat": 41.4686092,
            "lng": -7.9512426,
            "type": "poi",
            "category": "campsite",
            "title": "Casa Fontelheira"
        },
        {
            "id": 4175,
            "lat": 43.5430554,
            "lng": -5.5294544,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Playa España"
        },
        {
            "id": 4176,
            "lat": 40.1966989,
            "lng": -8.674578,
            "type": "poi",
            "category": "campsite",
            "title": "Zoo Europaradise"
        },
        {
            "id": 4177,
            "lat": 46.301774,
            "lng": 3.9955462,
            "type": "poi",
            "category": "campsite",
            "title": "Mooring"
        },
        {
            "id": 4178,
            "lat": 40.3972477,
            "lng": -4.7875024,
            "type": "poi",
            "category": "campsite",
            "title": "Campamento Santa María del Monte"
        },
        {
            "id": 4179,
            "lat": 47.0911658,
            "lng": 9.5251541,
            "type": "poi",
            "category": "campsite",
            "title": "Lagerplatz Forst"
        },
        {
            "id": 4180,
            "lat": 47.0853625,
            "lng": 8.9987662,
            "type": "poi",
            "category": "campsite",
            "title": "Zelt- und Campingplatz Obersee"
        },
        {
            "id": 4181,
            "lat": 53.8204348,
            "lng": -7.1233812,
            "type": "poi",
            "category": "campsite",
            "title": "Lough Ramor Caravan & Camping Park"
        },
        {
            "id": 4182,
            "lat": 51.60397,
            "lng": -0.8428851,
            "type": "poi",
            "category": "campsite",
            "title": "Chiltern retreat"
        },
        {
            "id": 51932,
            "lat": -10.693975,
            "lng": 34.1853792,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51934,
            "lat": -10.6945362,
            "lng": 34.1856251,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 47242,
            "lat": 39.1722188,
            "lng": -119.7416818,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 4186,
            "lat": 44.8508314,
            "lng": 8.0737041,
            "type": "poi",
            "category": "campsite",
            "title": "Cascina Piana"
        },
        {
            "id": 4187,
            "lat": 45.9046057,
            "lng": 5.9589943,
            "type": "poi",
            "category": "campsite",
            "title": "Autrucheland"
        },
        {
            "id": 4188,
            "lat": 52.9524971,
            "lng": -3.969163,
            "type": "poi",
            "category": "campsite",
            "title": "Llechwyd Farm Campsite"
        },
        {
            "id": 4189,
            "lat": 39.0640553,
            "lng": -0.4440171,
            "type": "poi",
            "category": "campsite",
            "title": "Casa"
        },
        {
            "id": 4190,
            "lat": 41.1466572,
            "lng": -7.4016839,
            "type": "poi",
            "category": "campsite",
            "title": "São João Campsite"
        },
        {
            "id": 4191,
            "lat": 51.899893,
            "lng": -4.7537042,
            "type": "poi",
            "category": "campsite",
            "title": "Tirbach Farm"
        },
        {
            "id": 4192,
            "lat": 44.0311494,
            "lng": 8.1004211,
            "type": "poi",
            "category": "campsite",
            "title": "La Villa"
        },
        {
            "id": 4193,
            "lat": 47.7882912,
            "lng": -3.70156,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de l'Île Percée"
        },
        {
            "id": 4194,
            "lat": 36.8141468,
            "lng": 2.9659096,
            "type": "poi",
            "category": "campsite",
            "title": "Plage les Oiseaux"
        },
        {
            "id": 4195,
            "lat": 35.7244428,
            "lng": -0.8489944,
            "type": "poi",
            "category": "campsite",
            "title": "CRF DGSN Bou Sfer plage"
        },
        {
            "id": 4196,
            "lat": 41.528324,
            "lng": 1.2329533,
            "type": "poi",
            "category": "campsite",
            "title": "El Fonoll - naturist village"
        },
        {
            "id": 4197,
            "lat": 54.6218778,
            "lng": -8.4528034,
            "type": "poi",
            "category": "campsite",
            "title": "Killybegs Holiday Park"
        },
        {
            "id": 4198,
            "lat": 51.1306757,
            "lng": 9.432044,
            "type": "poi",
            "category": "campsite",
            "title": "Kanu Raststation Felsberg"
        },
        {
            "id": 4199,
            "lat": 52.5511676,
            "lng": 6.5765879,
            "type": "poi",
            "category": "campsite",
            "title": "Familie Camping De Belten"
        },
        {
            "id": 4200,
            "lat": 52.5488076,
            "lng": 6.5750108,
            "type": "poi",
            "category": "campsite",
            "title": "Camping de Oldemeyer"
        },
        {
            "id": 4201,
            "lat": 52.5628272,
            "lng": 6.5930325,
            "type": "poi",
            "category": "campsite",
            "title": "De Kleine Belties"
        },
        {
            "id": 4203,
            "lat": 44.1845393,
            "lng": 1.3885192,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Domaine De Merlanes"
        },
        {
            "id": 4204,
            "lat": 43.2388147,
            "lng": 6.5737526,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Roche Parc"
        },
        {
            "id": 4205,
            "lat": 51.9239341,
            "lng": -3.5455075,
            "type": "poi",
            "category": "campsite",
            "title": "Llwynstyffilin Farm"
        },
        {
            "id": 4351,
            "lat": 54.2768785,
            "lng": -2.3741828,
            "type": "poi",
            "category": "campsite",
            "title": "Ewegales Farm"
        },
        {
            "id": 48900,
            "lat": -32.040694,
            "lng": 115.7601731,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51944,
            "lat": -11.0035512,
            "lng": 33.584031,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 51945,
            "lat": -11.0010594,
            "lng": 33.5837134,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52012,
            "lat": 39.442165,
            "lng": -84.2186438,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 4208,
            "lat": 46.3220972,
            "lng": -0.9953308,
            "type": "poi",
            "category": "campsite",
            "title": "Parrain Peggy"
        },
        {
            "id": 4210,
            "lat": 42.7645878,
            "lng": 0.04982,
            "type": "poi",
            "category": "campsite",
            "title": "bivouac"
        },
        {
            "id": 4211,
            "lat": 52.6713035,
            "lng": 6.0303948,
            "type": "poi",
            "category": "campsite",
            "title": "Kanokampeerplek Kluitenberg"
        },
        {
            "id": 4212,
            "lat": 47.6423516,
            "lng": -3.435183,
            "type": "poi",
            "category": "campsite",
            "title": "Camping municipal de l'île de Groix"
        },
        {
            "id": 4213,
            "lat": 52.5120928,
            "lng": 4.8492004,
            "type": "poi",
            "category": "campsite",
            "title": "Scouting kampeereiland 't Mieuwtje Jisp"
        },
        {
            "id": 4214,
            "lat": 50.9918609,
            "lng": -4.5179993,
            "type": "poi",
            "category": "campsite",
            "title": "Stroke Barton Campsite"
        },
        {
            "id": 4215,
            "lat": 44.4159986,
            "lng": 5.1939402,
            "type": "poi",
            "category": "campsite",
            "title": "Le Chambron"
        },
        {
            "id": 4216,
            "lat": 51.0440942,
            "lng": -4.2048554,
            "type": "poi",
            "category": "campsite",
            "title": "Marshford Camping & Caravan Site"
        },
        {
            "id": 4217,
            "lat": 40.5453297,
            "lng": -1.0021005,
            "type": "poi",
            "category": "campsite",
            "title": "Santa pola"
        },
        {
            "id": 4218,
            "lat": 37.4537712,
            "lng": -3.9299211,
            "type": "poi",
            "category": "campsite",
            "title": "polideportivo"
        },
        {
            "id": 4219,
            "lat": 49.4828793,
            "lng": 9.0146822,
            "type": "poi",
            "category": "campsite",
            "title": "Jugendzeltplatz Itterhof"
        },
        {
            "id": 4220,
            "lat": 40.3979191,
            "lng": 0.4030676,
            "type": "poi",
            "category": "campsite",
            "title": "la Volta"
        },
        {
            "id": 4221,
            "lat": 44.2281648,
            "lng": 5.5053982,
            "type": "poi",
            "category": "campsite",
            "title": "Le bois de Madelie"
        },
        {
            "id": 4222,
            "lat": 39.0425776,
            "lng": -0.2290479,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4223,
            "lat": 42.9049736,
            "lng": 2.1224647,
            "type": "poi",
            "category": "campsite",
            "title": "L'assaladou"
        },
        {
            "id": 4224,
            "lat": 52.4273311,
            "lng": 6.3100709,
            "type": "poi",
            "category": "campsite",
            "title": "Krieghuusbelten"
        },
        {
            "id": 4225,
            "lat": 51.2317111,
            "lng": -2.4920724,
            "type": "poi",
            "category": "campsite",
            "title": "ba35hp"
        },
        {
            "id": 4226,
            "lat": 45.5622286,
            "lng": 0.7195835,
            "type": "poi",
            "category": "campsite",
            "title": "Manzac Ferme"
        },
        {
            "id": 4227,
            "lat": 52.3984935,
            "lng": 6.9047537,
            "type": "poi",
            "category": "campsite",
            "title": "Erve Wiegink"
        },
        {
            "id": 4228,
            "lat": 42.4839161,
            "lng": 9.5304178,
            "type": "poi",
            "category": "campsite",
            "title": "Europa Beach"
        },
        {
            "id": 4229,
            "lat": 50.9173448,
            "lng": -1.0675391,
            "type": "poi",
            "category": "campsite",
            "title": "Pit Hill Farm Campsite."
        },
        {
            "id": 4230,
            "lat": 48.6086758,
            "lng": 0.8906884,
            "type": "poi",
            "category": "campsite",
            "title": "Les Abris du Perche"
        },
        {
            "id": 4256,
            "lat": 43.2153863,
            "lng": 6.6594763,
            "type": "poi",
            "category": "campsite",
            "title": "Camping à la Ferme"
        },
        {
            "id": 52050,
            "lat": -21.711863,
            "lng": -48.0278773,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 4232,
            "lat": 43.5762096,
            "lng": 7.0899348,
            "type": "poi",
            "category": "campsite",
            "title": "Les Jardins De La Mer"
        },
        {
            "id": 4233,
            "lat": 50.804056,
            "lng": 0.1473109,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4234,
            "lat": 50.7563528,
            "lng": -2.0375364,
            "type": "poi",
            "category": "campsite",
            "title": "The Holme Bush Campsite"
        },
        {
            "id": 4235,
            "lat": 50.7525329,
            "lng": -2.060909,
            "type": "poi",
            "category": "campsite",
            "title": "Huntick Farm Caravan Park"
        },
        {
            "id": 4236,
            "lat": 51.1338447,
            "lng": 5.6246684,
            "type": "poi",
            "category": "campsite",
            "title": "Stukkenheidehof"
        },
        {
            "id": 4237,
            "lat": 43.6710812,
            "lng": 7.138763,
            "type": "poi",
            "category": "campsite",
            "title": "Le Colombier"
        },
        {
            "id": 4238,
            "lat": 54.6355816,
            "lng": -8.6266804,
            "type": "poi",
            "category": "campsite",
            "title": "Derrylahan Hostel"
        },
        {
            "id": 4239,
            "lat": 45.9624412,
            "lng": 3.738703,
            "type": "poi",
            "category": "campsite",
            "title": "La Paradou"
        },
        {
            "id": 4240,
            "lat": 46.5622012,
            "lng": 8.3617135,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4241,
            "lat": 35.0875131,
            "lng": -2.229178,
            "type": "poi",
            "category": "campsite",
            "title": "Arrivé"
        },
        {
            "id": 4242,
            "lat": 51.6643083,
            "lng": 6.9779398,
            "type": "poi",
            "category": "campsite",
            "title": "Sportboothafen Fürst-Leopold"
        },
        {
            "id": 4243,
            "lat": 42.1818528,
            "lng": 3.1039991,
            "type": "poi",
            "category": "campsite",
            "title": "l' Amfora"
        },
        {
            "id": 4244,
            "lat": 40.377532,
            "lng": -7.9674564,
            "type": "poi",
            "category": "campsite",
            "title": "Quinta da Cerca"
        },
        {
            "id": 4245,
            "lat": 46.9649025,
            "lng": 8.2930856,
            "type": "poi",
            "category": "campsite",
            "title": "Campingplatz Bachmattli"
        },
        {
            "id": 4246,
            "lat": 35.6048562,
            "lng": -5.9279079,
            "type": "poi",
            "category": "campsite",
            "title": "50"
        },
        {
            "id": 4247,
            "lat": 47.1663845,
            "lng": 9.5238719,
            "type": "poi",
            "category": "campsite",
            "title": "Lagerplatz Dux"
        },
        {
            "id": 4248,
            "lat": 44.8628684,
            "lng": 0.981276,
            "type": "poi",
            "category": "campsite",
            "title": "Le Clou"
        },
        {
            "id": 4249,
            "lat": 52.4016104,
            "lng": -1.7218642,
            "type": "poi",
            "category": "campsite",
            "title": "Blythe Waters"
        },
        {
            "id": 4250,
            "lat": 36.9162722,
            "lng": 8.3401367,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4251,
            "lat": 51.2963487,
            "lng": 9.5489496,
            "type": "poi",
            "category": "campsite",
            "title": "BffL Kassel (FKK)"
        },
        {
            "id": 4252,
            "lat": 44.318463,
            "lng": 1.1945894,
            "type": "poi",
            "category": "campsite",
            "title": "tursac"
        },
        {
            "id": 4253,
            "lat": 43.6786107,
            "lng": 7.1265292,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Caravaning Saint-Paul"
        },
        {
            "id": 4254,
            "lat": 54.4424683,
            "lng": -1.2005902,
            "type": "poi",
            "category": "campsite",
            "title": "Southview Farm Campsite"
        },
        {
            "id": 4255,
            "lat": 43.7116204,
            "lng": 6.1952442,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Les Restanques Du Verdon"
        },
        {
            "id": 4257,
            "lat": 36.7840483,
            "lng": 3.338267,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 28748,
            "lat": 39.7911545,
            "lng": 2.6945837,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 48933,
            "lat": -10.5843934,
            "lng": 151.1880512,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 4259,
            "lat": 50.984867,
            "lng": -2.1752253,
            "type": "poi",
            "category": "campsite",
            "title": "Melbury Vale Farm"
        },
        {
            "id": 4261,
            "lat": 43.7152219,
            "lng": 6.4988595,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Municipal des Pontets"
        },
        {
            "id": 4262,
            "lat": 51.1420478,
            "lng": -4.1966069,
            "type": "poi",
            "category": "campsite",
            "title": "Incledon Farm Camp Site"
        },
        {
            "id": 4263,
            "lat": 53.1892162,
            "lng": 5.5527428,
            "type": "poi",
            "category": "campsite",
            "title": "Bloemketerp"
        },
        {
            "id": 4264,
            "lat": 40.7001008,
            "lng": -8.0780404,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Rural Naturrosa"
        },
        {
            "id": 4265,
            "lat": 51.2933045,
            "lng": 5.3620883,
            "type": "poi",
            "category": "campsite",
            "title": "camping 't Haike"
        },
        {
            "id": 4266,
            "lat": 36.7281387,
            "lng": 3.2192007,
            "type": "poi",
            "category": "campsite",
            "title": "FPH EA"
        },
        {
            "id": 4267,
            "lat": 45.7653862,
            "lng": 4.5400089,
            "type": "poi",
            "category": "campsite",
            "title": "Les roulottes du verger"
        },
        {
            "id": 4268,
            "lat": 52.250589,
            "lng": -6.7685402,
            "type": "poi",
            "category": "campsite",
            "title": "Roches Campervan and Camping"
        },
        {
            "id": 4269,
            "lat": 41.5906096,
            "lng": 9.3374132,
            "type": "poi",
            "category": "campsite",
            "title": "Camping à la Ferme U Paradisu"
        },
        {
            "id": 4270,
            "lat": 43.7710511,
            "lng": 5.473549,
            "type": "poi",
            "category": "campsite",
            "title": "Camping à la ferme Roumavagi"
        },
        {
            "id": 4271,
            "lat": 36.5970096,
            "lng": -4.5106938,
            "type": "poi",
            "category": "campsite",
            "title": "Costasol cruseros"
        },
        {
            "id": 4272,
            "lat": 45.1528561,
            "lng": 4.3150542,
            "type": "poi",
            "category": "campsite",
            "title": "Ferme Equestre De Vovady"
        },
        {
            "id": 4273,
            "lat": 47.5958312,
            "lng": -2.9977247,
            "type": "poi",
            "category": "campsite",
            "title": "Camping L'Evasion"
        },
        {
            "id": 4274,
            "lat": 52.5243239,
            "lng": 6.1682893,
            "type": "poi",
            "category": "campsite",
            "title": "Buitenplaats de Luwte"
        },
        {
            "id": 4275,
            "lat": 37.3168907,
            "lng": -8.2128186,
            "type": "poi",
            "category": "campsite",
            "title": "Algarve Safari Lodge"
        },
        {
            "id": 4276,
            "lat": 44.8099595,
            "lng": 3.8200183,
            "type": "poi",
            "category": "campsite",
            "title": "Camping nature Au-delà des Nuages"
        },
        {
            "id": 4277,
            "lat": 52.4660714,
            "lng": 6.0571242,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Landgoed Molecaten"
        },
        {
            "id": 56,
            "lat": 49.5788456,
            "lng": 19.626007,
            "type": "poi",
            "category": "campsite",
            "title": "Camp-Cup"
        },
        {
            "id": 52059,
            "lat": -13.8914658,
            "lng": 34.5010209,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 38803,
            "lat": 40.9132393,
            "lng": -96.1407961,
            "type": "poi",
            "category": "caravan_site",
            "title": "Caravan site"
        },
        {
            "id": 30446,
            "lat": 39.077593,
            "lng": 17.1320829,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30447,
            "lat": 39.0694596,
            "lng": 17.1307632,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52150,
            "lat": -13.8821375,
            "lng": 34.5381885,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 4279,
            "lat": 49.7282023,
            "lng": -2.1777589,
            "type": "poi",
            "category": "campsite",
            "title": "Saye Beach Campsite"
        },
        {
            "id": 4281,
            "lat": 47.1899175,
            "lng": 7.8591377,
            "type": "poi",
            "category": "campsite",
            "title": "Blängendörfli"
        },
        {
            "id": 4282,
            "lat": 38.6579371,
            "lng": -0.2418778,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4283,
            "lat": 49.5920872,
            "lng": 6.8740859,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4284,
            "lat": 46.9035548,
            "lng": 5.7940375,
            "type": "poi",
            "category": "campsite",
            "title": "Ferme des Nouvelles"
        },
        {
            "id": 4285,
            "lat": 51.3546965,
            "lng": -2.6649571,
            "type": "poi",
            "category": "campsite",
            "title": "Walnut Tree Farm Camping"
        },
        {
            "id": 4286,
            "lat": 50.3689287,
            "lng": -4.3782113,
            "type": "poi",
            "category": "campsite",
            "title": "Trerieve Farm"
        },
        {
            "id": 4287,
            "lat": 42.1114285,
            "lng": 2.6866738,
            "type": "poi",
            "category": "campsite",
            "title": "Fang Aventura"
        },
        {
            "id": 4288,
            "lat": 47.7581318,
            "lng": 3.0996227,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Le Bois Guillaume"
        },
        {
            "id": 4289,
            "lat": 40.3027154,
            "lng": -4.7626634,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Fuente Helecha"
        },
        {
            "id": 4290,
            "lat": 36.1188287,
            "lng": 5.360667,
            "type": "poi",
            "category": "campsite",
            "title": "SARL IGBS"
        },
        {
            "id": 4291,
            "lat": 51.4910978,
            "lng": 4.8953668,
            "type": "poi",
            "category": "campsite",
            "title": "RCN Vakantiepark de Flaasbloem"
        },
        {
            "id": 4292,
            "lat": 46.8355044,
            "lng": 9.0582254,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4293,
            "lat": 46.8271327,
            "lng": 9.0294284,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4294,
            "lat": 46.8276941,
            "lng": 9.0424475,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4295,
            "lat": 46.8569637,
            "lng": 9.0998609,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4296,
            "lat": 44.6545843,
            "lng": 1.9216327,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Domaine Papillon"
        },
        {
            "id": 4297,
            "lat": 45.8461826,
            "lng": 0.6195457,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Le Douvet"
        },
        {
            "id": 4298,
            "lat": 38.1168627,
            "lng": -7.6357347,
            "type": "poi",
            "category": "campsite",
            "title": "Alqueva Camping Car Park"
        },
        {
            "id": 4299,
            "lat": 44.7145977,
            "lng": 2.1879105,
            "type": "poi",
            "category": "campsite",
            "title": "Village de Vacance la Chateigneraie"
        },
        {
            "id": 4300,
            "lat": 50.777391,
            "lng": 4.5491566,
            "type": "poi",
            "category": "campsite",
            "title": "Welcome"
        },
        {
            "id": 4301,
            "lat": 42.6581855,
            "lng": -8.8845344,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4302,
            "lat": 51.4030153,
            "lng": -0.8918248,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Berkshire"
        },
        {
            "id": 30450,
            "lat": 39.0681519,
            "lng": 17.1309564,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52151,
            "lat": -13.8821405,
            "lng": 34.5381231,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52152,
            "lat": -13.8822075,
            "lng": 34.5392078,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 30453,
            "lat": 39.0718479,
            "lng": 17.1300873,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 4304,
            "lat": 46.4452923,
            "lng": 5.7082605,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4306,
            "lat": 44.9211628,
            "lng": 4.5189331,
            "type": "poi",
            "category": "campsite",
            "title": "Bastier"
        },
        {
            "id": 4307,
            "lat": 44.9206344,
            "lng": 4.5285679,
            "type": "poi",
            "category": "campsite",
            "title": "La Chazalet"
        },
        {
            "id": 4308,
            "lat": 51.6062801,
            "lng": 4.8660344,
            "type": "poi",
            "category": "campsite",
            "title": "Alliance"
        },
        {
            "id": 4309,
            "lat": 42.565011,
            "lng": 1.5253413,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Borda D'Ansalonga"
        },
        {
            "id": 4310,
            "lat": 44.0626066,
            "lng": 9.9762856,
            "type": "poi",
            "category": "campsite",
            "title": "Agrituristica / Agri Camping"
        },
        {
            "id": 4311,
            "lat": 42.1711892,
            "lng": 9.0980364,
            "type": "poi",
            "category": "campsite",
            "title": "Bergerie de Tolla"
        },
        {
            "id": 4312,
            "lat": 36.871456,
            "lng": -5.0466459,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4313,
            "lat": 43.0719816,
            "lng": -6.2017728,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Lagos de Somiedo"
        },
        {
            "id": 4314,
            "lat": 35.0071397,
            "lng": -1.7535463,
            "type": "poi",
            "category": "campsite",
            "title": "mosquee hidada"
        },
        {
            "id": 4315,
            "lat": 51.3501611,
            "lng": 5.2168732,
            "type": "poi",
            "category": "campsite",
            "title": "NTKC De Smagten"
        },
        {
            "id": 4316,
            "lat": 44.80595,
            "lng": 1.6145819,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Ferme Branche"
        },
        {
            "id": 4317,
            "lat": 51.6071772,
            "lng": 4.8587039,
            "type": "poi",
            "category": "campsite",
            "title": "De Hannebroeck"
        },
        {
            "id": 4318,
            "lat": 39.6212403,
            "lng": -4.4883555,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Los Galindos"
        },
        {
            "id": 4319,
            "lat": 49.0755575,
            "lng": 7.7098831,
            "type": "poi",
            "category": "campsite",
            "title": "Zeltplatz Neufeld"
        },
        {
            "id": 4320,
            "lat": 51.950811,
            "lng": 6.196839,
            "type": "poi",
            "category": "campsite",
            "title": "De Dassenboom"
        },
        {
            "id": 4321,
            "lat": 38.5705961,
            "lng": -0.1817892,
            "type": "poi",
            "category": "campsite",
            "title": "Càmping Puig Campana"
        },
        {
            "id": 4322,
            "lat": 43.7507734,
            "lng": 1.0610253,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Namasté"
        },
        {
            "id": 4323,
            "lat": 36.818519,
            "lng": 7.7119515,
            "type": "poi",
            "category": "campsite",
            "title": "بدري المبري"
        },
        {
            "id": 1483,
            "lat": 65.3585224,
            "lng": 30.5626663,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 27989,
            "lat": 43.9027731,
            "lng": -1.3775018,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 27990,
            "lat": 39.3615862,
            "lng": 2.9517154,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52153,
            "lat": -13.8822191,
            "lng": 34.5381135,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52157,
            "lat": -13.8828164,
            "lng": 34.5380919,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52158,
            "lat": -13.8830023,
            "lng": 34.5384496,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 52159,
            "lat": -13.9662701,
            "lng": 34.5129596,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 4325,
            "lat": 48.74323,
            "lng": -4.0281435,
            "type": "poi",
            "category": "campsite",
            "title": "Terrain d'Hébergement de Plein Air"
        },
        {
            "id": 4326,
            "lat": 40.3410441,
            "lng": -8.5782536,
            "type": "poi",
            "category": "campsite",
            "title": "Campo Escola Fonte Dom Pedro"
        },
        {
            "id": 4328,
            "lat": 51.6790641,
            "lng": 5.7729505,
            "type": "poi",
            "category": "campsite",
            "title": "De Nieuwenhof"
        },
        {
            "id": 4329,
            "lat": 36.7069483,
            "lng": 7.8501119,
            "type": "poi",
            "category": "campsite",
            "title": "Alimentation générale faycal"
        },
        {
            "id": 4330,
            "lat": 53.3902561,
            "lng": 5.3061087,
            "type": "poi",
            "category": "campsite",
            "title": "Mast"
        },
        {
            "id": 4331,
            "lat": 42.3968691,
            "lng": 2.8811316,
            "type": "poi",
            "category": "campsite",
            "title": "Parking"
        },
        {
            "id": 4332,
            "lat": 36.6389111,
            "lng": 5.3203337,
            "type": "poi",
            "category": "campsite",
            "title": "Centre de Repos Familiale Militaire"
        },
        {
            "id": 4333,
            "lat": 41.5152775,
            "lng": -8.0748116,
            "type": "poi",
            "category": "campsite",
            "title": "Piovacora"
        },
        {
            "id": 4334,
            "lat": 44.3227073,
            "lng": 0.7423722,
            "type": "poi",
            "category": "campsite",
            "title": "Ferme Equestre Crinière au Vent - Camping"
        },
        {
            "id": 4335,
            "lat": 48.4976779,
            "lng": -0.6240808,
            "type": "poi",
            "category": "campsite",
            "title": "Camping la Veillotière"
        },
        {
            "id": 4336,
            "lat": 47.0798232,
            "lng": 0.0761166,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Municipal"
        },
        {
            "id": 4337,
            "lat": 36.8708083,
            "lng": 6.6765183,
            "type": "poi",
            "category": "campsite",
            "title": "فج الريح"
        },
        {
            "id": 4338,
            "lat": 51.4403416,
            "lng": 7.3887457,
            "type": "poi",
            "category": "campsite",
            "title": "Grillplatz Kahler Plack"
        },
        {
            "id": 4339,
            "lat": 53.9481253,
            "lng": -2.7295364,
            "type": "poi",
            "category": "campsite",
            "title": "Fell view"
        },
        {
            "id": 4340,
            "lat": 36.7321025,
            "lng": 3.1932797,
            "type": "poi",
            "category": "campsite",
            "title": "شركة انوفاكس"
        },
        {
            "id": 4341,
            "lat": 35.8496252,
            "lng": 0.5734428,
            "type": "poi",
            "category": "campsite",
            "title": "دوار الغمايزية"
        },
        {
            "id": 4342,
            "lat": 36.27052,
            "lng": 1.4157838,
            "type": "poi",
            "category": "campsite",
            "title": "Boukhansous"
        },
        {
            "id": 4343,
            "lat": 45.0212368,
            "lng": 2.5731966,
            "type": "poi",
            "category": "campsite",
            "title": "Centre de Vacances (UCPA)"
        },
        {
            "id": 4344,
            "lat": 47.7049735,
            "lng": 2.9480271,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Municipal de Bléneau"
        },
        {
            "id": 4345,
            "lat": 37.9621094,
            "lng": -4.8106796,
            "type": "poi",
            "category": "campsite",
            "title": "Area de acampada Los Villares"
        },
        {
            "id": 4346,
            "lat": 50.4662876,
            "lng": 4.3182787,
            "type": "poi",
            "category": "campsite",
            "title": "Campsite"
        },
        {
            "id": 4347,
            "lat": 36.7612646,
            "lng": 4.4890064,
            "type": "poi",
            "category": "campsite",
            "title": "صخرة بودوز"
        },
        {
            "id": 4348,
            "lat": 39.8749237,
            "lng": -0.5106134,
            "type": "poi",
            "category": "campsite",
            "title": "Alto Mira"
        },
        {
            "id": 4349,
            "lat": 51.7060811,
            "lng": 4.8215895,
            "type": "poi",
            "category": "campsite",
            "title": "Minicamping Beachclub Puur"
        },
        {
            "id": 4350,
            "lat": 54.3815128,
            "lng": -1.9926847,
            "type": "poi",
            "category": "campsite",
            "title": "Scabba Wath Campsite"
        },
        {
            "id": 27997,
            "lat": 43.115091,
            "lng": 6.3525994,
            "type": "poi",
            "category": "shower",
            "title": "Shower"
        },
        {
            "id": 4353,
            "lat": 46.8532122,
            "lng": -1.1201922,
            "type": "poi",
            "category": "campsite",
            "title": "Camping la Tricherie"
        },
        {
            "id": 4354,
            "lat": 36.8367493,
            "lng": -4.7140754,
            "type": "poi",
            "category": "campsite",
            "title": "Hidden Valley Andalucia"
        },
        {
            "id": 4355,
            "lat": 51.9860047,
            "lng": 5.1597763,
            "type": "poi",
            "category": "campsite",
            "title": "Natuurcamping Fort WKU"
        },
        {
            "id": 4356,
            "lat": 46.3821553,
            "lng": 6.856764,
            "type": "poi",
            "category": "campsite",
            "title": "Camping Les Carettes"
        },
        {
            "id": 4357,
            "lat": 52.2641003,
            "lng": 4.8722268,
            "type": "poi",
            "category": "campsite",
            "title": "Boerin Marie"
        },
        {
            "id": 4358,
            "lat": 52.82176,
            "lng": 5.7250948,
            "type": "poi",
            "category": "campsite",
            "title": "Nieuw Leven"
        },
        {
            "id": 4359,
            "lat": 36.9054307,
            "lng": -4.7486051,
            "type": "poi",
            "category": "campsite",
            "title": "Finca La Campana El Chorro"
        },
        {
            "id": 4360,
            "lat": 36.9070627,
            "lng": -4.7522258,
            "type": "poi",
            "category": "campsite",
            "title": "Olive Branch"
        },
        {
            "id": 4362,
            "lat": 52.4177611,
            "lng": -0.8240061,
            "type": "poi",
            "category": "campsite",
            "title": "S/T Nunnery Farm"
        },
        {
            "id": 4363,
            "lat": 39.8655767,
            "lng": -2.5709817,
            "type": "poi",
            "category": "campsite",
            "title": "Apartamentos Era 124"
        },
        {
            "id": 4364,
            "lat": 42.8518506,
            "lng": -0.2978195,
            "type": "poi",
            "category": "campsite",
            "title": "Bivouac"
        },
        {
            "id": 4365,
            "lat": 52.0640537,
            "lng": 6.273849,
            "type": "poi",
            "category": "campsite",
            "title": "Minicamping De Achterhoek"
        },
        {
            "id": 4366,
            "lat": 51.1922741,
            "lng": 5.9493562,
            "type": "poi",
            "category": "campsite",
            "title": "Resort Marina Oolderhuuske"
        },
        {
            "id": 4367,
            "lat": 44.7355966,
            "lng": 5.1213519,
            "type": "poi",
            "category": "campsite",
            "title": "Le Camping Moto"
        }
    ]
}
 

Request      

GET api/map/pois

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Поиск POI по названию для автокомплита на карте.

Example request:
curl --request GET \
    --get "https://openvan.camp/api/map/pois/search" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/map/pois/search"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/map/pois/search'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "pois": []
}
 

GET /api/map/ev-charging?north=&south=&east=&west=&locale=ru

Проксирует OpenChargeMap API, конвертируя bbox → center + radius. Кеш 30 мин по округлённому bbox.

Example request:
curl --request GET \
    --get "https://openvan.camp/api/map/ev-charging" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/map/ev-charging"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/map/ev-charging'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "stations": [
        {
            "id": 313297,
            "lat": -5.866583099134459e-5,
            "lng": -2.2496442852570908e-5,
            "title": "James Street",
            "address": "James Street, Preston, United Kingdom",
            "operator": "(Unknown Operator)",
            "status": "Operational",
            "usage_type": "Private - For Staff, Visitors or Customers",
            "num_points": 1,
            "connectors": [
                {
                    "type": "CHAdeMO",
                    "power_kw": null,
                    "quantity": 1
                }
            ]
        },
        {
            "id": 469733,
            "lat": -0.0002828548230127126,
            "lng": -5.2666250439870055e-5,
            "title": "VW St Fons",
            "address": "51 boulevard Lucien sampaix , Saint fons , France",
            "operator": "(Unknown Operator)",
            "status": "Operational",
            "usage_type": "Private - For Staff, Visitors or Customers",
            "num_points": 1,
            "connectors": []
        },
        {
            "id": 296448,
            "lat": 3.1586445686571096e-5,
            "lng": 0.0003914840440302214,
            "title": "Powy Tigros",
            "address": "Via Privata Angiolo Maffucci 73, Milano, Italy",
            "operator": "POWY",
            "status": "Operational",
            "usage_type": "Public",
            "num_points": 2,
            "connectors": [
                {
                    "type": "CCS (Type 2)",
                    "power_kw": 100,
                    "quantity": 2
                },
                {
                    "type": "Type 2 (Socket Only)",
                    "power_kw": 22,
                    "quantity": 2
                }
            ]
        },
        {
            "id": 469341,
            "lat": -0.0005212262455955852,
            "lng": -0.00015884563913459715,
            "title": "Hitchin Road ",
            "address": "300, Luton , United Kingdom",
            "operator": "(Unknown Operator)",
            "status": "Operational",
            "usage_type": "Private - For Staff, Visitors or Customers",
            "num_points": 1,
            "connectors": []
        },
        {
            "id": 460663,
            "lat": 1,
            "lng": 1,
            "title": "Jerez",
            "address": "Avenida Vallesequillo , Spain",
            "operator": "(Unknown Operator)",
            "status": "Operational",
            "usage_type": "Public",
            "num_points": 1,
            "connectors": [
                {
                    "type": "CHAdeMO",
                    "power_kw": 50,
                    "quantity": 1
                }
            ]
        }
    ]
}
 

Request      

GET api/map/ev-charging

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/map/directions

Example request:
curl --request POST \
    "https://openvan.camp/api/map/directions" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"coordinates\": [
        [
            11613.31890586
        ]
    ]
}"
const url = new URL(
    "https://openvan.camp/api/map/directions"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "coordinates": [
        [
            11613.31890586
        ]
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/map/directions'
payload = {
    "coordinates": [
        [
            11613.31890586
        ]
    ]
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/map/directions

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

coordinates   number[][]  optional    

GET api/poi-drawer/{id}/{locale}

Example request:
curl --request GET \
    --get "https://openvan.camp/api/poi-drawer/consequatur/so_ET" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/poi-drawer/consequatur/so_ET"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/poi-drawer/consequatur/so_ET'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (500):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Server Error"
}
 

Request      

GET api/poi-drawer/{id}/{locale}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the poi drawer. Example: consequatur

locale   string     

Example: so_ET

GET api/news-drawer/{slug}/{locale}

Example request:
curl --request GET \
    --get "https://openvan.camp/api/news-drawer/consequatur/so_ET" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/news-drawer/consequatur/so_ET"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/news-drawer/consequatur/so_ET'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": "not found"
}
 

Request      

GET api/news-drawer/{slug}/{locale}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

slug   string     

The slug of the news drawer. Example: consequatur

locale   string     

Example: so_ET

GET api/event-drawer/{slug}/{locale}

Example request:
curl --request GET \
    --get "https://openvan.camp/api/event-drawer/guwi/eo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/event-drawer/guwi/eo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/event-drawer/guwi/eo'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
set-cookie: XSRF-TOKEN=eyJpdiI6InBJaGhnb3Z0L2ZldHVSZ0JVSFdRM3c9PSIsInZhbHVlIjoiRVNzYkJ5aHV2Q3YzcXZRcmhMZ2dmKzJqdExxR0paYWd1dTFydVFXMG5KOUVKWGpBR0dtK0xmaHdvQW8rYkRFRmY2VXNjd2NFTTFFK1RMNzBqQndLZ0xYRjRKS0pZNFpwcERBUFVHYU5BQzQySXpEUmd0cDJrRGNVVml2L2FDMnoiLCJtYWMiOiJlZGQxZjIwM2I3NGFhY2JlNmZjMGY4NTcxYmQ2ZWFmZWRlZjFmMTgxZWJmM2Q4YjNjMzI1MjJkOWU5NzU2Nzg1IiwidGFnIjoiIn0%3D; expires=Fri, 10 Apr 2026 08:48:33 GMT; Max-Age=7200; path=/; secure; samesite=lax; openvancamp-session=eyJpdiI6InI4Z2Y0Z2tGelRxQzVxMVI5dEZjRVE9PSIsInZhbHVlIjoiZk14enljK3RiWm1MZ25WWll5aUV5VDVsNEczS20zOWV5YTJ6MEhOelA3d3lpQkRuRUt1RDdVcmpjRTlHVS9VZWJPdWZ2OFg3RlgrUmsxakhUMnhqN2pUY0VIT1hNblkybUE5dGxZeWF3bXN5b1BCZ1ZrdmM2ZnE5dDlkbTZpdHciLCJtYWMiOiJiNTVkNzI1M2JkMWY5NDVmZGQ3Njc2NzY2OWVmYTRlMzBlZGUxZTFjZTY4NWQ5YzQyMDk0OWZlOTFiOWViOTRhIiwidGFnIjoiIn0%3D; expires=Fri, 10 Apr 2026 08:48:33 GMT; Max-Age=7200; path=/; secure; httponly; samesite=lax
 

{
    "error": "not found"
}
 

Request      

GET api/event-drawer/{slug}/{locale}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

slug   string     

The slug of the event drawer. Example: guwi

locale   string     

Example: eo

Events

List events

Returns a paginated list of vanlife events (exhibitions, festivals, meetups, road trips). Filter by status, type, country, or search by name.

Example request:
curl --request GET \
    --get "https://openvan.camp/api/events?locale=en&status=upcoming&type=festival&country=DE&search=Nauticampo&page=1&limit=30" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/events"
);

const params = {
    "locale": "en",
    "status": "upcoming",
    "type": "festival",
    "country": "DE",
    "search": "Nauticampo",
    "page": "1",
    "limit": "30",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/events'
params = {
  'locale': 'en',
  'status': 'upcoming',
  'type': 'festival',
  'country': 'DE',
  'search': 'Nauticampo',
  'page': '1',
  'limit': '30',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200, Success):


{
    "events": [
        {
            "id": 42,
            "slug": "nauticampo-2026",
            "event_name": "Nauticampo 2026",
            "event_type": "festival",
            "start_date": "2026-03-11",
            "end_date": "2026-03-15",
            "city": "Lisbon",
            "country_code": "PT",
            "country": {
                "code": "pt",
                "name": "Portugal",
                "flag_emoji": "🇵🇹"
            },
            "status": "published",
            "url": "https://openvan.camp/en/event/nauticampo-2026"
        }
    ],
    "pagination": {
        "total": 48,
        "page": 1,
        "limit": 30,
        "pages": 2
    }
}
 

Request      

GET api/events

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

locale   string  optional    

Language code for localized names. One of: en, ru, de, fr, es, pt, tr. Defaults to en. Example: en

status   string  optional    

Filter by event status. One of: upcoming, ongoing, past, all. Defaults to upcoming. Example: upcoming

type   string  optional    

Filter by event type. One of: expo, festival, forum, meetup, roadtrip. Example: festival

country   string  optional    

2-letter ISO country code. Example: DE

search   string  optional    

Text search by event name. Example: Nauticampo

page   integer  optional    

Page number. Defaults to 1. Example: 1

limit   integer  optional    

Results per page (max 100). Defaults to 30. Example: 30

Get event details

Returns full details for a single vanlife event by slug, including location, description, and social links.

Example request:
curl --request GET \
    --get "https://openvan.camp/api/event/nauticampo-2026?locale=en" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/event/nauticampo-2026"
);

const params = {
    "locale": "en",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/event/nauticampo-2026'
params = {
  'locale': 'en',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200, Success):


{
    "id": 42,
    "slug": "nauticampo-2026",
    "event_name": "Nauticampo 2026",
    "event_type": "festival",
    "start_date": "2026-03-11",
    "end_date": "2026-03-15",
    "city": "Lisbon",
    "country_code": "PT",
    "description": "Annual vanlife and camping festival...",
    "official_url": "https://nauticampo.pt",
    "image_url": "https://...",
    "status": "published",
    "url": "https://openvan.camp/en/event/nauticampo-2026"
}
 

Example response (404, Not found):


{
    "message": "No query results for model [App\\Models\\Event]."
}
 

Request      

GET api/event/{slug}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

slug   string     

The event slug. Example: nauticampo-2026

Query Parameters

locale   string  optional    

Language for localized content. One of: en, ru, de, fr, es, pt, tr. Example: en

Get event articles

Returns source articles linked to this event. When locale is provided, attempts to return only articles in that language. If no articles match the requested locale, all articles are returned as a fallback (they may be in the original source language, e.g. Japanese or German). The language field on each article indicates the actual language of the source.

Example request:
curl --request GET \
    --get "https://openvan.camp/api/event/nauticampo-2026/articles?locale=en" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/event/nauticampo-2026/articles"
);

const params = {
    "locale": "en",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/event/nauticampo-2026/articles'
params = {
  'locale': 'en',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200, Success):


[
    {
        "id": 1001,
        "title": "Nauticampo 2026 opens its doors",
        "image_url": "https://...",
        "published_at": "2026-03-11T10:00:00+00:00",
        "source_name": "CamperVan Magazine",
        "original_url": "https://...",
        "language": "en"
    }
]
 

Request      

GET api/event/{slug}/articles

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

slug   string     

The event slug. Example: nauticampo-2026

Query Parameters

locale   string  optional    

Language code to filter articles by source language. One of: en, ru, de, fr, es, pt, tr. Defaults to en. Example: en

Fuel Prices

Get fuel prices

Returns current retail fuel prices (gasoline, diesel, LPG) for 85+ countries. Data is updated weekly from 45+ official government sources and independent aggregators.

Prices are weighted averages from multiple sources per country. The sources array lists all contributing data providers (sorted by trust weight, highest first).

License: CC BY 4.0 — free to use with attribution to OpenVan.camp.

Example request:
curl --request GET \
    --get "https://openvan.camp/api/fuel/prices" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/fuel/prices"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/fuel/prices'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200, Success):


{
    "success": true,
    "data": {
        "DE": {
            "country_code": "DE",
            "country_name": "Germany",
            "region": "europe",
            "currency": "EUR",
            "local_currency": "EUR",
            "unit": "liter",
            "prices": {
                "gasoline": 2.1313,
                "diesel": 2.2845,
                "lpg": 1.113,
                "e85": null,
                "premium": null
            },
            "price_changes": {
                "gasoline": -0.02,
                "diesel": 0.01,
                "lpg": 0,
                "e85": null,
                "premium": null
            },
            "fetched_at": "2026-03-28T13:59:57+03:00",
            "sources": [
                "Fuelo.net",
                "EU Weekly Oil Bulletin",
                "Cargopedia.net"
            ],
            "sources_count": 3,
            "is_excluded": false
        }
    },
    "meta": {
        "total_countries": 87,
        "updated_at": "2026-03-28 13:59:57",
        "cache_ttl_hours": 6
    }
}
 

Request      

GET api/fuel/prices

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Stories

Vanlife news stories — clustered and translated into 7 languages. Each story aggregates multiple source articles from different publishers.

List stories

Returns a paginated list of vanlife news stories in the requested language. Titles and summaries are translated; sources are original-language articles.

Example request:
curl --request GET \
    --get "https://openvan.camp/api/stories?locale=en&category=camping&country=DE&search=vanlife+festival&page=1&limit=20" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/stories"
);

const params = {
    "locale": "en",
    "category": "camping",
    "country": "DE",
    "search": "vanlife festival",
    "page": "1",
    "limit": "20",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/stories'
params = {
  'locale': 'en',
  'category': 'camping',
  'country': 'DE',
  'search': 'vanlife festival',
  'page': '1',
  'limit': '20',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200, Success):


{
    "stories": [
        {
            "slug": "vanlife-festival-germany-2026",
            "title": "VanLife Festival Germany 2026",
            "summary": "The largest vanlife gathering in Germany returns this summer.",
            "image_url": "https://...",
            "category": {
                "slug": "events",
                "name": "Events"
            },
            "countries": [
                {
                    "code": "de",
                    "name": "Germany",
                    "flag_emoji": "🇩🇪"
                }
            ],
            "first_published_at": "2026-04-01T10:00:00+00:00",
            "articles_count": 8,
            "url": "https://openvan.camp/en/news/events/vanlife-festival-germany-2026"
        }
    ],
    "pagination": {
        "total": 120,
        "page": 1,
        "limit": 20,
        "pages": 6
    }
}
 

Request      

GET api/stories

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

locale   string  optional    

Language for localized titles and summaries. One of: en, ru, de, fr, es, pt, tr. Defaults to en. Example: en

category   string  optional    

Filter by category slug (e.g. camping, travel, gear). Example: camping

country   string  optional    

2-letter ISO country code to filter by associated country. Example: DE

search   string  optional    

Full-text search by story title. Example: vanlife festival

page   integer  optional    

Page number. Defaults to 1. Example: 1

limit   integer  optional    

Results per page (max 50). Defaults to 20. Example: 20

Get story details

Returns full details for a single news story including all source articles. The sources array contains original publisher articles with direct links.

Example request:
curl --request GET \
    --get "https://openvan.camp/api/story/vanlife-festival-germany-2026?locale=en" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/story/vanlife-festival-germany-2026"
);

const params = {
    "locale": "en",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/story/vanlife-festival-germany-2026'
params = {
  'locale': 'en',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200, Success):


{
    "slug": "vanlife-festival-germany-2026",
    "title": "VanLife Festival Germany 2026",
    "summary": "The largest vanlife gathering in Germany returns this summer.",
    "image_url": "https://...",
    "category": {
        "slug": "events",
        "name": "Events"
    },
    "countries": [
        {
            "code": "de",
            "name": "Germany",
            "flag_emoji": "🇩🇪"
        }
    ],
    "first_published_at": "2026-04-01T10:00:00+00:00",
    "last_updated_at": "2026-04-03T08:00:00+00:00",
    "articles_count": 8,
    "url": "https://openvan.camp/en/news/events/vanlife-festival-germany-2026",
    "sources": [
        {
            "title": "Germany's biggest van life festival is back",
            "original_url": "https://campermag.de/festival-2026",
            "source_name": "CamperMag.de",
            "published_at": "2026-04-01T10:00:00+00:00",
            "language": "de",
            "image_url": "https://..."
        }
    ]
}
 

Example response (404, Not found):


{
    "error": "Story not found."
}
 

Request      

GET api/story/{slug}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

slug   string     

The story slug. Example: vanlife-festival-germany-2026

Query Parameters

locale   string  optional    

Language for localized title and summary. One of: en, ru, de, fr, es, pt, tr. Defaults to en. Example: en

VanBasket Food Price Index

VanBasket Index shows how expensive food is in a country relative to the world average (World = 100). Based on World Bank ICP 2021 data, adjusted with IMF CPI.

Get all countries with VanBasket index.

Returns food price index for 90+ countries. World average = 100. Above 100 = more expensive, below 100 = cheaper.

Example request:
curl --request GET \
    --get "https://openvan.camp/api/vanbasket/countries" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/vanbasket/countries"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/vanbasket/countries'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "success": true,
    "data": {
        "DE": {
            "country_code": "DE",
            "country_name": "Germany",
            "vanbasket_index": 124.9,
            "pct_vs_world": 24.9
        }
    },
    "meta": {
        "total_countries": 92
    }
}
 

Request      

GET api/vanbasket/countries

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Compare food prices between two countries.

Example request:
curl --request GET \
    --get "https://openvan.camp/api/vanbasket/compare?from=DE&to=TR" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/vanbasket/compare"
);

const params = {
    "from": "DE",
    "to": "TR",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/vanbasket/compare'
params = {
  'from': 'DE',
  'to': 'TR',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200):


{
    "success": true,
    "data": {
        "from": {
            "country_code": "DE",
            "country_name": "Germany",
            "vanbasket_index": 124.9
        },
        "to": {
            "country_code": "TR",
            "country_name": "Turkey",
            "vanbasket_index": 88
        },
        "diff_percent": -29.5,
        "budget_100": 70,
        "cheaper": true
    }
}
 

Request      

GET api/vanbasket/compare

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

from   string     

ISO 3166-1 alpha-2 code of home country. Example: DE

to   string     

ISO 3166-1 alpha-2 code of destination country. Example: TR

Get detailed data for a single country including historical snapshots.

Example request:
curl --request GET \
    --get "https://openvan.camp/api/vanbasket/countries/DE" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://openvan.camp/api/vanbasket/countries/DE"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
import requests
import json

url = 'https://openvan.camp/api/vanbasket/countries/DE'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "success": true,
    "data": {
        "country": {
            "country_code": "DE",
            "vanbasket_index": 124.9
        },
        "snapshots": [
            {
                "snapshot_date": "2021-01-01",
                "vanbasket_index": 124.9
            }
        ]
    }
}
 

Request      

GET api/vanbasket/countries/{code}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

code   string     

ISO 3166-1 alpha-2 country code. Example: DE