From 6a71b9500bdb61f232509a5b867be8fb411fed5a Mon Sep 17 00:00:00 2001 From: Devin Bayer Date: Mon, 8 Mar 2021 23:49:53 +0100 Subject: [PATCH 1/2] add csv2kml script --- .gitignore | 1 + README.md | 39 +- csv2kml.py | 87 + sample/Saved Places.json | 14124 +++++++++++++++++++++++++++++++++++++ sample/api-reply.json | 71 + sample/takeout.csv | 12 + template.kml.mako | 24 + 7 files changed, 14354 insertions(+), 4 deletions(-) create mode 100644 .gitignore create mode 100755 csv2kml.py create mode 100644 sample/Saved Places.json create mode 100644 sample/api-reply.json create mode 100644 sample/takeout.csv create mode 100644 template.kml.mako diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..07a13b1 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.kml diff --git a/README.md b/README.md index 9e2e308..cee2dc8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ -# Export Google Maps saved/starred locations to KML/CSV/Sygic +# Export Google Maps saved/starred/favorite locations to KML/CSV/Sygic -This repository contain three [Python 3](https://www.python.org/downloads/) scripts that can be used to **export starred locations from Google Maps to other formats** which then can be imported by GPS navigation apps or other POI convertion tools. The three scrips are: +This repository contain 4 [Python 3](https://www.python.org/downloads/) scripts that can be used to **export starred locations from Google Maps to other formats** which then can be imported by GPS navigation apps or other POI convertion tools. The three scrips are: + +* **csv2kml**: Export Favorites / Flagged Places / Want To Go / and custom lists. * **json2kml**: this script converts the list of starred/saved places (a.k.a. POIs) from Google Maps into a **KML file** that can be imported into various GPS navigation applications (suchs as MAPS.ME). @@ -11,9 +13,37 @@ This repository contain three [Python 3](https://www.python.org/downloads/) scri ## How to export Google Maps saved/starred locations to a JSON file 1. Go to Google Takeout (https://takeout.google.com/settings/takeout). -2. Click “Select None” and then select “Maps (your places)”. Make sure this is the only option selected. +2. Click “Select None” and then select +- “Maps (your places)”. +- "Saved" Collections of saved links (images, places, web pages, etc.) from Google Search and Maps 3. Google will export a ZIP file. Save this file to your local disk, open it and extract the file “\Takeout\Maps (your places)\Saved Places.json” to a directory in your PC (do not change the file name). -4. Download one of the scripts below and save to the same directory where you saved "Saved Places.json". + +## csv2kml + +Google Takeout stores several files as CSV: + +- Saved/Favourite places.csv +- Saved/Flag.csv +- Saved/Want to go.csv + +First you need a Google API key: + +- If needed, greated a Google Cloud Project +- Enable Places API +- Goto +- Click: Create credentials +- Copy API key +- Run this and paste to save key: + + install -D /dev/stdin -m 600 ~/.private/google-api + +This script depends on `mako` so `pip3 install mako`. + +Run it like this: + + ./csv2kml.py sample/takeout.csv > output.kml + +Checked `failed.csv` for entries we were not able to convert. ## json2kml @@ -49,3 +79,4 @@ After this, the following steps must be executed to generate the KML file from t * In Android devices, Sygic saves the favorites to file "items.dat" (it's a SQLite3 database). This file is located in folder _"/Sygic/Res/db/items.dat"_ if Sygic is configured to use internal storage or in folder _"/Android/data/com.sygic.aura/files/Res/db/items.dat"_ if Sygic is configured to use external SD card. * This script creates a new "items.dat" file with all saved places from Google. This file needs to be copied to one of the above foldres. * **IMPORTANT**: when overwriting "items.dat" files, **all current Sygic favorites _will be lost_**. Keep this in mind. + diff --git a/csv2kml.py b/csv2kml.py new file mode 100755 index 0000000..faa3cfc --- /dev/null +++ b/csv2kml.py @@ -0,0 +1,87 @@ +#!/usr/bin/env python3 +""" +Extract Google Place IDs from Google Takeout + +Usage: extract.py google-maps-favorites-2020.csv + +Title,Note,URL,Comment +Pizzabar DEEG,,https://www.google.com/maps/place/Pizzabar+DEEG/data=!4m2!3m1!1s0x47c6eef6ec509509:0x519b160daf1c8e59, +""" + +import sys, csv, re + +from mako.template import Template +from dataclasses import dataclass +from urllib.request import urlopen +from os.path import expanduser +from json import loads + +def log(code, *args): + sys.stderr.write('%8.8s | ' % code) + sys.stderr.write(' '.join(str(a) for a in args) + '\n') + +@dataclass +class place: + name: str + note: str + url: str + comment: str + address = '' + lat = 0.0 + long = 0.0 + +path = sys.argv[1] +places = [] + +apikey = open(expanduser('~/.private/google-api')).read().strip() + +failed_fd = open('failed.csv', 'a') + +reader = csv.reader(open(path), delimiter=',', quotechar='"') +for row in reader: + log('row', *row[:2]) + if row == 'Title Note URL Comment'.split(): + continue + + p = place(*row) + p.lat = 0.0 + p.long = 0.0 + p.address = None + + m = re.match(r'.*google.com/maps/place/.*/data=.*!1s(0x[0-9a-fx:]+)', p.url) + if not m: + log('nomatch', p.url) + csv.writer(failed_fd).writerow(row + ['error: ' + data['status']]) + continue + + ftid = m.group(1) + log('match', ftid) + resp = urlopen(f'https://maps.googleapis.com/maps/api/place/details/json?key={apikey}&ftid={ftid}') + data = loads(resp.read()) + + if data['status'] != 'OK': + log('error', data) + csv.writer(failed_fd).writerow(row + ['error: ' + data['status']]) + continue + + try: + r = data['result'] + p.address = r['formatted_address'] + p.lat = r['geometry']['location']['lat'] + p.long = r['geometry']['location']['lng'] + log('addr', p.address, p.lat, p.long) + except Exception as e: + log('error', e, data) + raise + + + places.append(p) + +temp = Template(filename='template.kml.mako') +print(temp.render( + path=path, + places=places, +)) + +failed_fd.close() + diff --git a/sample/Saved Places.json b/sample/Saved Places.json new file mode 100644 index 0000000..f0dfbcc --- /dev/null +++ b/sample/Saved Places.json @@ -0,0 +1,14124 @@ +{ + "type" : "FeatureCollection", + "features" : [ { + "geometry" : { + "coordinates" : [ 4.3247462, 52.1045735 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7589517508398997775", + "Location" : { + "Address" : "Willem Royaardsplein 20, 2597 GS Den Haag, Netherlands", + "Business Name" : "Foe City", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.1045735", + "Longitude" : "4.3247462" + } + }, + "Published" : "2020-09-19T14:10:54Z", + "Title" : "Foe City", + "Updated" : "2020-09-19T14:10:54Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.3171961, 52.0799123 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16321489536586433269", + "Location" : { + "Address" : "Korte Poten 18, 2511 ED Den Haag, Netherlands", + "Business Name" : "Xi’an delicious Food", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.0799123", + "Longitude" : "4.3171961" + } + }, + "Published" : "2020-09-19T14:09:39Z", + "Title" : "Xi’an delicious Food", + "Updated" : "2020-09-19T14:09:39Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 24.3456069, 45.0764014 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4205947360065199405", + "Location" : { + "Address" : "DN67, Râmnicu Vâlcea, Romania", + "Business Name" : "Aqua Park Posada", + "Country Code" : "RO", + "Geo Coordinates" : { + "Latitude" : "45.0764014", + "Longitude" : "24.3456069" + } + }, + "Published" : "2020-07-25T12:38:18Z", + "Title" : "Aqua Park Posada", + "Updated" : "2020-07-25T12:38:18Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 26.1118778, 44.4437278 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16441258992277959952", + "Location" : { + "Address" : "Strada Viitorului 32, București 020613, Romania", + "Business Name" : "Luna Cafe & Bistro", + "Country Code" : "RO", + "Geo Coordinates" : { + "Latitude" : "44.4437278", + "Longitude" : "26.1118778" + } + }, + "Published" : "2020-07-18T17:43:17Z", + "Title" : "Luna Cafe & Bistro", + "Updated" : "2020-07-18T17:43:17Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 26.0939312, 44.4525409 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=6705418501785001487", + "Location" : { + "Address" : "Bulevardul Iancu de Hunedoara 42, București 011742, Romania", + "Business Name" : "Soffitta Boutique Hotel", + "Country Code" : "RO", + "Geo Coordinates" : { + "Latitude" : "44.4525409", + "Longitude" : "26.0939312" + } + }, + "Published" : "2020-07-17T13:53:48Z", + "Title" : "Soffitta Boutique Hotel", + "Updated" : "2020-07-17T13:53:48Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 26.1188552, 44.4434014 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4817600581072331150", + "Location" : { + "Address" : "Calea Moșilor 219, București 030167, Romania", + "Business Name" : "Pizza Hut", + "Country Code" : "RO", + "Geo Coordinates" : { + "Latitude" : "44.4434014", + "Longitude" : "26.1188552" + } + }, + "Published" : "2020-07-17T12:06:33Z", + "Title" : "Pizza Hut", + "Updated" : "2020-07-17T12:06:33Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.6896243, 50.8501173 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15774244193510001216", + "Location" : { + "Address" : "Dominicanerkerkstraat 1, 6211 CZ Maastricht, Netherlands", + "Business Name" : "Book Store Dominicanen", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "50.8501173", + "Longitude" : "5.6896243" + } + }, + "Published" : "2020-06-27T14:44:22Z", + "Title" : "Book Store Dominicanen", + "Updated" : "2020-06-27T14:44:22Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.6933333, 50.8477778 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3489655805237051848", + "Location" : { + "Address" : "Onze Lieve Vrouweplein 6, 6211 HD Maastricht, Netherlands", + "Business Name" : "Derlon Hotel Maastricht", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "50.8477778", + "Longitude" : "5.6933333" + } + }, + "Published" : "2020-06-27T13:11:49Z", + "Title" : "Derlon Hotel Maastricht", + "Updated" : "2020-06-27T13:11:49Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.7018989, 50.8425389 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5165231776774927223", + "Location" : { + "Address" : "Avenue Ceramique 250, 6221 KX Maastricht, Netherlands", + "Business Name" : "Bonnefantenmuseum", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "50.8425389", + "Longitude" : "5.7018989" + } + }, + "Published" : "2020-06-27T11:08:20Z", + "Title" : "Bonnefantenmuseum", + "Updated" : "2020-06-27T11:08:20Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.3522183, 51.9969566 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1017106835626990356", + "Location" : { + "Address" : "2624 NL Delft, Netherlands", + "Business Name" : "De Hoven", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "51.9969566", + "Longitude" : "4.3522183" + } + }, + "Published" : "2020-06-06T12:44:39Z", + "Title" : "De Hoven", + "Updated" : "2020-06-06T12:44:39Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8794886, 52.3933222 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16280196722409519652", + "Location" : { + "Address" : "Revaleiland 74, 1014 ZG Amsterdam, Netherlands", + "Business Name" : "Medisch Kwartier", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3933222", + "Longitude" : "4.8794886" + } + }, + "Published" : "2020-05-01T07:18:23Z", + "Title" : "Medisch Kwartier", + "Updated" : "2020-05-01T07:18:23Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4486907, 51.9089831 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11475706923882253777", + "Location" : { + "Address" : "Aelbrechtskolk 30, 3024 RE Rotterdam, Netherlands", + "Business Name" : "De Zwerver", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "51.9089831", + "Longitude" : "4.4486907" + } + }, + "Published" : "2020-04-27T10:15:52Z", + "Title" : "De Zwerver", + "Updated" : "2020-04-27T10:15:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.3634322, 52.0133022 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=760347438575906896", + "Location" : { + "Address" : "Nieuwe Langendijk 58 A, 2611 VL Delft, Netherlands", + "Business Name" : "Nature Balance Massage Delft", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.0133022", + "Longitude" : "4.3634322" + } + }, + "Published" : "2020-02-12T17:48:11Z", + "Title" : "Nature Balance Massage Delft", + "Updated" : "2020-02-12T17:48:11Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.3610626, 52.0129269 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Vlamingstraat+1,+2611+KR+Delft&ftid=0x47c5b5c28c26f447:0xdc368f5e3dee5591", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.0129269", + "Longitude" : "4.3610626" + } + }, + "Published" : "2020-02-08T10:25:23Z", + "Title" : "Vlamingstraat 1, 2611 KR Delft", + "Updated" : "2020-02-08T10:25:23Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8814574, 52.3737432 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16004683364360033164", + "Location" : { + "Address" : "Rozengracht 36, 1016 NC Amsterdam, Netherlands", + "Business Name" : "Van der Linde", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3737432", + "Longitude" : "4.8814574" + } + }, + "Published" : "2020-01-25T16:58:53Z", + "Title" : "Van der Linde", + "Updated" : "2020-01-25T16:58:53Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.1330566, 46.5399231 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8248810644534222161", + "Location" : { + "Address" : "Strada Statale 51 di Alemagna, 32043 Cortina d'Ampezzo BL, Italy", + "Business Name" : "Parco Regionale Dolomiti d'Ampezzo", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "46.5399231", + "Longitude" : "12.1330566" + } + }, + "Published" : "2020-01-15T08:59:34Z", + "Title" : "Parco Regionale Dolomiti d'Ampezzo", + "Updated" : "2020-01-15T08:59:34Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.1350790, 46.5381503 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7340621062868435221", + "Location" : { + "Address" : "Via Cesare Battisti, 7, 32043 Cortina d'Ampezzo BL, Italy", + "Business Name" : "Lab 20.21", + "Geo Coordinates" : { + "Latitude" : "46.5381503", + "Longitude" : "12.1350790" + } + }, + "Published" : "2020-01-15T08:29:44Z", + "Title" : "Lab 20.21", + "Updated" : "2020-01-15T08:29:44Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.1362542, 46.5382411 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4822356307962819134", + "Location" : { + "Address" : "Piazza Silvestro Franceschi, 11, 32043 Cortina d'Ampezzo BL, Italy", + "Business Name" : "Libreria Sovilla S.n.c di Sovilla Franco e C.", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "46.5382411", + "Longitude" : "12.1362542" + } + }, + "Published" : "2020-01-15T08:24:29Z", + "Title" : "Libreria Sovilla S.n.c di Sovilla Franco e C.", + "Updated" : "2020-01-15T08:24:29Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.1369686, 46.5369714 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2754842021212118903", + "Location" : { + "Address" : "Piazza Venezia, 2, 32043 Cortina d'Ampezzo BL, Italy", + "Business Name" : "Pizzeria Porto Rotondo", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "46.5369714", + "Longitude" : "12.1369686" + } + }, + "Published" : "2020-01-13T18:20:41Z", + "Title" : "Pizzeria Porto Rotondo", + "Updated" : "2020-01-13T18:20:41Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.1342400, 46.5421370 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15957062029692667269", + "Location" : { + "Address" : "Via del Castello, 53, 32043 Cortina d'Ampezzo BL, Italy", + "Business Name" : "La Tavernetta", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "46.5421370", + "Longitude" : "12.1342400" + } + }, + "Published" : "2020-01-13T18:18:30Z", + "Title" : "La Tavernetta", + "Updated" : "2020-01-13T18:18:30Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.1362378, 46.5387619 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3746324683645773750", + "Location" : { + "Address" : "Largo delle Poste, 13, 32043 Cortina d'Ampezzo BL, Italy", + "Business Name" : "5 Torri", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "46.5387619", + "Longitude" : "12.1362378" + } + }, + "Published" : "2020-01-13T18:06:25Z", + "Title" : "Ristorante 5 Torri", + "Updated" : "2020-01-13T18:06:25Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.1392401, 46.5503314 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=809184683193645993", + "Location" : { + "Address" : "Località Guargnè, Località Verocai, 32043 Cortina d'Ampezzo BL, Italy", + "Business Name" : "Scuola Sci Happy Ski Cortina", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "46.5503314", + "Longitude" : "12.1392401" + } + }, + "Published" : "2020-01-12T17:57:05Z", + "Title" : "Scuola Sci Happy Ski Cortina", + "Updated" : "2020-01-12T17:57:05Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.0089186, 46.5191252 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Falzarego+Pass,+32043+Cortina+d'Ampezzo,+Province+of+Belluno,+Italy&ftid=0x477837f5f673e5eb:0xe5210d91f732fe92", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "46.5191252", + "Longitude" : "12.0089186" + } + }, + "Published" : "2020-01-11T19:17:41Z", + "Title" : "Falzarego Pass, 32043 Cortina d'Ampezzo, Province of Belluno, Italy", + "Updated" : "2020-01-11T19:17:41Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.1216520, 46.5353070 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Localit%C3%A0+Lacedel,+1,+32043+Cortina+d'Ampezzo+BL&ftid=0x4778342bd93970c9:0x5e8f42b0a85c2db5", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "46.5353070", + "Longitude" : "12.1216520" + } + }, + "Published" : "2020-01-11T16:54:48Z", + "Title" : "Località Lacedel, 1, 32043 Cortina d'Ampezzo BL", + "Updated" : "2020-01-11T16:54:48Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.0385530, 46.5185273 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9599697154878945539", + "Location" : { + "Address" : "Località Bai de Dones, 32043 Cortina d'Ampezzo BL, Italy", + "Business Name" : "Baita Bai de Dones", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "46.5185273", + "Longitude" : "12.0385530" + } + }, + "Published" : "2020-01-11T07:17:30Z", + "Title" : "Baita Bai de Dones", + "Updated" : "2020-01-11T07:17:30Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.1383722, 46.5380718 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8445435001349721815", + "Location" : { + "Address" : "Via XXIX Maggio, 13, 32043 Cortina d'Ampezzo BL, Italy", + "Business Name" : "Noleggio sci Cortina", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "46.5380718", + "Longitude" : "12.1383722" + } + }, + "Published" : "2020-01-08T20:03:28Z", + "Title" : "Noleggio sci Cortina", + "Updated" : "2020-01-08T20:03:28Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.1396900, 46.5399000 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Via+Ria+de+Zeto,+23,+32043+Cortina+d'Ampezzo+BL,+Italy&ftid=0x47783439943f9b9f:0x1fa447702bb35835", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "46.5399000", + "Longitude" : "12.1396900" + } + }, + "Published" : "2019-11-01T19:06:52Z", + "Title" : "Via Ria de Zeto, 23, 32043 Cortina d'Ampezzo BL, Italy", + "Updated" : "2019-11-01T19:06:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.2972222, 52.0858333 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15986140585030964809", + "Location" : { + "Address" : "Laan van Meerdervoort 13A, 2517 AB Den Haag, Netherlands", + "Business Name" : "Tapas Que Pasa", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.0858333", + "Longitude" : "4.2972222" + } + }, + "Published" : "2019-09-15T12:43:58Z", + "Title" : "Tapas Que Pasa", + "Updated" : "2019-09-15T12:43:58Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.2985151, 52.0818251 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Piet+Heinstraat,+Den+Haag&ftid=0x47c5b7327cd06efb:0xc011cf3356bb81ff", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.0818251", + "Longitude" : "4.2985151" + } + }, + "Published" : "2019-09-15T11:35:06Z", + "Title" : "Piet Heinstraat, Den Haag", + "Updated" : "2019-09-15T11:35:06Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9303684, 52.3349812 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=18141481992596674763", + "Location" : { + "Address" : "Duivendrecht NL, Joop Geesinkweg 129, 1114 AB Amsterdam, Netherlands", + "Business Name" : "de Jong Technovaria BV", + "Geo Coordinates" : { + "Latitude" : "52.3349812", + "Longitude" : "4.9303684" + } + }, + "Published" : "2019-08-28T06:21:31Z", + "Title" : "de Jong Technovaria BV", + "Updated" : "2019-08-28T06:21:31Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.5686070, 44.0578340 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2257552893366618365", + "Location" : { + "Address" : "Via Aurelio Bertola, 52, 47921 Rimini RN, Italy", + "Business Name" : "Bar Lento", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "44.0578340", + "Longitude" : "12.5686070" + } + }, + "Published" : "2019-08-23T12:38:23Z", + "Title" : "Bar Lento", + "Updated" : "2019-08-23T12:38:23Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.5838211, 44.0648664 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5021813373822291286", + "Location" : { + "Address" : "Viale Amerigo Vespucci, 111, 47921 Rimini RN, Italy", + "Business Name" : "Tattoorama", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "44.0648664", + "Longitude" : "12.5838211" + } + }, + "Published" : "2019-08-23T12:16:29Z", + "Title" : "Tattoorama", + "Updated" : "2019-08-23T12:16:29Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.4574043, 44.0833045 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=San+Vito+Province+of+Rimini,+Italy&ftid=0x132cc0b95eeb8d11:0x581b6a712fa77d23", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "44.0833045", + "Longitude" : "12.4574043" + } + }, + "Published" : "2019-08-23T12:14:14Z", + "Title" : "San Vito, Province of Rimini, Italy", + "Updated" : "2019-08-23T12:14:14Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.5649740, 44.0596800 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2109110498096068937", + "Location" : { + "Address" : "Via Luigi Poletti, 32, 47923 Rimini RN, Italy", + "Business Name" : "La Mi Mama", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "44.0596800", + "Longitude" : "12.5649740" + } + }, + "Published" : "2019-08-23T12:02:16Z", + "Title" : "La Mi Mama", + "Updated" : "2019-08-23T12:02:16Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.5789827, 44.0689748 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5835010619801325394", + "Location" : { + "Address" : "M, Viale Vittorio Veneto, 1, 47921 Rimini RN, Italy", + "Business Name" : "Flower Burger", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "44.0689748", + "Longitude" : "12.5789827" + } + }, + "Published" : "2019-08-23T12:01:48Z", + "Title" : "Flower Burger", + "Updated" : "2019-08-23T12:01:48Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.5701947, 44.0609989 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1334889216799134788", + "Location" : { + "Address" : "Via Quintino Sella, 19, 47921 Rimini RN, Italy", + "Business Name" : "Loving Hut Vegan Cafe & Restaurant", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "44.0609989", + "Longitude" : "12.5701947" + } + }, + "Published" : "2019-08-23T12:01:00Z", + "Title" : "Loving Hut Vegan Cafe & Restaurant", + "Updated" : "2019-08-23T12:01:00Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.7729791, 43.9413479 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15019372483740432322", + "Location" : { + "Address" : "9/11, Via Mancini, 61012 Gradara PU, Italy", + "Business Name" : "Bar Pizzeria Da Berto", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "43.9413479", + "Longitude" : "12.7729791" + } + }, + "Published" : "2019-08-21T22:03:56Z", + "Title" : "Bar Pizzeria Da Berto", + "Updated" : "2019-08-21T22:03:56Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.8222700, 43.9512316 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14582170984083314529", + "Location" : { + "Address" : "Piazza Dante Alighieri, sn, 61121 Fiorenzuola di Focara PU, Italy", + "Business Name" : "Piadinzuola", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "43.9512316", + "Longitude" : "12.8222700" + } + }, + "Published" : "2019-08-21T20:12:14Z", + "Title" : "Piadinzuola", + "Updated" : "2019-08-21T20:12:14Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.9133509, 43.9104617 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7155220537997970354", + "Location" : { + "Address" : "Via Gioacchino Rossini, 21, 61121 Pesaro PU, Italy", + "Business Name" : "Flying Tiger Copenhagen", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "43.9104617", + "Longitude" : "12.9133509" + } + }, + "Published" : "2019-08-21T14:19:47Z", + "Title" : "Flying Tiger Copenhagen", + "Updated" : "2019-08-21T14:19:47Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.9175302, 43.9141499 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12354832566273519851", + "Location" : { + "Address" : "Viale Trieste, 180, 61121 Pesaro PU, Italy", + "Business Name" : "TipoPub", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "43.9141499", + "Longitude" : "12.9175302" + } + }, + "Published" : "2019-08-20T20:12:56Z", + "Title" : "TipoPub", + "Updated" : "2019-08-20T20:12:56Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.9207910, 43.8996536 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=13665313667917572823", + "Location" : { + "Address" : "Via Fedele Salvatori, 13, 61122 Pesaro PU, Italy", + "Business Name" : "CONAD CITY", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "43.8996536", + "Longitude" : "12.9207910" + } + }, + "Published" : "2019-08-20T12:15:29Z", + "Title" : "CONAD CITY", + "Updated" : "2019-08-20T12:15:29Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.9095569, 43.9059200 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10482633247317065999", + "Location" : { + "Address" : "Via Nino Bixio, 19, 61121 Pesaro PU, Italy", + "Business Name" : "Mini Mix Market", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "43.9059200", + "Longitude" : "12.9095569" + } + }, + "Published" : "2019-08-20T12:13:41Z", + "Title" : "Mini Mix Market", + "Updated" : "2019-08-20T12:13:41Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.9021610, 43.9239303 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2732407685471348149", + "Location" : { + "Address" : "Str. tra I Due Porti, 67, 61100 Pesaro PU, Italy", + "Business Name" : "Ristorante La Vela", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "43.9239303", + "Longitude" : "12.9021610" + } + }, + "Published" : "2019-08-19T17:02:31Z", + "Title" : "Ristorante La Vela", + "Updated" : "2019-08-19T17:02:31Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.9211040, 43.9118520 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8018126699535928233", + "Location" : { + "Address" : "Piazzale Gabriele D'Annunzio, 4, 61121 Pesaro PU, Italy", + "Business Name" : "La Dolce Sosta", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "43.9118520", + "Longitude" : "12.9211040" + } + }, + "Published" : "2019-08-19T16:42:45Z", + "Title" : "La Dolce Sosta", + "Updated" : "2019-08-19T16:42:45Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.9140434, 43.9157142 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=18203602170947559403", + "Location" : { + "Address" : "Viale Guglielmo Marconi, 55, 61121 Pesaro PU, Italy", + "Business Name" : "Farcita", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "43.9157142", + "Longitude" : "12.9140434" + } + }, + "Published" : "2019-08-19T13:51:53Z", + "Title" : "Farcita", + "Updated" : "2019-08-19T13:51:53Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.9137460, 43.9075170 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11179563962628344394", + "Location" : { + "Address" : "Viale Antonio Gramsci, 21, Via B. Buozzi N.20, Via G. Giusti N.6, 61121 Pesaro PU, Italy", + "Business Name" : "Chiccoteca Pesaro", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "43.9075170", + "Longitude" : "12.9137460" + } + }, + "Published" : "2019-08-19T13:48:16Z", + "Title" : "Chiccoteca Pesaro", + "Updated" : "2019-08-19T13:48:16Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.9141692, 43.9091808 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1890397983493640028", + "Location" : { + "Address" : "Via S. Francesco D'Assisi, 38, 61121 Pesaro PU, Italy", + "Business Name" : "Pizzeria A Modo Bio", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "43.9091808", + "Longitude" : "12.9141692" + } + }, + "Published" : "2019-08-19T13:47:17Z", + "Title" : "Pizzeria A Modo Bio", + "Updated" : "2019-08-19T13:47:17Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.9040436, 43.9125698 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=277684210288296717", + "Location" : { + "Address" : "Via Canale, 41, 61121 Pesaro PU, Italy", + "Business Name" : "Conad - Supermarket", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "43.9125698", + "Longitude" : "12.9040436" + } + }, + "Published" : "2019-08-18T17:14:44Z", + "Title" : "Conad - Supermarket", + "Updated" : "2019-08-18T17:14:44Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.9207150, 43.9128652 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5043091779926723844", + "Location" : { + "Address" : "Lungomare Nazario Sauro, 12, 61121 Pesaro PU, Italy", + "Business Name" : "Gabriel Beach 25 - Beach Seaside by Pesaro - Italy", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "43.9128652", + "Longitude" : "12.9207150" + } + }, + "Published" : "2019-08-17T17:14:48Z", + "Title" : "Gabriel Beach 25 - Beach Seaside by Pesaro - Italy", + "Updated" : "2019-08-17T17:14:48Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.9063415, 43.9232390 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7864084547469103237", + "Location" : { + "Address" : "Calata Caio Duilio, 97, 61121 Pesaro PU, Italy", + "Business Name" : "Piadamarina", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "43.9232390", + "Longitude" : "12.9063415" + } + }, + "Published" : "2019-08-16T19:41:07Z", + "Title" : "Piadamarina", + "Updated" : "2019-08-16T19:41:07Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.9003954, 43.9210160 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1434848985892578925", + "Location" : { + "Address" : "Viale Bruxelles, 1, 61121 Pesaro PU, Italy", + "Business Name" : "Miki's", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "43.9210160", + "Longitude" : "12.9003954" + } + }, + "Published" : "2019-08-16T19:39:35Z", + "Title" : "Miki's", + "Updated" : "2019-08-16T19:39:35Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.9255908, 52.2075906 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3979403259133619555", + "Location" : { + "Address" : "Asselsestraat 330, 7312 TS Apeldoorn, Netherlands", + "Business Name" : "Stayokay Hostel Apeldoorn", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.2075906", + "Longitude" : "5.9255908" + } + }, + "Published" : "2019-05-22T16:15:52Z", + "Title" : "Stayokay Apeldoorn", + "Updated" : "2019-05-22T16:15:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.9144444, 52.0008333 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14861377599763433358", + "Location" : { + "Address" : "Diepenbrocklaan 27, 6815 AH Arnhem, Netherlands", + "Business Name" : "Stayokay Hostel Arnhem", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.0008333", + "Longitude" : "5.9144444" + } + }, + "Published" : "2019-05-22T16:15:41Z", + "Title" : "Stayokay Arnhem", + "Updated" : "2019-05-22T16:15:41Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 101.7078461, 3.1488265 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=3.148826465965252,101.7078460380435", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "3.1488265", + "Longitude" : "101.7078461" + } + }, + "Published" : "2018-10-11T05:16:17Z", + "Title" : "3.148826465965252,101.7078460380435", + "Updated" : "2018-10-11T05:16:17Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 103.8500740, 1.2913300 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8626431404852143264", + "Location" : { + "Address" : "109 North Bridge Road, #01-11, Funan DigitaLife Mall, 179097, Singapore 179097", + "Business Name" : "3 Mobile - Funan Digitalife Mall Outlet", + "Country Code" : "SG", + "Geo Coordinates" : { + "Latitude" : "1.2913300", + "Longitude" : "103.8500740" + } + }, + "Published" : "2018-10-07T07:22:56Z", + "Title" : "3 Mobile - Funan Digitalife Mall Outlet", + "Updated" : "2018-10-07T07:22:56Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 101.6102700, 3.1381320 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=3.1381319999999997,101.61027", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "3.1381320", + "Longitude" : "101.6102700" + } + }, + "Published" : "2018-09-29T05:46:13Z", + "Title" : "3.1381319999999997,101.61027", + "Updated" : "2018-09-29T05:46:13Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 101.6513403, 3.0950048 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16978202940815589879", + "Location" : { + "Address" : "15, Jalan Gasing, Seksyen 5, 46000 Petaling Jaya, Selangor, Malaysia", + "Business Name" : "Lotus Family Restaurant", + "Country Code" : "MY", + "Geo Coordinates" : { + "Latitude" : "3.0950048", + "Longitude" : "101.6513403" + } + }, + "Published" : "2018-09-28T09:06:00Z", + "Title" : "Lotus Family Restaurant", + "Updated" : "2018-09-28T09:06:00Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 6.7098809, 52.9941268 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3718001116744949938", + "Location" : { + "Address" : "Provincialeweg 2, 9463 TK Eext, Netherlands", + "Business Name" : "Natuurbegraafplaats Hillig Meer", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.9941268", + "Longitude" : "6.7098809" + } + }, + "Published" : "2018-09-24T13:02:03Z", + "Title" : "Natuurbegraafplaats Hillig Meer", + "Updated" : "2018-09-24T13:02:03Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 101.3741667, 20.8497222 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=20.8497222,101.37416669999999", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "20.8497222", + "Longitude" : "101.3741667" + } + }, + "Published" : "2018-09-24T13:01:45Z", + "Title" : "20.8497222,101.37416669999999", + "Updated" : "2018-09-24T13:01:45Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 101.6790179, 3.1275037 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Lrt+Station+Bangsar,+59000+Kuala+Lumpur,+Wilayah+Persekutuan+Kuala+Lumpur,+Malaysia&ftid=0x31cc49940f605ff3:0x4e3876a022b74714", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "3.1275037", + "Longitude" : "101.6790179" + } + }, + "Published" : "2018-09-23T12:29:00Z", + "Title" : "Lrt Station Bangsar, 59000 Kuala Lumpur, Wilayah Persekutuan Kuala Lumpur, Malaysia", + "Updated" : "2018-09-23T12:29:00Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 101.7008554, 3.1457687 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=621893257275781516", + "Location" : { + "Address" : "Jalan Pudu, City Centre, 50150 Kuala Lumpur, Wilayah Persekutuan Kuala Lumpur, Malaysia", + "Business Name" : "Pudu Sentral (Puduraya)", + "Country Code" : "MY", + "Geo Coordinates" : { + "Latitude" : "3.1457687", + "Longitude" : "101.7008554" + } + }, + "Published" : "2018-09-23T12:25:55Z", + "Title" : "Pudu Sentral (Puduraya)", + "Updated" : "2018-09-23T12:25:55Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 101.7110798, 3.0780526 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15065632502220011428", + "Location" : { + "Address" : "Jalan Terminal Selatan, Bandar Tasek Selatan, 57100 Kuala Lumpur, Wilayah Persekutuan Kuala Lumpur, Malaysia", + "Business Name" : "Terminal Bersepadu Selatan", + "Country Code" : "MY", + "Geo Coordinates" : { + "Latitude" : "3.0780526", + "Longitude" : "101.7110798" + } + }, + "Published" : "2018-09-23T12:11:08Z", + "Title" : "Terminal Bersepadu Selatan", + "Updated" : "2018-09-23T12:11:08Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 103.8638479, 1.3019082 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14000733664532411286", + "Location" : { + "Address" : "6001 Beach Rd, Singapore 199589", + "Business Name" : "Golden Mile Tower", + "Country Code" : "SG", + "Geo Coordinates" : { + "Latitude" : "1.3019082", + "Longitude" : "103.8638479" + } + }, + "Published" : "2018-09-23T12:10:17Z", + "Title" : "Golden Mile Tower", + "Updated" : "2018-09-23T12:10:17Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 103.8439452, 1.3198822 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7703618223473900337", + "Location" : { + "Address" : "238 Thomson Rd, Singapore 307683", + "Business Name" : "Velocity@Novena Square", + "Country Code" : "SG", + "Geo Coordinates" : { + "Latitude" : "1.3198822", + "Longitude" : "103.8439452" + } + }, + "Published" : "2018-09-23T12:08:35Z", + "Title" : "Velocity", + "Updated" : "2018-09-23T12:08:35Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 103.8500332, 1.3036851 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14421074197345506839", + "Location" : { + "Address" : "183 Selegie Rd, Singapore 188329", + "Business Name" : "ibis budget Singapore Selegie", + "Country Code" : "SG", + "Geo Coordinates" : { + "Latitude" : "1.3036851", + "Longitude" : "103.8500332" + } + }, + "Published" : "2018-09-23T12:08:29Z", + "Title" : "Fragrance Hotel - Selegie", + "Updated" : "2018-09-23T12:08:29Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 101.7105512, 3.1421984 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Berjaya+Times+Square,+Imbi,+55100+Kuala+Lumpur,+Federal+Territory+of+Kuala+Lumpur,+Malaysia&ftid=0x31cc362890c18e43:0xaf957d45b8d91bdc", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "3.1421984", + "Longitude" : "101.7105512" + } + }, + "Published" : "2018-09-23T12:02:23Z", + "Title" : "Berjaya Times Square, Imbi, 55100 Kuala Lumpur, Federal Territory of Kuala Lumpur, Malaysia", + "Updated" : "2018-09-23T12:02:23Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 7.1424007, 60.4994265 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=60.499426,7.142401", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "60.4994265", + "Longitude" : "7.1424007" + } + }, + "Published" : "2014-08-31T10:25:18Z", + "Title" : "60.499426,7.142401", + "Updated" : "2018-06-15T06:05:18Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3293144, 60.3830046 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=60.383005,5.329314", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "60.3830046", + "Longitude" : "5.3293144" + } + }, + "Published" : "2014-08-19T11:53:35Z", + "Title" : "60.383005,5.329314", + "Updated" : "2018-06-15T06:04:43Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.6687175, 51.9817701 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10139689026337646378", + "Location" : { + "Address" : "Bornsesteeg 2, 6708 PE Wageningen, Netherlands", + "Business Name" : "Sports Center de Bongerd - Wageningen campus", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "51.9817701", + "Longitude" : "5.6687175" + } + }, + "Published" : "2018-05-25T12:27:00Z", + "Title" : "Sports Center de Bongerd - Wageningen campus", + "Updated" : "2018-05-25T12:27:00Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.6687175, 51.9817701 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Bornsesteeg+2,+6708+PE+Wageningen&ftid=0x47c7acbd2127eaeb:0x60b81be75ecd5653", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.9817701", + "Longitude" : "5.6687175" + } + }, + "Published" : "2018-05-25T12:18:51Z", + "Title" : "Bornsesteeg 2, 6708 PE Wageningen", + "Updated" : "2018-05-25T12:18:51Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9047989, 52.3724484 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Oude+Waal+34A,+1011+CC+Amsterdam&ftid=0x47c609bb9a5fda25:0xcedcfe560545ddb5", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3724484", + "Longitude" : "4.9047989" + } + }, + "Published" : "2018-04-23T11:11:51Z", + "Title" : "Oude Waal 34A, 1011 CC Amsterdam", + "Updated" : "2018-04-23T17:46:03Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9357169, 52.3576664 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16472079503506821625", + "Location" : { + "Address" : "Polderweg 648, 1093 KP Amsterdam, Netherlands", + "Business Name" : "Brouwerij Poesiat & Kater", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3576664", + "Longitude" : "4.9357169" + } + }, + "Published" : "2018-04-19T16:29:46Z", + "Title" : "Poesiat & Kater", + "Updated" : "2018-04-19T16:29:46Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8873204, 52.3687036 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8407621572744474403", + "Location" : { + "Address" : "Wijde Heisteeg 1, 1016 AS Amsterdam, Netherlands", + "Business Name" : "The Lebanese Sajeria", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3687036", + "Longitude" : "4.8873204" + } + }, + "Published" : "2018-03-12T10:50:19Z", + "Title" : "The Lebanese Sajeria", + "Updated" : "2018-03-12T10:50:19Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.6326744, 52.5125574 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.512557,4.632674", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.5125574", + "Longitude" : "4.6326744" + } + }, + "Published" : "2014-07-17T09:27:05Z", + "Title" : "52.512557,4.632674", + "Updated" : "2018-03-02T05:53:54Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8981814, 52.3681404 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.368140,4.898181", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3681404", + "Longitude" : "4.8981814" + } + }, + "Published" : "2011-12-22T16:29:59Z", + "Title" : "52.368140,4.898181", + "Updated" : "2018-03-02T05:53:12Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9358230, 52.3729005 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.372901,4.935823", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3729005", + "Longitude" : "4.9358230" + } + }, + "Published" : "2014-06-18T12:21:51Z", + "Title" : "52.372901,4.935823", + "Updated" : "2018-03-02T05:53:01Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8947330, 52.3761830 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.376183,4.894733", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3761830", + "Longitude" : "4.8947330" + } + }, + "Published" : "2013-12-10T18:34:49Z", + "Title" : "52.376183,4.894733", + "Updated" : "2018-03-02T05:52:54Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.5042393, 52.1617423 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.161742,4.504239", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.1617423", + "Longitude" : "4.5042393" + } + }, + "Published" : "2013-08-04T17:19:37Z", + "Title" : "52.161742,4.504239", + "Updated" : "2018-03-02T05:52:23Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8825605, 52.3621414 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.362141,4.882560", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3621414", + "Longitude" : "4.8825605" + } + }, + "Published" : "2014-07-02T15:43:03Z", + "Title" : "52.362141,4.882560", + "Updated" : "2018-03-02T05:52:19Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9319820, 52.3622022 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Celebesstraat+58A,+1094+ER+Amsterdam&ftid=0x47c6097260a37d35:0x76a06ac65da1539a", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3622022", + "Longitude" : "4.9319820" + } + }, + "Published" : "2018-02-07T17:00:25Z", + "Title" : "Celebesstraat 58A, 1094 ER Amsterdam", + "Updated" : "2018-02-07T17:00:25Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8806193, 52.3967949 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Haparandadam+7,+1013+Amsterdam&ftid=0x47c6082f23ef0ddf:0xc14db5c9befa40f0", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3967949", + "Longitude" : "4.8806193" + } + }, + "Published" : "2018-01-19T19:45:01Z", + "Title" : "Haparandadam 7, 1013 Amsterdam", + "Updated" : "2018-01-19T19:45:01Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8664007, 52.3658146 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=17680022802554265414", + "Location" : { + "Address" : "Kinkerstraat 214-222, 1053 EM Amsterdam, Netherlands", + "Business Name" : "Action", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3658146", + "Longitude" : "4.8664007" + } + }, + "Published" : "2018-01-16T09:08:23Z", + "Title" : "Action", + "Updated" : "2018-01-16T09:08:23Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8869186, 52.3524574 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Ruysdaelkade+183h,+1072+AT+Amsterdam&ftid=0x47c609f3c0430c73:0x37f9a071f7c78e5c", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3524574", + "Longitude" : "4.8869186" + } + }, + "Published" : "2018-01-09T19:27:50Z", + "Title" : "Ruysdaelkade 183h, 1072 AT Amsterdam", + "Updated" : "2018-01-09T19:27:50Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9448061, 52.3128362 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10555141889860878984", + "Location" : { + "Address" : "Johan Cruijff Boulevard 155, 1101 EJ Amsterdam-Zuidoost, Netherlands", + "Business Name" : "JinSo Lounge Bar & Restaurant", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3128362", + "Longitude" : "4.9448061" + } + }, + "Published" : "2018-01-07T16:13:21Z", + "Title" : "Restaurant JinSo", + "Updated" : "2018-01-07T16:13:21Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8788889, 52.3727778 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9473257532336305522", + "Location" : { + "Address" : "Rozengracht 133, 1016 LV Amsterdam, Netherlands", + "Business Name" : "Chin Chin Club", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3727778", + "Longitude" : "4.8788889" + } + }, + "Published" : "2017-12-30T13:47:21Z", + "Title" : "Chin Chin Club", + "Updated" : "2017-12-30T13:47:21Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1954864, 19.4318805 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=19.431881,-99.195486", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.4318805", + "Longitude" : "-99.1954864" + } + }, + "Published" : "2014-10-22T16:57:10Z", + "Title" : "19.431881,-99.195486", + "Updated" : "2017-12-29T05:46:23Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8887313, 52.3684598 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3942926218450639450", + "Location" : { + "Address" : "Spui 30, 1012 XA Amsterdam, Netherlands", + "Business Name" : "De Brabantse Aap", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3684598", + "Longitude" : "4.8887313" + } + }, + "Published" : "2017-12-05T12:23:30Z", + "Title" : "De Brabantse Aap", + "Updated" : "2017-12-05T12:23:30Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8724194, 52.3374612 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Claude+Debussylaan+11,+1082+MC+Amsterdam&ftid=0x47c60a05a5f97383:0x7256738a577ce78d", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3374612", + "Longitude" : "4.8724194" + } + }, + "Published" : "2017-12-04T16:25:59Z", + "Title" : "Claude Debussylaan 11, 1082 MC Amsterdam", + "Updated" : "2017-12-04T16:25:59Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8906237, 52.3547076 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=17572889993255171815", + "Location" : { + "Address" : "Ferdinand Bolstraat 67, 1072 LC Amsterdam, Netherlands", + "Business Name" : "Pasta Pasta", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3547076", + "Longitude" : "4.8906237" + } + }, + "Published" : "2017-11-23T16:57:43Z", + "Title" : "pasta pasta", + "Updated" : "2017-11-23T16:57:43Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9300870, 52.3623118 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15533120876514332014", + "Location" : { + "Address" : "Pieter Nieuwlandstraat 95, 1093 XN Amsterdam, Netherlands", + "Business Name" : "FietsKliniek", + "Geo Coordinates" : { + "Latitude" : "52.3623118", + "Longitude" : "4.9300870" + } + }, + "Published" : "2017-11-22T14:45:40Z", + "Title" : "FietsKliniek", + "Updated" : "2017-11-22T14:45:40Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8873361, 52.3557217 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Saenredamstraat+4,+1072+CG+Amsterdam&ftid=0x47c609f272e4892f:0xf75b4a26ff604db1", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3557217", + "Longitude" : "4.8873361" + } + }, + "Published" : "2017-11-12T17:02:15Z", + "Title" : "Saenredamstraat 4, 1072 CG Amsterdam", + "Updated" : "2017-11-12T17:02:15Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8847136, 52.3839766 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1242285474692129903", + "Location" : { + "Address" : "Haarlemmerdijk 159 - 163, 1013 KH Amsterdam, Netherlands", + "Business Name" : "The Movies", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3839766", + "Longitude" : "4.8847136" + } + }, + "Published" : "2017-10-06T14:52:49Z", + "Title" : "The Movies", + "Updated" : "2017-10-06T14:52:49Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.7855826, 52.3612082 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2318524133491265989", + "Location" : { + "Address" : "Jan Rebelstraat 15, 1069 CA Amsterdam, Netherlands", + "Business Name" : "Sporthuis Harte", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3612082", + "Longitude" : "4.7855826" + } + }, + "Published" : "2017-10-06T10:49:12Z", + "Title" : "Sporthuis Harte", + "Updated" : "2017-10-06T10:49:12Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8991415, 52.3748746 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.374875,4.899141", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3748746", + "Longitude" : "4.8991415" + } + }, + "Published" : "2015-05-04T15:38:45Z", + "Title" : "52.374875,4.899141", + "Updated" : "2017-09-01T06:15:41Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.0663210, 51.4698520 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16378087117418903111", + "Location" : { + "Address" : "133 Copeland Rd, Peckham, London SE15 3SN, United Kingdom", + "Business Name" : "Copeland Park & Bussey Building", + "Country Code" : "GB", + "Geo Coordinates" : { + "Latitude" : "51.4698520", + "Longitude" : "-0.0663210" + } + }, + "Published" : "2017-07-22T14:25:17Z", + "Title" : "Copeland Park & Bussey Building", + "Updated" : "2017-07-22T14:25:17Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.0761903, 51.5235227 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3173992448444600734", + "Location" : { + "Address" : "2-10 Bethnal Green Rd, Hackney, London E1 6GY, United Kingdom", + "Business Name" : "BOXPARK Shoreditch", + "Country Code" : "GB", + "Geo Coordinates" : { + "Latitude" : "51.5235227", + "Longitude" : "-0.0761903" + } + }, + "Published" : "2017-07-22T12:50:40Z", + "Title" : "BOXPARK Shoreditch", + "Updated" : "2017-07-22T12:50:40Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.1918960, 51.5010225 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15237478915699951108", + "Location" : { + "Address" : "99 Kensington High St, Kensington, London W8 5SA, United Kingdom", + "Business Name" : "Kensington Roof Gardens", + "Country Code" : "GB", + "Geo Coordinates" : { + "Latitude" : "51.5010225", + "Longitude" : "-0.1918960" + } + }, + "Published" : "2017-07-22T08:30:35Z", + "Title" : "The Roof Gardens", + "Updated" : "2017-07-22T08:30:35Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.0717043, 51.5220063 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Brick+Ln,+London+E1+6RL,+UK&ftid=0x48761cb640ab7f25:0xe1078eb9c803248e", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.5220063", + "Longitude" : "-0.0717043" + } + }, + "Published" : "2017-07-22T08:24:37Z", + "Title" : "Brick Ln, London E1 6RL, UK", + "Updated" : "2017-07-22T08:24:37Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.1200663, 51.5322900 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2066665111024803188", + "Location" : { + "Address" : "54-58 Caledonian Rd, Islington, London N1 9DP, United Kingdom", + "Business Name" : "Home London", + "Country Code" : "GB", + "Geo Coordinates" : { + "Latitude" : "51.5322900", + "Longitude" : "-0.1200663" + } + }, + "Published" : "2017-07-21T14:29:37Z", + "Title" : "Home London", + "Updated" : "2017-07-21T14:29:37Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.1610523, 51.1568580 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12283464412457075806", + "Location" : { + "Address" : "Gatwick Airport, Horley, Gatwick RH6 0RD, United Kingdom", + "Business Name" : "Gatwick Airport Station", + "Country Code" : "GB", + "Geo Coordinates" : { + "Latitude" : "51.1568580", + "Longitude" : "-0.1610523" + } + }, + "Published" : "2017-07-21T14:28:47Z", + "Title" : "Gatwick Airport Station", + "Updated" : "2017-07-21T14:28:47Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.1233234, 51.5320013 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8928889629044324603", + "Location" : { + "Address" : "Euston Rd, Kings Cross, London N1 9AL, United Kingdom", + "Business Name" : "King's Cross", + "Country Code" : "GB", + "Geo Coordinates" : { + "Latitude" : "51.5320013", + "Longitude" : "-0.1233234" + } + }, + "Published" : "2017-07-18T19:54:23Z", + "Title" : "King's Cross", + "Updated" : "2017-07-18T19:54:23Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.4542955, 51.4700223 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10369348292721394023", + "Location" : { + "Address" : "Longford TW6, United Kingdom", + "Business Name" : "Heathrow Airport", + "Country Code" : "GB", + "Geo Coordinates" : { + "Latitude" : "51.4700223", + "Longitude" : "-0.4542955" + } + }, + "Published" : "2017-07-18T19:40:18Z", + "Title" : "Heathrow Airport", + "Updated" : "2017-07-18T19:40:18Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -71.0230359, 42.3686758 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Logan+Airport+Terminal+E,+Boston,+MA+02128,+USA&ftid=0x89e3703ede1d0071:0x77b465405bfd0a7", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "42.3686758", + "Longitude" : "-71.0230359" + } + }, + "Published" : "2017-07-16T21:27:27Z", + "Title" : "Logan Airport Terminal E, Boston, MA 02128, USA", + "Updated" : "2017-07-16T21:27:27Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -70.6087977, 43.1791517 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=11+Center+St,+York,+ME+03909,+USA&ftid=0x89e2afe2a42dacd9:0x706ad5e6c38b09d5", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "43.1791517", + "Longitude" : "-70.6087977" + } + }, + "Published" : "2017-07-06T15:34:53Z", + "Title" : "11 Center St, York, ME 03909, USA", + "Updated" : "2017-07-06T15:34:53Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -72.1187287, 43.4985408 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10550768458645877056", + "Location" : { + "Address" : "6 Club House Ln, Grantham, NH 03753, United States", + "Business Name" : "Bistro Nouveau", + "Geo Coordinates" : { + "Latitude" : "43.4985408", + "Longitude" : "-72.1187287" + } + }, + "Published" : "2017-06-29T21:11:46Z", + "Title" : "Bistro Nouveau", + "Updated" : "2017-06-29T21:11:46Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8201278, 52.3623460 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.362345986644264,4.820127747952938", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3623460", + "Longitude" : "4.8201278" + } + }, + "Published" : "2017-06-11T16:39:50Z", + "Title" : "52.362345986644264,4.820127747952938", + "Updated" : "2017-06-11T16:39:50Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9040607, 52.3901722 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5490261902859670379", + "Location" : { + "Address" : "Asterweg 19E1, 1031 HL Amsterdam, Netherlands", + "Business Name" : "VR Arcade Amsterdam Noord", + "Geo Coordinates" : { + "Latitude" : "52.3901722", + "Longitude" : "4.9040607" + } + }, + "Published" : "2017-06-07T07:58:21Z", + "Title" : "De VR Arcade Amsterdam", + "Updated" : "2017-06-07T07:58:21Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.2045373, 19.4315931 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=19.431593,-99.204537", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.4315931", + "Longitude" : "-99.2045373" + } + }, + "Published" : "2014-10-22T16:48:36Z", + "Title" : "19.431593,-99.204537", + "Updated" : "2017-06-05T06:55:28Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9177690, 52.3569580 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Beukenplein+20,+1091+KH+Amsterdam&ftid=0x47c6099d6d30abbb:0x2792c42632b9f37d", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3569580", + "Longitude" : "4.9177690" + } + }, + "Published" : "2017-06-03T09:01:47Z", + "Title" : "Beukenplein 20, 1091 KH Amsterdam", + "Updated" : "2017-06-03T09:01:47Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.4409150, 50.2839440 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=13152932557311975129", + "Location" : { + "Address" : "6990 Hotton, Belgium", + "Business Name" : "Melreux-Hotton", + "Country Code" : "BE", + "Geo Coordinates" : { + "Latitude" : "50.2839440", + "Longitude" : "5.4409150" + } + }, + "Published" : "2017-05-27T15:50:20Z", + "Title" : "Melreux-Hotton", + "Updated" : "2017-05-27T15:50:20Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.4535042, 50.2676969 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Parkeerplaatsen,+N807,+6990+Hotton,+Belgium&ftid=0x47c04903f0945e0d:0x1de38219d23d868a", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "50.2676969", + "Longitude" : "5.4535042" + } + }, + "Published" : "2017-05-24T20:04:47Z", + "Title" : "Parkeerplaatsen, N807, 6990 Hotton, Belgium", + "Updated" : "2017-05-24T20:04:47Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8728365, 52.3909724 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Hembrugstraat+340,+1013+XG+Amsterdam&ftid=0x47c6082a84d04bd7:0x792fc1350b348cde", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3909724", + "Longitude" : "4.8728365" + } + }, + "Published" : "2017-05-22T16:52:49Z", + "Title" : "Hembrugstraat 340, 1013 XG Amsterdam", + "Updated" : "2017-05-22T16:52:49Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9137227, 52.3343315 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9257917055555449919", + "Location" : { + "Address" : "Joan Muyskenweg 14, 1096 CJ Amsterdam, Netherlands", + "Business Name" : "Dok Amsterdam", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3343315", + "Longitude" : "4.9137227" + } + }, + "Published" : "2017-05-20T12:52:06Z", + "Title" : "Dok Amsterdam", + "Updated" : "2017-05-20T12:52:06Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8370735, 52.3945129 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Donauweg+10,+1043+AJ+Amsterdam&ftid=0x47c5e2f6dd3e01f7:0x389e18b1d7541acc", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3945129", + "Longitude" : "4.8370735" + } + }, + "Published" : "2017-05-05T07:11:26Z", + "Title" : "Donauweg 10, 1043 AJ Amsterdam", + "Updated" : "2017-05-05T07:11:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.4456800, 50.2672800 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=6990+Hotton,+Belgium&ftid=0x47c0497146d0b1e9:0x5bf936ecbc57ee09", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "50.2672800", + "Longitude" : "5.4456800" + } + }, + "Published" : "2017-04-26T17:34:33Z", + "Title" : "Hotton, Belgium", + "Updated" : "2017-04-26T17:35:20Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.5244000, 50.4039100 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=4190+Sy,+Belgium&ftid=0x47c05072b06cff13:0xa085fbc01c9f5c3e", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "50.4039100", + "Longitude" : "5.5244000" + } + }, + "Published" : "2017-04-26T17:34:19Z", + "Title" : "Sy, Belgium", + "Updated" : "2017-04-26T17:34:19Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.6714880, 52.0281586 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2485284939139958380", + "Location" : { + "Address" : "6717 LV Ede, Netherlands", + "Business Name" : "Ede-Wageningen", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.0281586", + "Longitude" : "5.6714880" + } + }, + "Published" : "2017-04-26T14:39:36Z", + "Title" : "Ede-Wageningen", + "Updated" : "2017-04-26T14:39:36Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9064839, 52.3438133 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4569324375109442557", + "Location" : { + "Address" : "Rijnstraat 117, 1079 HB Amsterdam, Netherlands", + "Business Name" : "Vascobelo V-bar Rijnstraat", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3438133", + "Longitude" : "4.9064839" + } + }, + "Published" : "2017-04-05T11:59:11Z", + "Title" : "Vascobelo Rijnstraat", + "Updated" : "2017-04-05T11:59:11Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8861874, 52.3723676 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14438075788053358604", + "Location" : { + "Address" : "Hartenstraat 12, 1016 CB Amsterdam, Netherlands", + "Business Name" : "Screaming Beans Hartenstraat", + "Geo Coordinates" : { + "Latitude" : "52.3723676", + "Longitude" : "4.8861874" + } + }, + "Published" : "2017-04-05T11:58:56Z", + "Title" : "Screaming Beans Hartenstraat", + "Updated" : "2017-04-05T11:58:56Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9365279, 52.3523498 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Linnaeusparkweg+138,+1098+EL+Amsterdam&ftid=0x47c60965b9b00a11:0x7d9a6bcfcbe33ef9", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3523498", + "Longitude" : "4.9365279" + } + }, + "Published" : "2017-02-16T18:11:16Z", + "Title" : "Linnaeusparkweg 138, 1098 EL Amsterdam", + "Updated" : "2017-02-16T18:11:16Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8999493, 52.3660741 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7280622225939948081", + "Location" : { + "Address" : "Amstelstraat 34, 1017 DA Amsterdam, Netherlands", + "Business Name" : "Cafe Gollem Amstelstraat", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3660741", + "Longitude" : "4.8999493" + } + }, + "Published" : "2017-02-03T14:01:06Z", + "Title" : "Cafe Gollem Amstelstraat", + "Updated" : "2017-02-03T14:01:06Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8715409, 52.3705854 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Da+Costakade+48,+1053+WP+Amsterdam&ftid=0x47c609dfaa8e2aeb:0x4a576e7f3a6260cb", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3705854", + "Longitude" : "4.8715409" + } + }, + "Published" : "2017-01-26T19:59:02Z", + "Title" : "Da Costakade 48, 1053 WP Amsterdam", + "Updated" : "2017-01-26T19:59:02Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8636362, 52.3409951 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Fred.+Roeskestraat+97,+1076+EC+Amsterdam&ftid=0x47c60a0755d163bf:0x66648fe4324248a2", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3409951", + "Longitude" : "4.8636362" + } + }, + "Published" : "2017-01-26T15:59:32Z", + "Title" : "Fred. Roeskestraat 97, 1076 EC Amsterdam", + "Updated" : "2017-01-26T15:59:32Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 1.5218010, 42.5062850 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Andorra&ftid=0x12a5f52e989ef095:0x7c93ed778ea7f92", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "42.5062850", + "Longitude" : "1.5218010" + } + }, + "Published" : "2017-01-06T16:30:57Z", + "Title" : "Andorra", + "Updated" : "2017-01-06T16:30:57Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 19.0402350, 47.4979120 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Budapest,+Hungary&ftid=0x4741c334d1d4cfc9:0x400c4290c1e1160", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "47.4979120", + "Longitude" : "19.0402350" + } + }, + "Published" : "2017-01-06T16:14:24Z", + "Title" : "Budapest, Hungary", + "Updated" : "2017-01-06T16:14:24Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 26.1025384, 44.4267674 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Bucharest,+Romania&ftid=0x40b1f93abf3cad4f:0xac0632e37c9ca628", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "44.4267674", + "Longitude" : "26.1025384" + } + }, + "Published" : "2017-01-06T16:14:17Z", + "Title" : "Bucharest, Romania", + "Updated" : "2017-01-06T16:14:17Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9308834, 52.3847806 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16403097874952023863", + "Location" : { + "Address" : "1021 KB Amsterdam, Netherlands", + "Business Name" : "Zamenhofstraat", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3847806", + "Longitude" : "4.9308834" + } + }, + "Published" : "2016-12-26T16:49:28Z", + "Title" : "Amsterdam, Veer Zamenhofstraat", + "Updated" : "2016-12-26T16:49:28Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8611490, 52.3761398 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Jan+Haringstraat+9,+1056+XE+Amsterdam&ftid=0x47c5e2711fc4045f:0x4708329f38983bd0", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3761398", + "Longitude" : "4.8611490" + } + }, + "Published" : "2016-12-18T17:08:02Z", + "Title" : "Jan Haringstraat 9, 1056 XE Amsterdam", + "Updated" : "2016-12-18T17:08:02Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9272144, 52.3788380 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Lamonggracht+12,+1019+RE+Amsterdam&ftid=0x47c60906f8ffa33f:0xead2a88e555e4e6e", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3788380", + "Longitude" : "4.9272144" + } + }, + "Published" : "2016-12-16T20:04:53Z", + "Title" : "Lamonggracht 12, 1019 RE Amsterdam", + "Updated" : "2016-12-16T20:04:53Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -83.7534280, 9.7489170 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Costa+Rica&ftid=0x8f92e56221acc925:0x6254f72535819a2b", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "9.7489170", + "Longitude" : "-83.7534280" + } + }, + "Published" : "2016-12-09T10:42:31Z", + "Title" : "Costa Rica", + "Updated" : "2016-12-09T10:42:31Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -88.4976500, 17.1898770 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Belize&ftid=0x8f5c5b3ec112faf9:0xf64a8a4d3f1ee34e", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "17.1898770", + "Longitude" : "-88.4976500" + } + }, + "Published" : "2016-12-09T10:42:16Z", + "Title" : "Belize", + "Updated" : "2016-12-09T10:42:16Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 115.0919509, -8.3405389 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Bali,+Indonesia&ftid=0x2dd22f7520fca7d3:0x2872b62cc456cd84", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "-8.3405389", + "Longitude" : "115.0919509" + } + }, + "Published" : "2016-12-09T10:41:53Z", + "Title" : "Bali", + "Updated" : "2016-12-09T10:41:53Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8872748, 52.3776775 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=937215377933045324", + "Location" : { + "Address" : "Prinsenstraat 5, 1015 DA Amsterdam, Netherlands", + "Business Name" : "JD William's whisky bar", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3776775", + "Longitude" : "4.8872748" + } + }, + "Published" : "2016-12-03T14:26:37Z", + "Title" : "JD William's whisky bar", + "Updated" : "2016-12-03T14:26:37Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8822135, 52.3764780 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12588055913119366045", + "Location" : { + "Address" : "Tweede Egelantiersdwarsstraat 24, 1015 SC Amsterdam, Netherlands", + "Business Name" : "Japanese Pancake World", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3764780", + "Longitude" : "4.8822135" + } + }, + "Published" : "2016-12-03T14:24:50Z", + "Title" : "Japanese Pancake World", + "Updated" : "2016-12-03T14:24:50Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8483169, 52.3753505 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11703057705029762088", + "Location" : { + "Address" : "Mercatorstraat 171, 1056 RE Amsterdam, Netherlands", + "Business Name" : "Eetwinkel Buurman & Buurman", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3753505", + "Longitude" : "4.8483169" + } + }, + "Published" : "2016-11-27T15:54:27Z", + "Title" : "Eetwinkel Buurman & Buurman", + "Updated" : "2016-11-27T15:54:27Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 21.0115548, 52.2290062 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4755351835955274218", + "Location" : { + "Address" : "Marszałkowska 99/101, 05-800 Warszawa, Poland", + "Business Name" : "Beerokracja", + "Country Code" : "PL", + "Geo Coordinates" : { + "Latitude" : "52.2290062", + "Longitude" : "21.0115548" + } + }, + "Published" : "2016-11-21T19:05:21Z", + "Title" : "Beerokracja", + "Updated" : "2016-11-21T19:05:21Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 21.0122021, 52.2248443 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15651348749226525545", + "Location" : { + "Address" : "Polska, Poznańska 12, 00-454 Warszawa, Poland", + "Business Name" : "BEIRUT hummus & music bar", + "Country Code" : "PL", + "Geo Coordinates" : { + "Latitude" : "52.2248443", + "Longitude" : "21.0122021" + } + }, + "Published" : "2016-11-21T18:09:19Z", + "Title" : "BEIRUT hummus & music bar", + "Updated" : "2016-11-21T18:09:19Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 21.0330974, 52.2280013 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1035739652805734340", + "Location" : { + "Address" : "Rozbrat 44A, 00-419 Warszawa, Poland", + "Business Name" : "Na Lato", + "Country Code" : "PL", + "Geo Coordinates" : { + "Latitude" : "52.2280013", + "Longitude" : "21.0330974" + } + }, + "Published" : "2016-11-21T18:05:39Z", + "Title" : "Na Lato", + "Updated" : "2016-11-21T18:05:39Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 21.0223500, 52.2313942 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9872546049716043829", + "Location" : { + "Address" : "Nowy Świat 6/12, 00-497 Warszawa, Poland", + "Business Name" : "Cuda Na Kiju", + "Country Code" : "PL", + "Geo Coordinates" : { + "Latitude" : "52.2313942", + "Longitude" : "21.0223500" + } + }, + "Published" : "2016-11-21T18:05:12Z", + "Title" : "Cuda na Kiju - multitap bar", + "Updated" : "2016-11-21T18:05:12Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 21.0451557, 52.2555228 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5516319220055432135", + "Location" : { + "Address" : "Plac Konesera 4, 03-736 Warszawa, Poland", + "Business Name" : "Syreni Śpiew", + "Country Code" : "PL", + "Geo Coordinates" : { + "Latitude" : "52.2555228", + "Longitude" : "21.0451557" + } + }, + "Published" : "2016-11-21T18:04:44Z", + "Title" : "Syreni Śpiew", + "Updated" : "2016-11-21T18:04:44Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 21.0183793, 52.2362068 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4146509276841780046", + "Location" : { + "Address" : "Nowy Świat 64, 00-357 Warszawa, Poland", + "Business Name" : "Bierhalle", + "Country Code" : "PL", + "Geo Coordinates" : { + "Latitude" : "52.2362068", + "Longitude" : "21.0183793" + } + }, + "Published" : "2016-11-20T16:09:26Z", + "Title" : "Bierhalle", + "Updated" : "2016-11-20T16:09:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 21.0119596, 52.2316571 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7407387717649340523", + "Location" : { + "Address" : "Chmielna 35, 00-801 Warszawa, Poland", + "Business Name" : "ČESKÁ beer restaurant", + "Country Code" : "PL", + "Geo Coordinates" : { + "Latitude" : "52.2316571", + "Longitude" : "21.0119596" + } + }, + "Published" : "2016-11-20T16:09:08Z", + "Title" : "Ceska Restaurant", + "Updated" : "2016-11-20T16:09:08Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 21.0061624, 52.2317777 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Palace+of+Culture+and+Science,+plac+Defilad+1,+00-901+Warszawa,+Poland&ftid=0x471ecc8c93a84a83:0xa2e1cc1f1b7198de", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.2317777", + "Longitude" : "21.0061624" + } + }, + "Published" : "2016-11-20T16:08:48Z", + "Title" : "Pałac Kultury i Nauki, plac Defilad 1, 00-901 Warszawa, Poland", + "Updated" : "2016-11-20T16:08:48Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 21.0187555, 52.2199982 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11381036497314578537", + "Location" : { + "Address" : "aleja Wyzwolenia 18, 00-999 Warszawa, Poland", + "Business Name" : "Plan B", + "Country Code" : "PL", + "Geo Coordinates" : { + "Latitude" : "52.2199982", + "Longitude" : "21.0187555" + } + }, + "Published" : "2016-11-20T16:08:33Z", + "Title" : "Plan B", + "Updated" : "2016-11-20T16:08:33Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 21.0254481, 52.2372608 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3617054688705297971", + "Location" : { + "Address" : "Tamka 30, 00-355 Warszawa, Poland", + "Business Name" : "Tatamka", + "Country Code" : "PL", + "Geo Coordinates" : { + "Latitude" : "52.2372608", + "Longitude" : "21.0254481" + } + }, + "Published" : "2016-11-20T11:23:30Z", + "Title" : "Hostel Tatamka Warszawa", + "Updated" : "2016-11-20T11:23:30Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 19.9296016, 50.0584429 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=17076224620120184592", + "Location" : { + "Address" : "Felicjanek 4, 31-104 Kraków, Poland", + "Business Name" : "Massolit Books & Café", + "Country Code" : "PL", + "Geo Coordinates" : { + "Latitude" : "50.0584429", + "Longitude" : "19.9296016" + } + }, + "Published" : "2016-11-19T08:33:14Z", + "Title" : "Massolit Books & Café", + "Updated" : "2016-11-19T08:33:14Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 19.9471231, 50.0430988 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4158583742430107899", + "Location" : { + "Address" : "Plac Niepodległości 1, 30-514 Kraków, Poland", + "Business Name" : "Cafe Cinema Paradiso", + "Country Code" : "PL", + "Geo Coordinates" : { + "Latitude" : "50.0430988", + "Longitude" : "19.9471231" + } + }, + "Published" : "2016-11-18T16:40:50Z", + "Title" : "Cafe Cinema paradiso", + "Updated" : "2016-11-18T16:40:50Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 19.9331645, 50.0638433 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8043765580118717062", + "Location" : { + "Address" : "Juliana Dunajewskiego 1, 33-332 Kraków, Poland", + "Business Name" : "Roban second hand", + "Country Code" : "PL", + "Geo Coordinates" : { + "Latitude" : "50.0638433", + "Longitude" : "19.9331645" + } + }, + "Published" : "2016-11-18T09:54:12Z", + "Title" : "Roban second hand", + "Updated" : "2016-11-18T09:54:12Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 19.9488437, 50.0533917 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12594122699891233501", + "Location" : { + "Address" : "Starowiślna 54, 31-035 Kraków, Poland", + "Business Name" : "Roban", + "Country Code" : "PL", + "Geo Coordinates" : { + "Latitude" : "50.0533917", + "Longitude" : "19.9488437" + } + }, + "Published" : "2016-11-18T09:53:56Z", + "Title" : "Roban", + "Updated" : "2016-11-18T09:53:56Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 19.9273919, 50.0644950 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Dolnych+M%C5%82yn%C3%B3w+10,+33-332+Krak%C3%B3w,+Poland&ftid=0x47165b099907807d:0xc4396b9dc9671b63", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "50.0644950", + "Longitude" : "19.9273919" + } + }, + "Published" : "2016-11-17T19:21:16Z", + "Title" : "Dolnych Młynów 10, 33-332 Kraków, Poland", + "Updated" : "2016-11-17T19:21:16Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 19.9490690, 50.0511250 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7670189022883198632", + "Location" : { + "Address" : "Dajwór 17, 31-000 Kraków, Poland", + "Business Name" : "Parking Kazimierz guarded 24h", + "Country Code" : "PL", + "Geo Coordinates" : { + "Latitude" : "50.0511250", + "Longitude" : "19.9490690" + } + }, + "Published" : "2016-11-17T16:43:25Z", + "Title" : "GWŻ - Parking", + "Updated" : "2016-11-17T16:43:25Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 19.9429689, 50.0541052 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=336107593714997820", + "Location" : { + "Address" : "Dietla 58, 31-039 Kraków, Poland", + "Business Name" : "Atlantis Hostel", + "Country Code" : "PL", + "Geo Coordinates" : { + "Latitude" : "50.0541052", + "Longitude" : "19.9429689" + } + }, + "Published" : "2016-11-17T16:36:42Z", + "Title" : "Atlantis Hostel", + "Updated" : "2016-11-17T16:36:42Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8906118, 52.3686958 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12964456212050381317", + "Location" : { + "Address" : "Spui 15, 1012 WX Amsterdam, Netherlands", + "Business Name" : "The Seafood Bar", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3686958", + "Longitude" : "4.8906118" + } + }, + "Published" : "2016-11-08T17:10:53Z", + "Title" : "The Seafood Bar", + "Updated" : "2016-11-08T17:10:53Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8952719, 52.3819113 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10513225237275879600", + "Location" : { + "Address" : "De Ruijterkade 6bg, 1013 AA Amsterdam, Netherlands", + "Business Name" : "UTZ", + "Geo Coordinates" : { + "Latitude" : "52.3819113", + "Longitude" : "4.8952719" + } + }, + "Published" : "2016-11-08T17:06:28Z", + "Title" : "Stichting UTZ CERTIFIED", + "Updated" : "2016-11-08T17:06:28Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3328883, 60.3916153 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=60.391615,5.332888", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "60.3916153", + "Longitude" : "5.3328883" + } + }, + "Published" : "2014-08-19T11:52:35Z", + "Title" : "60.391615,5.332888", + "Updated" : "2016-11-03T05:24:33Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8880228, 52.3804758 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=13199520713548089325", + "Location" : { + "Address" : "Prinsengracht 2, 1015 DV Amsterdam, Netherlands", + "Business Name" : "Het Papeneiland", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3804758", + "Longitude" : "4.8880228" + } + }, + "Published" : "2016-10-14T14:38:54Z", + "Title" : "Papeneiland", + "Updated" : "2016-10-14T14:38:54Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9099420, 52.3712900 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10684289937688303176", + "Location" : { + "Address" : "Foeliestraat 16, 1011 TM Amsterdam, Netherlands", + "Business Name" : "Questomatica Amsterdam. Escape room, real-life quest (former Claustrophobia)", + "Geo Coordinates" : { + "Latitude" : "52.3712900", + "Longitude" : "4.9099420" + } + }, + "Published" : "2016-09-17T13:43:53Z", + "Title" : "Claustrophobia Amsterdam. Escape room, real-life quest", + "Updated" : "2016-09-17T13:43:53Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.2474068, 52.3481373 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.348137,5.247407", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3481373", + "Longitude" : "5.2474068" + } + }, + "Published" : "2014-09-12T16:00:10Z", + "Title" : "52.348137,5.247407", + "Updated" : "2016-06-17T05:24:20Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9106728, 52.3625284 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1271509684236063879", + "Location" : { + "Address" : "Roetersstraat 170, 1018 WE Amsterdam, Netherlands", + "Business Name" : "Filmtheater Kriterion", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3625284", + "Longitude" : "4.9106728" + } + }, + "Published" : "2016-06-04T08:12:43Z", + "Title" : "Filmtheater Kriterion", + "Updated" : "2016-06-04T08:12:43Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8773874, 52.3712369 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5370717168614805244", + "Location" : { + "Address" : "Laurierstraat 189, 1016 PL Amsterdam, Netherlands", + "Business Name" : "Annet Gelink Gallery B.V.", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3712369", + "Longitude" : "4.8773874" + } + }, + "Published" : "2016-05-29T19:14:55Z", + "Title" : "Annet Gelink Gallery B.V.", + "Updated" : "2016-05-29T19:14:55Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9239418, 52.3856289 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Schaafstraat+26C,+1021+KE+Amsterdam&ftid=0x47c609aaa2494ed9:0x6eb0236c343e836b", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3856289", + "Longitude" : "4.9239418" + } + }, + "Published" : "2016-05-28T12:58:26Z", + "Title" : "Schaafstraat 26C, 1021 KE Amsterdam", + "Updated" : "2016-05-28T12:58:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8719751, 52.3422906 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Station-Zuid+WTC,+Amsterdam&ftid=0x47c60a03ee520cdd:0x6ff7eeac45215c94", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3422906", + "Longitude" : "4.8719751" + } + }, + "Published" : "2016-05-26T20:53:36Z", + "Title" : "Station-Zuid WTC, Amsterdam", + "Updated" : "2016-05-26T20:53:36Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9012620, 52.3760460 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8205349920158011571", + "Location" : { + "Address" : "Oudezijds Kolk 9, 1012 AL Amsterdam, Netherlands", + "Business Name" : "Molly Malone's Irish Pub", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3760460", + "Longitude" : "4.9012620" + } + }, + "Published" : "2016-05-25T15:56:29Z", + "Title" : "Molly Malone's Irish Pub", + "Updated" : "2016-05-25T15:56:29Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8460278, 52.3661944 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.3661944,4.8460278", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3661944", + "Longitude" : "4.8460278" + } + }, + "Published" : "2016-05-05T14:52:35Z", + "Title" : "52.3661944,4.8460278", + "Updated" : "2016-05-05T14:52:35Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8396642, 52.3553670 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Kon.+Wilhelminaplein+2,+1062+HK+Amsterdam&ftid=0x47c5e2188175376b:0x1592295016b56cc1", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3553670", + "Longitude" : "4.8396642" + } + }, + "Published" : "2016-04-21T12:51:09Z", + "Title" : "Koningin Wilhelminaplein 2, 1062 HK Amsterdam", + "Updated" : "2016-04-21T12:51:09Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8578649, 52.3744280 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12910562223075798409", + "Location" : { + "Address" : "Jan van Galenstraat 129-131, 1056 BM Amsterdam, Netherlands", + "Business Name" : "020 Amsterdam Bicycles", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3744280", + "Longitude" : "4.8578649" + } + }, + "Published" : "2016-04-13T09:17:24Z", + "Title" : "020 Fietsen Amsterdam", + "Updated" : "2016-04-13T09:17:24Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8620383, 52.3749096 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Jan+van+Galenstraat+79,+1056+BJ+Amsterdam&ftid=0x47c5e27137723add:0x21aedb583fb62628", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3749096", + "Longitude" : "4.8620383" + } + }, + "Published" : "2016-04-13T09:17:20Z", + "Title" : "Jan van Galenstraat 79, 1056 BJ Amsterdam", + "Updated" : "2016-04-13T09:17:20Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8966194, 52.3682132 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15707565994668419924", + "Location" : { + "Address" : "Kloveniersburgwal 127, 1011 KD Amsterdam, Netherlands", + "Business Name" : "De Staalmeesters B.V.", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3682132", + "Longitude" : "4.8966194" + } + }, + "Published" : "2016-03-11T11:03:40Z", + "Title" : "De Staalmeesters", + "Updated" : "2016-03-11T11:03:40Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8903912, 52.3563448 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=959270954183319058", + "Location" : { + "Address" : "Ferdinand Bolstraat 36, 1072 LK Amsterdam, Netherlands", + "Business Name" : "DIM SUM NOW", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3563448", + "Longitude" : "4.8903912" + } + }, + "Published" : "2016-02-25T17:47:08Z", + "Title" : "Dim Sum Now", + "Updated" : "2016-02-25T17:47:08Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.6214256, 52.3558010 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Binnenweg+186B,+2101+JS+Heemstede&ftid=0x47c5e8cb573c8721:0xf95c30726121ecfc", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3558010", + "Longitude" : "4.6214256" + } + }, + "Published" : "2016-02-20T10:55:26Z", + "Title" : "Binnenweg 186B, 2101 JS Heemstede", + "Updated" : "2016-02-20T10:55:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8963500, 52.3739250 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8214784252301553183", + "Location" : { + "Address" : "Warmoesstraat 129, 1012 JA Amsterdam, Netherlands", + "Business Name" : "Belushi's", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3739250", + "Longitude" : "4.8963500" + } + }, + "Published" : "2016-02-07T12:53:21Z", + "Title" : "Belushi's Amsterdam", + "Updated" : "2016-02-07T12:53:21Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8856014, 52.3802926 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Lindengracht+69,+1015+KD+Amsterdam&ftid=0x47c609cfcb0a33dd:0x8d15490709034d44", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3802926", + "Longitude" : "4.8856014" + } + }, + "Published" : "2016-01-13T17:30:06Z", + "Title" : "Lindengracht 69, 1015 KD Amsterdam", + "Updated" : "2016-01-13T17:30:06Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9068972, 52.3611556 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9585042363666602120", + "Location" : { + "Address" : "Sarphatistraat 61, 1018 EX Amsterdam, Netherlands", + "Business Name" : "Bakhuys Amsterdam", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3611556", + "Longitude" : "4.9068972" + } + }, + "Published" : "2016-01-10T08:48:03Z", + "Title" : "Bakhuys Amsterdam", + "Updated" : "2016-01-10T08:48:03Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.6886048, 52.3021722 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Hoofdweg+774,+2132+BW+Hoofddorp&ftid=0x47c5e7af0ef12bf9:0x629fd0a768347410", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3021722", + "Longitude" : "4.6886048" + } + }, + "Published" : "2015-12-17T15:56:56Z", + "Title" : "Hoofdweg 774, 2132 BW Hoofddorp", + "Updated" : "2015-12-17T15:56:56Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8936525, 52.3796186 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16863273995727585180", + "Location" : { + "Address" : "Haarlemmerstraat 18, 1013 ER Amsterdam, Netherlands", + "Business Name" : "Tabakshuis", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3796186", + "Longitude" : "4.8936525" + } + }, + "Published" : "2015-12-01T07:40:38Z", + "Title" : "Tabakshuis", + "Updated" : "2015-12-01T07:40:38Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9306178, 52.3576218 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16984381024044606210", + "Location" : { + "Address" : "Atlantisplein 1, 1093 NE Amsterdam, Netherlands", + "Business Name" : "Q-Factory", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3576218", + "Longitude" : "4.9306178" + } + }, + "Published" : "2015-11-09T10:45:58Z", + "Title" : "Q-Factory Amsterdam", + "Updated" : "2015-11-09T10:45:58Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8771844, 52.3723819 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=18068649986698276305", + "Location" : { + "Address" : "Rozengracht 217, 1016 NA Amsterdam, Netherlands", + "Business Name" : "De Vegetarische Traiteur Amsterdam", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3723819", + "Longitude" : "4.8771844" + } + }, + "Published" : "2015-11-04T20:27:07Z", + "Title" : "De Vegetarische Traiteur Amsterdam", + "Updated" : "2015-11-04T20:27:07Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9032100, 52.3525547 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Van+Woustraat+159,+1074+Amsterdam&ftid=0x47c6098f0e9b8555:0x86f2e58dc216b7d0", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3525547", + "Longitude" : "4.9032100" + } + }, + "Published" : "2015-11-03T17:05:59Z", + "Title" : "Van Woustraat 159, 1074 Amsterdam", + "Updated" : "2015-11-03T17:05:59Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8991400, 52.3613500 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15912121057535420873", + "Location" : { + "Address" : "Utrechtsestraat 126, 1017 VT Amsterdam, Netherlands", + "Business Name" : "Golden Temple Vegetarisch Restaurant", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3613500", + "Longitude" : "4.8991400" + } + }, + "Published" : "2015-11-02T21:05:44Z", + "Title" : "Golden Temple", + "Updated" : "2015-11-02T21:05:44Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8701072, 52.3705584 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Bilderdijkstraat+54G,+1053+KV+Amsterdam&ftid=0x47c609df7455e8f3:0xe6ce3ab93601dbdf", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3705584", + "Longitude" : "4.8701072" + } + }, + "Published" : "2015-10-29T16:43:28Z", + "Title" : "Bilderdijkstraat 54G, 1053 KV Amsterdam", + "Updated" : "2015-10-29T16:43:28Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9204799, 52.3831943 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1879140498433046471", + "Location" : { + "Address" : "Gedempt Hamerkanaal 231, 1021 KP Amsterdam, Netherlands", + "Business Name" : "the Kromhouthal", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3831943", + "Longitude" : "4.9204799" + } + }, + "Published" : "2015-10-29T16:42:24Z", + "Title" : "De Kromhouthal", + "Updated" : "2015-10-29T16:42:24Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9627124, 52.5034725 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Gorslaan+18,+1441+RG+Purmerend&ftid=0x47c606cf70b37bb3:0xd257a5002107cb83", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.5034725", + "Longitude" : "4.9627124" + } + }, + "Published" : "2015-10-28T07:29:15Z", + "Title" : "Gorslaan 18, 1441 RG Purmerend", + "Updated" : "2015-10-28T07:29:15Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.0581574, 51.9487146 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Hei+en+Boeicopseweg+147,+4126+RH+Hei-+en+Boeicop&ftid=0x47c662563d183e63:0xabacc5cf7ff3d650", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.9487146", + "Longitude" : "5.0581574" + } + }, + "Published" : "2015-10-13T09:21:33Z", + "Title" : "Hei en Boeicopseweg 147, 4126 RH Hei- en Boeicop", + "Updated" : "2015-10-13T09:21:33Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8686054, 52.3707154 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.370715,4.868605", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3707154", + "Longitude" : "4.8686054" + } + }, + "Published" : "2014-09-28T07:23:47Z", + "Title" : "52.370715,4.868605", + "Updated" : "2015-10-06T05:33:46Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.0521718, 52.1921900 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Loosdrechtse+Plassen&ftid=0x47c66decf6b83603:0x7d106db999482d45", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.1921900", + "Longitude" : "5.0521718" + } + }, + "Published" : "2015-10-03T06:52:17Z", + "Title" : "Loosdrechtse Plassen", + "Updated" : "2015-10-03T06:52:17Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8052110, 52.3919500 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11118418193216552", + "Location" : { + "Address" : "Luvernes 1, 1043 AX Amsterdam, Netherlands", + "Business Name" : "Praxis Bouwmarkt Amsterdam Westpoort", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3919500", + "Longitude" : "4.8052110" + } + }, + "Published" : "2015-09-29T11:07:12Z", + "Title" : "Praxis Bouwmarkt Megastore en Tuincentrum", + "Updated" : "2015-09-29T11:07:12Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8354834, 52.3636753 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4068416529323204663", + "Location" : { + "Address" : "Willem Roelofsstraat 2, 1062 JX Amsterdam, Netherlands", + "Business Name" : "Rataplan", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3636753", + "Longitude" : "4.8354834" + } + }, + "Published" : "2015-09-29T11:05:45Z", + "Title" : "Rataplan", + "Updated" : "2015-09-29T11:05:45Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9047222, 52.3927778 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=13605297397181870298", + "Location" : { + "Address" : "Distelweg 85, 1031 HD Amsterdam, Netherlands", + "Business Name" : "Thrift store De Lokatie", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3927778", + "Longitude" : "4.9047222" + } + }, + "Published" : "2015-09-29T11:04:56Z", + "Title" : "Kringloopbedrijf De Lokatie", + "Updated" : "2015-09-29T11:04:56Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8583650, 52.3839790 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4157942654813375933", + "Location" : { + "Address" : "Den Brielstraat 8, 1055 RV Amsterdam, Netherlands", + "Business Name" : "Bo-rent Amsterdam, Den Brielstraat", + "Geo Coordinates" : { + "Latitude" : "52.3839790", + "Longitude" : "4.8583650" + } + }, + "Published" : "2015-09-29T11:03:44Z", + "Title" : "Bo-rent Amsterdam, Den Brielstraat", + "Updated" : "2015-09-29T11:03:44Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8993252, 52.3614520 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14969745947444313741", + "Location" : { + "Address" : "Utrechtsestraat 137, 1017 VM Amsterdam, Netherlands", + "Business Name" : "Café de Huyschkaemer", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3614520", + "Longitude" : "4.8993252" + } + }, + "Published" : "2015-09-22T15:51:41Z", + "Title" : "Café de Huyschkaemer", + "Updated" : "2015-09-22T15:51:41Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8909816, 52.3504994 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2501064658161197772", + "Location" : { + "Address" : "Cornelis Troostplein 21, 1072 JJ Amsterdam, Netherlands", + "Business Name" : "Brouwerij Troost", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3504994", + "Longitude" : "4.8909816" + } + }, + "Published" : "2015-09-11T08:59:55Z", + "Title" : "Brouwerij Troost", + "Updated" : "2015-09-11T08:59:55Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8856863, 52.3653618 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12251967234916198542", + "Location" : { + "Address" : "Kerkstraat 41, 1017 GB Amsterdam, Netherlands", + "Business Name" : "Cafe De Klos", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3653618", + "Longitude" : "4.8856863" + } + }, + "Published" : "2015-08-27T18:56:35Z", + "Title" : "Café de Klos", + "Updated" : "2015-08-27T18:56:35Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8860939, 52.3803024 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1863378062783191712", + "Location" : { + "Address" : "Lindengracht 59HS, 1015 KC Amsterdam, Netherlands", + "Business Name" : "Piqniq", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3803024", + "Longitude" : "4.8860939" + } + }, + "Published" : "2015-08-27T07:41:52Z", + "Title" : "PIQNIQ", + "Updated" : "2015-08-27T07:41:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8816411, 52.3673457 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Passeerdersgracht+12C,+1016+XH+Amsterdam&ftid=0x47c609c2aa451c51:0x73a694726fba5144", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3673457", + "Longitude" : "4.8816411" + } + }, + "Published" : "2015-08-01T14:59:10Z", + "Title" : "Passeerdersgracht 12C, 1016 XH Amsterdam", + "Updated" : "2015-08-01T14:59:10Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -16.6486570, 13.2725336 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=13.272534,-16.648657", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "13.2725336", + "Longitude" : "-16.6486570" + } + }, + "Published" : "2012-01-21T11:32:03Z", + "Title" : "13.272534,-16.648657", + "Updated" : "2015-07-31T06:43:10Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9106865, 52.3933105 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1335740391026703832", + "Location" : { + "Address" : "Korte Papaverweg 4, 1032 KB Amsterdam, Netherlands", + "Business Name" : "Café de Ceuvel", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3933105", + "Longitude" : "4.9106865" + } + }, + "Published" : "2015-07-24T18:19:01Z", + "Title" : "Café de Ceuvel", + "Updated" : "2015-07-24T18:19:01Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8256803, 52.3456108 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15197741868923584881", + "Location" : { + "Address" : "Louwesweg 1, 1066 EA Amsterdam, Netherlands", + "Business Name" : "RADION Amsterdam", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3456108", + "Longitude" : "4.8256803" + } + }, + "Published" : "2015-07-24T12:13:41Z", + "Title" : "RADION", + "Updated" : "2015-07-24T12:13:41Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9117440, 52.3710740 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11127992518818537372", + "Location" : { + "Address" : "Prins Hendrikkade 194, 1011 TD Amsterdam, Netherlands", + "Business Name" : "Glow miniGolf Amsterdam", + "Geo Coordinates" : { + "Latitude" : "52.3710740", + "Longitude" : "4.9117440" + } + }, + "Published" : "2015-07-24T08:35:44Z", + "Title" : "GlowGolf Amsterdam", + "Updated" : "2015-07-24T08:35:44Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8871282, 52.3838511 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9668812518101970055", + "Location" : { + "Address" : "Tussen de Bogen 53, 1013 JB Amsterdam, Netherlands", + "Business Name" : "Repro's Digitaal Servicecentrum", + "Geo Coordinates" : { + "Latitude" : "52.3838511", + "Longitude" : "4.8871282" + } + }, + "Published" : "2015-07-21T14:10:59Z", + "Title" : "Repros.nl", + "Updated" : "2015-07-21T14:10:59Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8924238, 52.3634157 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8276602591040093835", + "Location" : { + "Address" : "Vijzelstraat 89, 1017 HG Amsterdam, Netherlands", + "Business Name" : "Pesto Presto", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3634157", + "Longitude" : "4.8924238" + } + }, + "Published" : "2015-07-20T09:31:51Z", + "Title" : "Pesto Presto", + "Updated" : "2015-07-20T09:31:51Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8935913, 52.3648436 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Herengracht+504,+1017+CB+Amsterdam&ftid=0x47c609eace4cb6d1:0xd34777c3975b7e18", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3648436", + "Longitude" : "4.8935913" + } + }, + "Published" : "2015-07-20T07:09:31Z", + "Title" : "Herengracht 504, 1017 CB Amsterdam", + "Updated" : "2015-07-20T07:09:31Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9060973, 52.3649447 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10251403893453964775", + "Location" : { + "Address" : "Weesperstraat 61, 1018 VN Amsterdam, Netherlands", + "Business Name" : "WeWork Weesperstraat 61 - Coworking en kantoorruimte", + "Geo Coordinates" : { + "Latitude" : "52.3649447", + "Longitude" : "4.9060973" + } + }, + "Published" : "2015-07-08T15:09:06Z", + "Title" : "WeWork", + "Updated" : "2015-07-08T15:09:06Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8273110, 52.3201200 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3968712536848617493", + "Location" : { + "Address" : "Grote Speelweide 5, 1182 AD Amstelveen, Netherlands", + "Business Name" : "Canoe rental Amsterdam Forest", + "Geo Coordinates" : { + "Latitude" : "52.3201200", + "Longitude" : "4.8273110" + } + }, + "Published" : "2015-07-04T14:32:02Z", + "Title" : "Kanoverhuur Amsterdamse Bos", + "Updated" : "2015-07-04T14:32:02Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8739510, 52.3716020 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9705197502942807470", + "Location" : { + "Address" : "De Clercqstraat 7, 1053 AA Amsterdam, Netherlands", + "Business Name" : "Sterk Amsterdam", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3716020", + "Longitude" : "4.8739510" + } + }, + "Published" : "2015-06-30T19:31:05Z", + "Title" : "Sterk Avondverkoop", + "Updated" : "2015-06-30T19:31:05Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8616600, 52.3558890 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.355889,4.86166", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3558890", + "Longitude" : "4.8616600" + } + }, + "Published" : "2015-06-30T19:01:56Z", + "Title" : "52.355889,4.86166", + "Updated" : "2015-06-30T19:01:56Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.6922772, 52.3061676 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11146445111886224303", + "Location" : { + "Address" : "Kruisweg 1007, 2131 CR Hoofddorp, Netherlands", + "Business Name" : "Hotel Restaurant De Beurs", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3061676", + "Longitude" : "4.6922772" + } + }, + "Published" : "2015-06-15T11:29:24Z", + "Title" : "Hotel Restaurant De Beurs", + "Updated" : "2015-06-15T11:29:24Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3608099, 51.7171488 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Rosmalen&ftid=0x47c6e54acaa20943:0xb7b0a08a7b51dd8b", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.7171488", + "Longitude" : "5.3608099" + } + }, + "Published" : "2015-05-30T10:22:20Z", + "Title" : "Rosmalen", + "Updated" : "2015-05-30T10:22:20Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.2972181, 51.8561502 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Spijkenisse&ftid=0x47c449e862c78f95:0xbd2ac735bbcf13b4", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.8561502", + "Longitude" : "4.2972181" + } + }, + "Published" : "2015-05-28T07:29:58Z", + "Title" : "Spijkenisse", + "Updated" : "2015-05-28T07:29:58Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8896449, 52.3546845 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4395882748825160445", + "Location" : { + "Address" : "Albert Cuypstraat 66-70, 1072 CW Amsterdam, Netherlands", + "Business Name" : "Miss Korea BBQ", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3546845", + "Longitude" : "4.8896449" + } + }, + "Published" : "2015-05-25T11:50:51Z", + "Title" : "Miss Korea BBQ", + "Updated" : "2015-05-25T11:50:51Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8606703, 52.3751005 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Jan+van+Galenstraat+92I,+1056+CD+Amsterdam,+Netherlands&ftid=0x47c5e2711158b1b5:0xa794eefa8edf08d1", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3751005", + "Longitude" : "4.8606703" + } + }, + "Published" : "2015-05-25T11:35:46Z", + "Title" : "Jan van Galenstraat 92I, 1056 CD Amsterdam, Netherlands", + "Updated" : "2015-05-25T11:35:46Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8846378, 52.3244238 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2473862561465803839", + "Location" : { + "Address" : "Nederhoven 9, 1083 AM Amsterdam, Netherlands", + "Business Name" : "Restaurant Khan", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3244238", + "Longitude" : "4.8846378" + } + }, + "Published" : "2015-05-23T11:52:55Z", + "Title" : "Restaurant Khan", + "Updated" : "2015-05-23T11:52:55Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.6653948, 51.9691868 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Wageningen&ftid=0x47c7ab5ede805457:0x5a05400d519f4782", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.9691868", + "Longitude" : "5.6653948" + } + }, + "Published" : "2015-05-17T19:42:23Z", + "Title" : "Wageningen", + "Updated" : "2015-05-17T19:42:23Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 3.6759015, 51.5011231 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=4341+Arnemuiden&ftid=0x47c491de4086de97:0x25dc86dcb77d7abe", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.5011231", + "Longitude" : "3.6759015" + } + }, + "Published" : "2015-05-17T19:41:24Z", + "Title" : "Arnemuiden", + "Updated" : "2015-05-17T19:41:24Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8732126, 52.3749217 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=17098410770216993387", + "Location" : { + "Address" : "Frederik Hendrikstraat 107, 1052 HM Amsterdam, Netherlands", + "Business Name" : "Sevgi Bloemhuis", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3749217", + "Longitude" : "4.8732126" + } + }, + "Published" : "2015-05-17T11:56:06Z", + "Title" : "Sevgi Bloemhuis", + "Updated" : "2015-05-17T11:56:06Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9126213, 52.3496016 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9833443949505010146", + "Location" : { + "Address" : "Weesperzijde 135, 1091 ES Amsterdam, Netherlands", + "Business Name" : "Girassol", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3496016", + "Longitude" : "4.9126213" + } + }, + "Published" : "2015-05-16T05:13:16Z", + "Title" : "Portugees Restaurant Girassol", + "Updated" : "2015-05-16T05:13:16Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9149222, 52.3434486 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8932722307260395788", + "Location" : { + "Address" : "Amstelboulevard 1, 1096 HH Amsterdam, Netherlands", + "Business Name" : "Riva", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3434486", + "Longitude" : "4.9149222" + } + }, + "Published" : "2015-05-15T21:20:28Z", + "Title" : "Cafe Restaurant Riva", + "Updated" : "2015-05-15T21:20:28Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4788461, 51.9170756 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14603516590610322052", + "Location" : { + "Address" : "Westblaak 18, 3012 KL Rotterdam, Netherlands", + "Business Name" : "Kinepolis Cinerama", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "51.9170756", + "Longitude" : "4.4788461" + } + }, + "Published" : "2015-05-15T10:25:22Z", + "Title" : "Wolff Cinerama", + "Updated" : "2015-05-15T10:25:22Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4869932, 51.9048318 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12547746517531617620", + "Location" : { + "Address" : "Otto Reuchlinweg 996, 3072 MD Rotterdam, Netherlands", + "Business Name" : "LantarenVenster", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "51.9048318", + "Longitude" : "4.4869932" + } + }, + "Published" : "2015-05-15T10:24:53Z", + "Title" : "LantarenVenster", + "Updated" : "2015-05-15T10:24:53Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4889787, 51.9201207 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12701986579867880901", + "Location" : { + "Address" : "3011 XP Rotterdam, Netherlands", + "Business Name" : "Rotterdam Blaak", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "51.9201207", + "Longitude" : "4.4889787" + } + }, + "Published" : "2015-05-15T10:23:10Z", + "Title" : "Rotterdam Blaak", + "Updated" : "2015-05-15T10:23:10Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4666374, 51.9054439 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=6388381925539527384", + "Location" : { + "Address" : "Parkhaven 20, 3016 GM Rotterdam, Netherlands", + "Business Name" : "Euromast", + "Geo Coordinates" : { + "Latitude" : "51.9054439", + "Longitude" : "4.4666374" + } + }, + "Published" : "2015-05-15T10:21:37Z", + "Title" : "Euromast", + "Updated" : "2015-05-15T10:21:37Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.5066468, 51.9319102 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8849704420448372471", + "Location" : { + "Address" : "Cederstraat 5, 3061 HV Rotterdam, Netherlands", + "Business Name" : "Stichting Vrienden van de Botanische tuin Kralingen", + "Geo Coordinates" : { + "Latitude" : "51.9319102", + "Longitude" : "4.5066468" + } + }, + "Published" : "2015-05-15T10:21:30Z", + "Title" : "Stichting Vrienden van de Botanische tuin Kralingen", + "Updated" : "2015-05-15T10:21:30Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.5179370, 51.9182550 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7561359965599673963", + "Location" : { + "Address" : "Honingerdijk 86, 3062 NX Rotterdam, Netherlands", + "Business Name" : "Arboretum trompenburg", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "51.9182550", + "Longitude" : "4.5179370" + } + }, + "Published" : "2015-05-15T10:20:11Z", + "Title" : "Trompenburg Tuinen & Arboretum", + "Updated" : "2015-05-15T10:20:11Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4903283, 51.9203300 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=6255698471319348670", + "Location" : { + "Address" : "Overblaak 70, 3011 MH Rotterdam, Netherlands", + "Business Name" : "Cube Houses", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "51.9203300", + "Longitude" : "4.4903283" + } + }, + "Published" : "2015-05-15T10:19:29Z", + "Title" : "Cube house", + "Updated" : "2015-05-15T10:19:29Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4736923, 51.9108180 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4254027179367052418", + "Location" : { + "Address" : "Museumpark, Westzeedijk 341, 3015 AA Rotterdam, Netherlands", + "Business Name" : "Kunsthal Rotterdam", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "51.9108180", + "Longitude" : "4.4736923" + } + }, + "Published" : "2015-05-15T10:11:58Z", + "Title" : "Kunsthal", + "Updated" : "2015-05-15T10:11:58Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4867766, 51.9200582 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4858954207662177048", + "Location" : { + "Address" : "Dominee Jan Scharpstraat 298, 3011 GZ Rotterdam, Netherlands", + "Business Name" : "Markthal", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "51.9200582", + "Longitude" : "4.4867766" + } + }, + "Published" : "2015-05-15T10:09:27Z", + "Title" : "Markthal", + "Updated" : "2015-05-15T10:09:27Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4700263, 51.9242868 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=6712045515611610855", + "Location" : { + "Address" : "Stationsplein 1, 3013 AJ Rotterdam, Netherlands", + "Business Name" : "Rotterdam Centraal", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "51.9242868", + "Longitude" : "4.4700263" + } + }, + "Published" : "2015-05-15T10:09:02Z", + "Title" : "Rotterdam Centraal", + "Updated" : "2015-05-15T10:09:02Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8966932, 52.3622075 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14835434939921393006", + "Location" : { + "Address" : "Amstelveld 12, 1017 JD Amsterdam, Netherlands", + "Business Name" : "Brasserie Nel", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3622075", + "Longitude" : "4.8966932" + } + }, + "Published" : "2015-05-13T17:07:04Z", + "Title" : "Nel", + "Updated" : "2015-05-13T17:07:04Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8908784, 52.3560964 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9834630137278866482", + "Location" : { + "Address" : "Daniël Stalpertstraat 74, 1072 XK Amsterdam, Netherlands", + "Business Name" : "Café Gollem", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3560964", + "Longitude" : "4.8908784" + } + }, + "Published" : "2015-05-02T16:38:53Z", + "Title" : "Gollem Beer Café", + "Updated" : "2015-05-02T16:38:53Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9130078, 52.3775415 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=910837907838871103", + "Location" : { + "Address" : "4, Piet Heinkade, 1019 BR Amsterdam, Netherlands", + "Business Name" : "Delirium Cafe Amsterdam", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3775415", + "Longitude" : "4.9130078" + } + }, + "Published" : "2015-05-02T09:53:35Z", + "Title" : "Delirium Café Amsterdam", + "Updated" : "2015-05-02T09:53:35Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8726901, 52.3741656 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5429973630105113139", + "Location" : { + "Address" : "Frederik Hendrikstraat 111, 1052 HN Amsterdam, Netherlands", + "Business Name" : "De Nieuwe Anita", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3741656", + "Longitude" : "4.8726901" + } + }, + "Published" : "2015-04-25T10:39:20Z", + "Title" : "De Nieuwe Anita", + "Updated" : "2015-04-25T10:39:20Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8727077, 52.3742187 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8410480847198152820", + "Location" : { + "Address" : "Frederik Hendrikstraat 111A, 1052 HN Amsterdam, Netherlands", + "Business Name" : "Robin Food Kollektief", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3742187", + "Longitude" : "4.8727077" + } + }, + "Published" : "2015-04-25T10:36:42Z", + "Title" : "Robin Food Kollektief", + "Updated" : "2015-04-25T10:36:42Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8705365, 52.3691406 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5113117328596622666", + "Location" : { + "Address" : "Kwakersplein 2HS, 1053 TZ Amsterdam, Netherlands", + "Business Name" : "Du Cap", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3691406", + "Longitude" : "4.8705365" + } + }, + "Published" : "2015-04-25T06:34:31Z", + "Title" : "DU CAP", + "Updated" : "2015-04-25T06:34:31Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8936000, 52.3659167 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2130254568417481713", + "Location" : { + "Address" : "Reguliersdwarsstraat 74, 1017 BN Amsterdam, Netherlands", + "Business Name" : "Door 74", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3659167", + "Longitude" : "4.8936000" + } + }, + "Published" : "2015-04-19T12:51:59Z", + "Title" : "door 74", + "Updated" : "2015-04-19T12:51:59Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8326575, 52.3503644 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Ottho+Heldringstraat+5,+1066+AZ+Amsterdam&ftid=0x47c5e220d7a888ff:0xe8e3f609df4a35a8", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3503644", + "Longitude" : "4.8326575" + } + }, + "Published" : "2015-04-19T12:44:00Z", + "Title" : "Ottho Heldringstraat 5, 1066 AZ Amsterdam", + "Updated" : "2015-04-19T12:44:00Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8670509, 52.3760930 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=13395304059041129137", + "Location" : { + "Address" : "Jan van Galenstraat 8, 1051 KM Amsterdam, Netherlands", + "Business Name" : "Graceland BAR-B-Q", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3760930", + "Longitude" : "4.8670509" + } + }, + "Published" : "2015-04-01T15:34:36Z", + "Title" : "Graceland BAR-B-Q", + "Updated" : "2015-04-01T15:34:36Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8834526, 52.3728037 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=6067496013160687158", + "Location" : { + "Address" : "Prinsengracht 323, 1016 GZ Amsterdam, Netherlands", + "Business Name" : "Pulitzer Amsterdam", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3728037", + "Longitude" : "4.8834526" + } + }, + "Published" : "2015-03-22T19:22:50Z", + "Title" : "Hotel Pulitzer, Amsterdam", + "Updated" : "2015-03-22T19:22:50Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8720254, 52.3546177 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7587129919139503091", + "Location" : { + "Address" : "Johannes Verhulststraat 104, 1071 NL Amsterdam, Netherlands", + "Business Name" : "Le Pain Quotidien", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3546177", + "Longitude" : "4.8720254" + } + }, + "Published" : "2015-03-22T10:40:14Z", + "Title" : "Le Pain Quotidien - Oud Zuid", + "Updated" : "2015-03-22T10:40:14Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8565200, 52.3549500 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=13936185983771983061", + "Location" : { + "Address" : "Vondelpark 7, 1075 VR Amsterdam, Netherlands", + "Business Name" : "De Vondeltuin", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3549500", + "Longitude" : "4.8565200" + } + }, + "Published" : "2015-03-21T14:55:32Z", + "Title" : "Vondeltuin", + "Updated" : "2015-03-21T14:55:32Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8849792, 52.3838122 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2411333542797304202", + "Location" : { + "Address" : "Haarlemmerdijk 147, 1013 KH Amsterdam, Netherlands", + "Business Name" : "Weldraad & Hooks and Yarn", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3838122", + "Longitude" : "4.8849792" + } + }, + "Published" : "2015-03-21T09:16:37Z", + "Title" : "Weldraad", + "Updated" : "2015-03-21T09:16:37Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8997993, 52.3570410 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=17928391344072125395", + "Location" : { + "Address" : "Van Woustraat 15, 1074 AA Amsterdam, Netherlands", + "Business Name" : "Geflipt", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3570410", + "Longitude" : "4.8997993" + } + }, + "Published" : "2015-03-11T17:09:26Z", + "Title" : "Geflipt Burgers", + "Updated" : "2015-03-11T17:09:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9435588, 52.3213889 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Barbusselaan+25,+1102+Amsterdam+Zuid-Oost&ftid=0x47c60b94daef286d:0x85b5fac100c757b7", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3213889", + "Longitude" : "4.9435588" + } + }, + "Published" : "2015-03-05T08:49:08Z", + "Title" : "Barbusselaan 25, 1102 Amsterdam Zuid-Oost", + "Updated" : "2015-03-05T08:49:08Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8710696, 52.3779746 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Wichersstraat,+1051+Amsterdam&ftid=0x47c609d8034eba13:0x2cf871376a5b6a32", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3779746", + "Longitude" : "4.8710696" + } + }, + "Published" : "2015-03-04T19:39:03Z", + "Title" : "Wichersstraat, 1051 Amsterdam", + "Updated" : "2015-03-04T19:39:03Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8823170, 52.3704414 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=17379177689612021597", + "Location" : { + "Address" : "Prinsengracht 290-HS, 1016 HJ Amsterdam, Netherlands", + "Business Name" : "Xantippe Unlimited", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3704414", + "Longitude" : "4.8823170" + } + }, + "Published" : "2015-03-03T16:54:59Z", + "Title" : "Xantippe Unlimited", + "Updated" : "2015-03-03T16:54:59Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8595250, 52.3775220 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11455818520912743607", + "Location" : { + "Address" : "Gerard Callenburgstraat 1, 1055 TV Amsterdam, Netherlands", + "Business Name" : "Restaurant Van de Buurt", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3775220", + "Longitude" : "4.8595250" + } + }, + "Published" : "2015-02-26T17:47:52Z", + "Title" : "Restaurant vd Buurt", + "Updated" : "2015-02-26T17:47:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8807961, 52.3699036 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=760355527278238574", + "Location" : { + "Address" : "Elandsgracht 70, 1016 TX Amsterdam, Netherlands", + "Business Name" : "Koentact", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3699036", + "Longitude" : "4.8807961" + } + }, + "Published" : "2015-02-14T11:22:22Z", + "Title" : "Koentact", + "Updated" : "2015-02-14T11:22:22Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.3035658, 47.5131385 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Dorf+28,+6352+Ellmau,+Austria&ftid=0x4776496bee4c1447:0x42fbf9ae312b12fd", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "47.5131385", + "Longitude" : "12.3035658" + } + }, + "Published" : "2015-02-08T20:25:21Z", + "Title" : "Dorf 28, 6352 Ellmau, Austria", + "Updated" : "2015-02-08T20:25:21Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.3058333, 47.5138889 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1845192316685667120", + "Location" : { + "Address" : "Dorf 44, 6352 Ellmau, Austria", + "Business Name" : "ALP King Hostel", + "Country Code" : "AT", + "Geo Coordinates" : { + "Latitude" : "47.5138889", + "Longitude" : "12.3058333" + } + }, + "Published" : "2015-02-08T18:50:37Z", + "Title" : "ALP King Hostel", + "Updated" : "2015-02-08T18:50:37Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8836337, 52.3689852 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1284723944745844909", + "Location" : { + "Address" : "Runstraat 12-14, 1016 GK Amsterdam, Netherlands", + "Business Name" : "Café de Doffer", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3689852", + "Longitude" : "4.8836337" + } + }, + "Published" : "2015-02-05T17:37:15Z", + "Title" : "Café De Doffer", + "Updated" : "2015-02-05T17:37:15Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.7041990, 52.2929877 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Capellalaan+65,+Beukenhorst+Oost,+2132+JL+Hoofddorp&ftid=0x47c5e70c6b62ab5f:0x8bb491a0c0d24b51", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.2929877", + "Longitude" : "4.7041990" + } + }, + "Published" : "2015-02-04T08:44:24Z", + "Title" : "Capellalaan 65, 2132 JL Hoofddorp", + "Updated" : "2015-02-04T08:44:24Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8912317, 52.3514065 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Rustenburgerstraat+391,+1072+Amsterdam&ftid=0x47c609f35db1690f:0xa5a88e01a4d63ff3", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3514065", + "Longitude" : "4.8912317" + } + }, + "Published" : "2015-01-31T15:46:05Z", + "Title" : "Rustenburgerstraat 391, 1072 Amsterdam", + "Updated" : "2015-01-31T15:46:05Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8671983, 52.3635657 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=6548101870624861687", + "Location" : { + "Address" : "Arie Biemondstraat 111, 1054 PD Amsterdam, Netherlands", + "Business Name" : "LAB111", + "Geo Coordinates" : { + "Latitude" : "52.3635657", + "Longitude" : "4.8671983" + } + }, + "Published" : "2015-01-27T18:14:01Z", + "Title" : "LAB111 Film & Eten", + "Updated" : "2015-01-27T18:14:01Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8720822, 52.3668412 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=148779046616016050", + "Location" : { + "Address" : "Bilderdijkstraat 178-180, 1053 LD Amsterdam, Netherlands", + "Business Name" : "Pet shop Salty", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3668412", + "Longitude" : "4.8720822" + } + }, + "Published" : "2015-01-19T10:03:36Z", + "Title" : "Dierenspeciaalzaak Salty", + "Updated" : "2015-01-19T10:03:36Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8856476, 52.3834314 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5944735942970509263", + "Location" : { + "Address" : "Haarlemmerdijk 125, 1013 KE Amsterdam, Netherlands", + "Business Name" : "Bello Dierenspeciaalzaak", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3834314", + "Longitude" : "4.8856476" + } + }, + "Published" : "2015-01-19T10:02:54Z", + "Title" : "Bello Dierenspeciaalzaak", + "Updated" : "2015-01-19T10:02:54Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.7846041, 52.3629369 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4158308806754272304", + "Location" : { + "Address" : "Ookmeerweg 271, 1067 SP Amsterdam, Netherlands", + "Business Name" : "Dagopvang voor honden | DOA", + "Geo Coordinates" : { + "Latitude" : "52.3629369", + "Longitude" : "4.7846041" + } + }, + "Published" : "2015-01-19T09:54:56Z", + "Title" : "Dierenopvangcentrum Amsterdam", + "Updated" : "2015-01-19T09:54:56Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8652880, 52.3837766 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1734944370213952189", + "Location" : { + "Address" : "Van Slingelandtstraat 43, 1051 CG Amsterdam, Netherlands", + "Business Name" : "Warmteservice Amsterdam West", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3837766", + "Longitude" : "4.8652880" + } + }, + "Published" : "2015-01-14T11:54:44Z", + "Title" : "Warmteservice Amsterdam West", + "Updated" : "2015-01-14T11:54:44Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8915908, 52.3803029 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=17264462378760761726", + "Location" : { + "Address" : "Haarlemmerstraat 77, 1013 EL Amsterdam, Netherlands", + "Business Name" : "Harlem Soul Food", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3803029", + "Longitude" : "4.8915908" + } + }, + "Published" : "2015-01-12T10:25:26Z", + "Title" : "Eetcafe \"Harlem Soul Food\"", + "Updated" : "2015-01-12T10:25:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9021570, 52.3690209 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16558465516086920181", + "Location" : { + "Address" : "Jodenbreestraat 94, 1011 NS Amsterdam, Netherlands", + "Business Name" : "Soup en Zo - Jodenbree", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3690209", + "Longitude" : "4.9021570" + } + }, + "Published" : "2015-01-12T10:20:59Z", + "Title" : "Soup En Zo", + "Updated" : "2015-01-12T10:20:59Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8855880, 52.3778860 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5423611131637968168", + "Location" : { + "Address" : "Prinsengracht 60-62, 1015 DX Amsterdam, Netherlands", + "Business Name" : "De Bolhoed", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3778860", + "Longitude" : "4.8855880" + } + }, + "Published" : "2015-01-12T10:20:09Z", + "Title" : "De Bolhoed", + "Updated" : "2015-01-12T10:20:09Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9033968, 52.3825268 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2706982636370159297", + "Location" : { + "Address" : "IJpromenade 2 Tolhuisweg 5 Tolhuisweg 1, Buiksloterweg 5, 1031 KT Amsterdam, Netherlands", + "Business Name" : "Tolhuistuin", + "Geo Coordinates" : { + "Latitude" : "52.3825268", + "Longitude" : "4.9033968" + } + }, + "Published" : "2015-01-08T17:27:01Z", + "Title" : "Tolhuistuin", + "Updated" : "2015-01-08T17:27:01Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8970854, 52.3739767 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2275949820138167130", + "Location" : { + "Address" : "Sint Annendwarsstraat 6, 1012 HC Amsterdam, Netherlands", + "Business Name" : "TonTon Club Centrum", + "Geo Coordinates" : { + "Latitude" : "52.3739767", + "Longitude" : "4.8970854" + } + }, + "Published" : "2015-01-06T11:46:30Z", + "Title" : "de TonTon club", + "Updated" : "2015-01-06T11:46:30Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.0041997, 52.3415166 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Overdiemerweg 28, 1111 PP Diemen&ftid=0x47c60e9dee72ac2d:0xac584c966246a36c", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3415166", + "Longitude" : "5.0041997" + } + }, + "Published" : "2014-12-23T11:03:54Z", + "Title" : "Overdiemerweg 28, 1111 PP Diemen", + "Updated" : "2014-12-23T11:03:54Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9613080, 52.3547244 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1556724344557910949", + "Location" : { + "Address" : "Science Park 610, 1098 XH Amsterdam, Netherlands", + "Business Name" : "Equinix", + "Geo Coordinates" : { + "Latitude" : "52.3547244", + "Longitude" : "4.9613080" + } + }, + "Published" : "2014-12-16T12:35:07Z", + "Title" : "Equinix", + "Updated" : "2014-12-16T12:35:07Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8974242, 52.3700725 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12722862647626102676", + "Location" : { + "Address" : "Kloveniersburgwal 58, 1012 CX Amsterdam, Netherlands", + "Business Name" : "Used English Books", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3700725", + "Longitude" : "4.8974242" + } + }, + "Published" : "2014-12-13T12:14:34Z", + "Title" : "The Book Exchange", + "Updated" : "2014-12-13T12:14:34Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8541899, 52.3806978 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15498123880952537589", + "Location" : { + "Address" : "Bos en Lommerweg 152, 1055 EE Amsterdam, Netherlands", + "Business Name" : "Protectsun Zonwering en Raambekleding Amsterdam", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3806978", + "Longitude" : "4.8541899" + } + }, + "Published" : "2014-12-09T12:02:38Z", + "Title" : "Protectsun", + "Updated" : "2014-12-09T12:02:38Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -72.5545223, 44.2350025 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=1873 US-302, Berlin, VT 05602, USA&ftid=0x4cb507e866d038ab:0x146d6ccbed6daca0", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "44.2350025", + "Longitude" : "-72.5545223" + } + }, + "Published" : "2014-12-04T03:24:02Z", + "Title" : "1873 U.S. 302, Berlin, VT 05602, USA", + "Updated" : "2014-12-04T03:24:02Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1962003, 19.4306704 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3714334700247856647", + "Location" : { + "Address" : "Calle Julio Verne 93, Polanco, Polanco IV Secc, Miguel Hidalgo, 11560 Ciudad de México, CDMX, Mexico", + "Business Name" : "Jules Basement", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4306704", + "Longitude" : "-99.1962003" + } + }, + "Published" : "2014-11-21T00:20:01Z", + "Title" : "Jules Basement", + "Updated" : "2014-11-21T00:20:01Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1642139, 19.4264082 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Calle Hamburgo 108, Juárez, 06600 Ciudad de México, D.F., Mexico&ftid=0x85d1ff3425ea6579:0xa00d5121334ae960", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.4264082", + "Longitude" : "-99.1642139" + } + }, + "Published" : "2014-11-19T18:19:18Z", + "Title" : "Calle Hamburgo 108, Juárez, 06600 Ciudad de México, D.F., Mexico", + "Updated" : "2014-11-19T18:19:18Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1587993, 19.4290077 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=19.429007726781137,-99.15879931300879", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.4290077", + "Longitude" : "-99.1587993" + } + }, + "Published" : "2014-11-19T18:11:44Z", + "Title" : "19.429007726781137,-99.15879931300879", + "Updated" : "2014-11-19T18:11:44Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1606589, 19.4223767 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Orizaba 36, Roma Norte, 06700 Ciudad de México, D.F.&ftid=0x85d1ff30e88a8cb7:0x49593298e0798c9", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.4223767", + "Longitude" : "-99.1606589" + } + }, + "Published" : "2014-11-19T02:32:03Z", + "Title" : "Orizaba 36, Ciudad de México, D.F.", + "Updated" : "2014-11-19T02:32:03Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -97.0706909, 15.8631447 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14799854604888800365", + "Location" : { + "Address" : "Primera Nte., Centro, 71980 Puerto Escondido, Oax., Mexico", + "Business Name" : "HSBC", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "15.8631447", + "Longitude" : "-97.0706909" + } + }, + "Published" : "2014-11-18T14:25:42Z", + "Title" : "HSBC Puerto Escondido 840", + "Updated" : "2014-11-18T14:25:42Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -97.0452867, 15.8509228 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Temascalli, Lázaro Cárdenas, 70934 Brisas de Zicatela, OAX, Mexico&ftid=0x85b8f9d43c0c3111:0xd74e4365bf4e5c49", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "15.8509228", + "Longitude" : "-97.0452867" + } + }, + "Published" : "2014-11-17T22:49:42Z", + "Title" : "Temascalli, Lázaro Cárdenas, Brisas de Zicatela, OAX, Mexico", + "Updated" : "2014-11-17T22:49:42Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -97.0807632, 15.8709078 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=15.870907805443442,-97.08076324313879", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "15.8709078", + "Longitude" : "-97.0807632" + } + }, + "Published" : "2014-11-17T17:54:04Z", + "Title" : "15.870907805443442,-97.08076324313879", + "Updated" : "2014-11-17T17:54:04Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -97.0635066, 15.8610292 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=15.861029203782124,-97.06350658088923", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "15.8610292", + "Longitude" : "-97.0635066" + } + }, + "Published" : "2014-11-16T02:31:56Z", + "Title" : "15.861029203782124,-97.06350658088923", + "Updated" : "2014-11-16T02:31:56Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -97.0804679, 15.8704857 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Zicatela, Los Mangos, 71984 Puerto Escondido, OAX, Mexico&ftid=0x85b8f7ef3d5e0c53:0xd71cb3faa5e89f17", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "15.8704857", + "Longitude" : "-97.0804679" + } + }, + "Published" : "2014-11-16T01:07:17Z", + "Title" : "Zicatela, Los Mangos, Puerto Escondido, OAX, Mexico", + "Updated" : "2014-11-16T01:07:17Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -97.0622805, 15.8589510 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Bahia Principal, Mexico&ftid=0x85b8f788e9021e33:0xcd77da6c2dcafcf3", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "15.8589510", + "Longitude" : "-97.0622805" + } + }, + "Published" : "2014-11-16T01:05:00Z", + "Title" : "Bahia Principal", + "Updated" : "2014-11-16T01:05:00Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -97.0799723, 15.8617081 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=15.861708088929177,-97.07997232675552", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "15.8617081", + "Longitude" : "-97.0799723" + } + }, + "Published" : "2014-11-15T23:00:37Z", + "Title" : "15.861708088929177,-97.07997232675552", + "Updated" : "2014-11-15T23:00:37Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -97.0613141, 15.8614909 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1609591007744785995", + "Location" : { + "Address" : "Av. Alfonso Pérez Gasga 609B, Bahia Principal, 71984 Puerto Escondido, Oax., Mexico", + "Business Name" : "BBVA", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "15.8614909", + "Longitude" : "-97.0613141" + } + }, + "Published" : "2014-11-15T22:53:53Z", + "Title" : "BBVA BANCOMER PUERTO ESCONDIDO", + "Updated" : "2014-11-15T22:53:53Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -97.0793672, 15.8637577 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9635524729493297696", + "Location" : { + "Address" : "Cuilapam, Bacocho, 71983 Puerto Escondido, Oax., Mexico", + "Business Name" : "Suites La Hacienda", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "15.8637577", + "Longitude" : "-97.0793672" + } + }, + "Published" : "2014-11-15T22:52:17Z", + "Title" : "Suite La Hacienda", + "Updated" : "2014-11-15T22:52:17Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.0822415, 19.4352644 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Terminal 1, Mexico City International Airport, Sonora, Aeropuerto Int de La Cd de México, 15620 Ciudad de México, D.F., Mexico&ftid=0x85d1fc0a6b509847:0x984b414774d46f0", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.4352644", + "Longitude" : "-99.0822415" + } + }, + "Published" : "2014-11-15T19:27:00Z", + "Title" : "Terminal 1, Sonora, Aeropuerto Int de La Cd de México, Ciudad de México, D.F., Mexico", + "Updated" : "2014-11-15T19:27:00Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1654199, 19.4141326 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1401286537206046093", + "Location" : { + "Address" : "Av. Insurgentes Sur 300, C. U. Benito Juárez, Cuauhtémoc, 06700 Ciudad de México, CDMX, Mexico", + "Business Name" : "Taperia Breton", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4141326", + "Longitude" : "-99.1654199" + } + }, + "Published" : "2014-11-13T14:32:11Z", + "Title" : "TAPERÍA BRETON", + "Updated" : "2014-11-13T14:32:11Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1588019, 19.4257864 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16020527018434029100", + "Location" : { + "Address" : "Calle Marsella 45, Juárez, Cuauhtémoc, 06600 Ciudad de México, CDMX, Mexico", + "Business Name" : "Cassola", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4257864", + "Longitude" : "-99.1588019" + } + }, + "Published" : "2014-11-13T00:07:59Z", + "Title" : "ORFEO CATALA", + "Updated" : "2014-11-13T00:07:59Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1710211, 19.4196249 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Cozumel 37, Roma Norte, 06700 Del. Cuahutemoc, D.F.&ftid=0x85d1ff4629b670df:0x50988ea053abfd2e", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.4196249", + "Longitude" : "-99.1710211" + } + }, + "Published" : "2014-11-12T00:14:52Z", + "Title" : "Cozumel 37, Roma Norte, 06700 Del. Cuahutemoc, D.F.", + "Updated" : "2014-11-12T00:14:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1318810, 19.4346038 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10128805338444740272", + "Location" : { + "Address" : "Seminario 8, Centro Histórico de la Cdad. de México, Centro, Cuauhtémoc, 06060 Ciudad de México, CDMX, Mexico", + "Business Name" : "Templo Mayor Museum", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4346038", + "Longitude" : "-99.1318810" + } + }, + "Published" : "2014-11-09T20:21:18Z", + "Title" : "Museo del Templo Mayor", + "Updated" : "2014-11-09T20:21:18Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -97.0788434, 15.8597820 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5968298355657044193", + "Location" : { + "Address" : "Focas, Carrizalillo, 71983 Puerto Escondido, Oax., Mexico", + "Business Name" : "Playa Carrizalillo", + "Geo Coordinates" : { + "Latitude" : "15.8597820", + "Longitude" : "-97.0788434" + } + }, + "Published" : "2014-11-09T05:02:33Z", + "Title" : "Playa Carrizalillo", + "Updated" : "2014-11-09T05:02:33Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -97.0558940, 15.8544158 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Playa Zicatela, Brisas de Zicatela, OAX, Mexico&ftid=0x85b8f829e3df4121:0x97db4408089641c5", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "15.8544158", + "Longitude" : "-97.0558940" + } + }, + "Published" : "2014-11-09T05:02:26Z", + "Title" : "Playa Zicatela, Brisas de Zicatela, OAX, Mexico", + "Updated" : "2014-11-09T05:02:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1618768, 19.3992347 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=19.39923473149272,-99.16187681257725", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.3992347", + "Longitude" : "-99.1618768" + } + }, + "Published" : "2014-11-08T20:28:25Z", + "Title" : "19.39923473149272,-99.16187681257725", + "Updated" : "2014-11-08T20:28:25Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1612818, 19.4285654 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14558371944110918417", + "Location" : { + "Address" : "Av. Paseo de la Reforma 222, Juárez, Cuauhtémoc, 06600 Ciudad de México, CDMX, Mexico", + "Business Name" : "Soley Collection", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4285654", + "Longitude" : "-99.1612818" + } + }, + "Published" : "2014-11-06T23:47:26Z", + "Title" : "SOLEY Reforma 222", + "Updated" : "2014-11-06T23:47:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1496159, 19.4340110 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=709996685648008307", + "Location" : { + "Address" : "Iturbide 21, Colonia Centro, Centro, Cuauhtémoc, 06440 Centro, CDMX, Mexico", + "Business Name" : "Cinemex Palacio Chino", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4340110", + "Longitude" : "-99.1496159" + } + }, + "Published" : "2014-11-06T23:46:03Z", + "Title" : "Cinemex", + "Updated" : "2014-11-06T23:46:03Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1678812, 19.4106452 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12023966136132315878", + "Location" : { + "Address" : "Amsterdam 241, Hipódromo Condesa, Cuauhtémoc, 06100 Ciudad de México, CDMX, Mexico", + "Business Name" : "Specia", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4106452", + "Longitude" : "-99.1678812" + } + }, + "Published" : "2014-11-06T19:03:37Z", + "Title" : "Specia", + "Updated" : "2014-11-06T19:03:37Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.2282150, 19.5246450 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9873306788692644698", + "Location" : { + "Address" : "Perif. Blvd. Manuel Ávila Camacho No. 1007, Santa Mónica, 54050 Tlalnepantla de Baz, Méx., Mexico", + "Business Name" : "Cinemex Mundo E Platino", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.5246450", + "Longitude" : "-99.2282150" + } + }, + "Published" : "2014-11-06T16:59:01Z", + "Title" : "Cinemex Mundo E", + "Updated" : "2014-11-06T16:59:01Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1713889, 19.4258333 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11745157178478644362", + "Location" : { + "Address" : "Av. Paseo de la Reforma 423, Cuauhtémoc, 06500 Ciudad de México, CDMX, Mexico", + "Business Name" : "Cinepolis", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4258333", + "Longitude" : "-99.1713889" + } + }, + "Published" : "2014-11-06T16:45:52Z", + "Title" : "Cinepolis Diana", + "Updated" : "2014-11-06T16:45:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1693649, 19.4274262 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=13000873937693557070", + "Location" : { + "Address" : "Río Guadalquivir 104, Cuauhtémoc, 06500 Ciudad de México, CDMX, Mexico", + "Business Name" : "Cinemex Reforma Casa De Arte", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4274262", + "Longitude" : "-99.1693649" + } + }, + "Published" : "2014-11-06T16:45:26Z", + "Title" : "Cinemex", + "Updated" : "2014-11-06T16:45:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1699739, 19.4083728 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2914012118924058401", + "Location" : { + "Address" : "Chilpancingo 35, Hipódromo Condesa, Cuauhtémoc, 06140 Condesa, CDMX, Mexico", + "Business Name" : "Las Soupremes", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4083728", + "Longitude" : "-99.1699739" + } + }, + "Published" : "2014-11-05T20:15:16Z", + "Title" : "Las Soupremes", + "Updated" : "2014-11-05T20:15:16Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1728765, 19.4092506 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7332443411126793459", + "Location" : { + "Address" : "Calle Ometusco 1, Hipódromo Condesa, Cuauhtémoc, 06100 Ciudad de México, CDMX, Mexico", + "Business Name" : "Lampuga Bistro", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4092506", + "Longitude" : "-99.1728765" + } + }, + "Published" : "2014-11-05T20:15:13Z", + "Title" : "LAMPUGA CONDESA", + "Updated" : "2014-11-05T20:15:13Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1390961, 19.4326430 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4756925304378404191", + "Location" : { + "Address" : "16 de Septiembre 26, Centro Histórico de la Cdad. de México, Centro, Cuauhtémoc, 06000 Ciudad de México, CDMX, Mexico", + "Business Name" : "Casa Churra", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4326430", + "Longitude" : "-99.1390961" + } + }, + "Published" : "2014-11-05T03:00:21Z", + "Title" : "CASA CHURRA", + "Updated" : "2014-11-05T03:00:21Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1330071, 19.4352452 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=721754530371336538", + "Location" : { + "Address" : "República de Guatemala 18, Centro Histórico de la Cdad. de México, Centro, Cuauhtémoc, 06000 Ciudad de México, CDMX, Mexico", + "Business Name" : "Centro Cultural de España", + "Geo Coordinates" : { + "Latitude" : "19.4352452", + "Longitude" : "-99.1330071" + } + }, + "Published" : "2014-11-05T01:02:06Z", + "Title" : "Centro Cultura de España", + "Updated" : "2014-11-05T01:02:06Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1687781, 19.4062188 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11434518493224735126", + "Location" : { + "Address" : "Av. Insurgentes Sur 453, Colonia Condesa, Cuauhtémoc, 06700 Ciudad de México, CDMX, Mexico", + "Business Name" : "Redlemon Condesa", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4062188", + "Longitude" : "-99.1687781" + } + }, + "Published" : "2014-11-03T18:25:05Z", + "Title" : "Redlemon Puerta Condesa", + "Updated" : "2014-11-03T18:25:05Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1721329, 19.4190537 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14865606988119032709", + "Location" : { + "Address" : "Av Sonora 46BIS, Roma Nte., Cuauhtémoc, 06700 Ciudad de México, CDMX, Mexico", + "Business Name" : "Office Depot Express Sonora", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4190537", + "Longitude" : "-99.1721329" + } + }, + "Published" : "2014-11-03T16:41:07Z", + "Title" : "Office Depot", + "Updated" : "2014-11-03T16:41:07Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1649757, 19.4198930 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12554530648303502808", + "Location" : { + "Address" : "Monterrey No 75 y 81, 06700 Cuauhtémoc, CDMX, Mexico", + "Business Name" : "OfficeMax - Roma", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4198930", + "Longitude" : "-99.1649757" + } + }, + "Published" : "2014-11-03T16:40:38Z", + "Title" : "OfficeMax - Roma", + "Updated" : "2014-11-03T16:40:38Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1664380, 19.4114174 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8731245932672793012", + "Location" : { + "Address" : "Calle Manzanillo 15 PB, Roma Nte., Cuauhtémoc, 06700 Ciudad de México, CDMX, Mexico", + "Business Name" : "Office Depot Express Roma", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4114174", + "Longitude" : "-99.1664380" + } + }, + "Published" : "2014-11-03T16:40:26Z", + "Title" : "Office Depot", + "Updated" : "2014-11-03T16:40:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1808809, 19.4304040 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11575086354809475641", + "Location" : { + "Address" : "Rubén Darío 4, Rincón del Bosque, Bosque de Chapultepec I Secc, Miguel Hidalgo, 11580 Ciudad de México, CDMX, Mexico", + "Business Name" : "Farmacias del Ahorro Ruben Dario", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4304040", + "Longitude" : "-99.1808809" + } + }, + "Published" : "2014-11-01T13:42:04Z", + "Title" : "Farmacias del Ahorro", + "Updated" : "2014-11-01T13:42:04Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1894942, 19.4337729 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=17857406359733267991", + "Location" : { + "Address" : "Lamartine 252, Polanco, Polanco V Secc, Miguel Hidalgo, 11550 Ciudad de México, CDMX, Mexico", + "Business Name" : "Farmacias del Ahorro Lamartine", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4337729", + "Longitude" : "-99.1894942" + } + }, + "Published" : "2014-11-01T13:40:31Z", + "Title" : "Farmacias del Ahorro", + "Updated" : "2014-11-01T13:40:31Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1977272, 19.4270087 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1080979069812034599", + "Location" : { + "Address" : "calle, Polanco, Miguel Hidalgo, 53910 Naucalpan de Juárez, CDMX, Mexico", + "Business Name" : "Work & Coffee place", + "Geo Coordinates" : { + "Latitude" : "19.4270087", + "Longitude" : "-99.1977272" + } + }, + "Published" : "2014-10-31T16:46:18Z", + "Title" : "Work & Coffee place", + "Updated" : "2014-10-31T16:46:18Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1963100, 19.4306038 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9193157164992020797", + "Location" : { + "Address" : "Calle Julio Verne 93, Polanco, Polanco IV Secc, Miguel Hidalgo, 11550 Ciudad de México, CDMX, Mexico", + "Business Name" : "Magic Clean", + "Geo Coordinates" : { + "Latitude" : "19.4306038", + "Longitude" : "-99.1963100" + } + }, + "Published" : "2014-10-31T16:44:11Z", + "Title" : "Magic Clean", + "Updated" : "2014-10-31T16:44:11Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1953127, 19.4319814 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=6097812679156711534", + "Location" : { + "Address" : "Tennyson No. 120, Esq, Av. Pdte. Masaryk, Polanco, Reforma, Miguel Hidalgo, 11560 Ciudad de México, Mexico", + "Business Name" : "Telcel Masaryk", + "Geo Coordinates" : { + "Latitude" : "19.4319814", + "Longitude" : "-99.1953127" + } + }, + "Published" : "2014-10-31T15:51:11Z", + "Title" : "Telcel - CAC Masaryk", + "Updated" : "2014-10-31T15:51:11Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1858169, 19.4335452 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5731862148098002779", + "Location" : { + "Address" : "Av. Horacio 253, Polanco, Polanco V Secc, Miguel Hidalgo, 11550 Ciudad de México, CDMX, Mexico", + "Business Name" : "Nextel - Authorized Dealer", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4335452", + "Longitude" : "-99.1858169" + } + }, + "Published" : "2014-10-31T15:50:48Z", + "Title" : "Nextel - Distribuidor Autorizado", + "Updated" : "2014-10-31T15:50:48Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1932178, 19.4297795 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10497774540464342879", + "Location" : { + "Address" : "Av. Isaac Newton 7, Polanco, Polanco IV Secc, Miguel Hidalgo, 11550 Ciudad de México, CDMX, Mexico", + "Business Name" : "Dry Clean NY", + "Geo Coordinates" : { + "Latitude" : "19.4297795", + "Longitude" : "-99.1932178" + } + }, + "Published" : "2014-10-31T15:00:16Z", + "Title" : "Dry Clean New York", + "Updated" : "2014-10-31T15:00:16Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1933370, 19.4275249 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Campos Elíseos 218, Polanco, 11550 Ciudad de México, D.F.&ftid=0x85d201ff033f4663:0xe6e92b06b8531c54", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.4275249", + "Longitude" : "-99.1933370" + } + }, + "Published" : "2014-10-31T03:08:54Z", + "Title" : "Campos Elíseos 218, Polanco, 11550 Ciudad de México, D.F.", + "Updated" : "2014-10-31T03:08:54Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.2052789, 19.4268328 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15306156489753325907", + "Location" : { + "Address" : "Av. Paseo de la Reforma 308, Lomas - Virreyes, Lomas de Chapultepec IV Secc, Cuauhtémoc, 06600 Del Cuautemoc, CDMX, Mexico", + "Business Name" : "ABC Car Rental", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4268328", + "Longitude" : "-99.2052789" + } + }, + "Published" : "2014-10-31T02:25:31Z", + "Title" : "ABC Car Rental", + "Updated" : "2014-10-31T02:25:31Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1926234, 19.4277983 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7353921846565833580", + "Location" : { + "Address" : "Hotel Nikko 206, Polanco, Palmas Polanco, Miguel Hidalgo, 11400 Ciudad de México, CDMX, Mexico", + "Business Name" : "Budget Car Rental", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4277983", + "Longitude" : "-99.1926234" + } + }, + "Published" : "2014-10-31T02:25:08Z", + "Title" : "Budget Car Rental", + "Updated" : "2014-10-31T02:25:08Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -98.9644440, 19.2247220 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=San+Andr%C3%A9s+Mixquic,+Federal+District&ftid=0x85ce1b90311cf539:0x49852ab87340cc2", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.2247220", + "Longitude" : "-98.9644440" + } + }, + "Published" : "2014-10-31T00:56:00Z", + "Title" : "San Andrés Mixquic, Federal District", + "Updated" : "2014-10-31T00:56:00Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1872800, 19.2548840 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Violetas,+Pueblo+San+Andr%C3%A9s+Totoltepec,+14400+Coyac%C3%A1n,+D.F.&ftid=0x85ce00a7cca52533:0xe24e475bf089ec01", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.2548840", + "Longitude" : "-99.1872800" + } + }, + "Published" : "2014-10-31T00:15:08Z", + "Title" : "Violetas, Pueblo San Andrés Totoltepec, 14400 Coyacán, D.F.", + "Updated" : "2014-10-31T00:15:08Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1957722, 19.4301715 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10458842175734828869", + "Location" : { + "Address" : "Alejandro Dumas 71, Polanco, Polanco IV Secc, Miguel Hidalgo, 11550 Ciudad de México, CDMX, Mexico", + "Business Name" : "Cafetería Smart Internet", + "Geo Coordinates" : { + "Latitude" : "19.4301715", + "Longitude" : "-99.1957722" + } + }, + "Published" : "2014-10-30T23:34:05Z", + "Title" : "Cafeteria Smart", + "Updated" : "2014-10-30T23:34:05Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -96.5123088, 15.6611841 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Playa Zipolite&ftid=0x85b929ea93c19629:0xd5e703efb3406642", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "15.6611841", + "Longitude" : "-96.5123088" + } + }, + "Published" : "2014-10-28T17:32:17Z", + "Title" : "Playa Zipolite", + "Updated" : "2014-10-28T17:32:17Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -96.5534842, 15.6676733 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Mazunte, OAX&ftid=0x85b9283dbb43db71:0x696048df9626e56e", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "15.6676733", + "Longitude" : "-96.5534842" + } + }, + "Published" : "2014-10-28T17:31:51Z", + "Title" : "Mazunte, OAX", + "Updated" : "2014-10-28T17:31:51Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -97.0918014, 15.8748531 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3949913017511473559", + "Location" : { + "Address" : "Costera Km. 6.5, Aeropuerto, 71980 Puerto Escondido, Oax., Mexico", + "Business Name" : "Aeropuerto Internacional de Puerto Escondido", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "15.8748531", + "Longitude" : "-97.0918014" + } + }, + "Published" : "2014-10-28T17:31:39Z", + "Title" : "Puerto Escondido International Airport", + "Updated" : "2014-10-28T17:31:39Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -96.2583569, 15.7722607 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=13688343330509906244", + "Location" : { + "Address" : "Carretera Costera Pinotepa, Salina Cruz - Santiago Pinotepa Nacional Km. 237, El Zapote, 70980 Santa María Huatulco, Oax., Mexico", + "Business Name" : "Bahias De Huatulco International Airport", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "15.7722607", + "Longitude" : "-96.2583569" + } + }, + "Published" : "2014-10-28T17:31:32Z", + "Title" : "Bahías de Huatulco International Airport", + "Updated" : "2014-10-28T17:31:32Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -96.3166670, 15.8333330 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Santa María Huatulco, Oaxaca&ftid=0x85bf2e7fcb2053e9:0xc8a6a9684e0f5845", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "15.8333330", + "Longitude" : "-96.3166670" + } + }, + "Published" : "2014-10-28T17:31:01Z", + "Title" : "Santa María Huatulco, Oaxaca", + "Updated" : "2014-10-28T17:31:01Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -97.0694471, 15.8655354 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Puerto Escondido, Oaxaca&ftid=0x85b85b5c66389085:0xab3eb19dba902c07", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "15.8655354", + "Longitude" : "-97.0694471" + } + }, + "Published" : "2014-10-28T17:30:45Z", + "Title" : "Puerto Escondido, Oaxaca", + "Updated" : "2014-10-28T17:30:45Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1709822, 19.4235357 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2531457643448506054", + "Location" : { + "Address" : "Sevilla 21, Juárez, Cuauhtémoc, 06600 Ciudad de México, CDMX, Mexico", + "Business Name" : "DAY LIGHT SALADS", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4235357", + "Longitude" : "-99.1709822" + } + }, + "Published" : "2014-10-28T00:12:26Z", + "Title" : "DAY LIGHT SALADS", + "Updated" : "2014-10-28T00:12:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1728167, 19.4094444 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=6612934038617157125", + "Location" : { + "Address" : "Av Nuevo León 137, Colonia Condesa, Cuauhtémoc, 06140 Ciudad de México, CDMX, Mexico", + "Business Name" : "La Capital", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4094444", + "Longitude" : "-99.1728167" + } + }, + "Published" : "2014-10-27T19:27:10Z", + "Title" : "La Capital", + "Updated" : "2014-10-27T19:27:10Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1706349, 19.4216861 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3207715581511650581", + "Location" : { + "Address" : "Av Chapultepec 460, Roma Nte., Cuauhtémoc, 06700 Ciudad de México, CDMX, Mexico", + "Business Name" : "Copimetro S.A. de C.V.", + "Geo Coordinates" : { + "Latitude" : "19.4216861", + "Longitude" : "-99.1706349" + } + }, + "Published" : "2014-10-27T18:38:16Z", + "Title" : "Copimetro S.A. de C.V.", + "Updated" : "2014-10-27T18:38:16Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1655273, 19.4123630 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16654200837885956959", + "Location" : { + "Address" : "San Luis Potosí 214, Roma Nte., Cuauhtémoc, 06700 Ciudad de México, CDMX, Mexico", + "Business Name" : "Plaza Insurgentes", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4123630", + "Longitude" : "-99.1655273" + } + }, + "Published" : "2014-10-27T18:37:27Z", + "Title" : "Plaza Insurgentes", + "Updated" : "2014-10-27T18:37:27Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1645133, 19.4256244 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=6954933998568894382", + "Location" : { + "Address" : "Londres 127, Juárez, Cuauhtémoc, 06600 Ciudad de México, CDMX, Mexico", + "Business Name" : "Plaza La Rosa", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4256244", + "Longitude" : "-99.1645133" + } + }, + "Published" : "2014-10-27T18:35:02Z", + "Title" : "PLAZA LA ROSA", + "Updated" : "2014-10-27T18:35:02Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1549155, 19.4034119 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16683798522120111377", + "Location" : { + "Address" : "Av. Cuauhtémoc No. 462, Narvarte Poniente, Benito Juárez, 03020 Ciudad de México, CDMX, Mexico", + "Business Name" : "Liverpool", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4034119", + "Longitude" : "-99.1549155" + } + }, + "Published" : "2014-10-27T18:31:50Z", + "Title" : "Liverpool México, S.A. De C.V.", + "Updated" : "2014-10-27T18:31:50Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1676044, 19.4080728 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Aguascalientes 132, Colonia Roma, 06760 Cuauhtémoc, D.F.&ftid=0x85d1ff1555798ca9:0xb810163b585af37d", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.4080728", + "Longitude" : "-99.1676044" + } + }, + "Published" : "2014-10-27T15:52:28Z", + "Title" : "Aguascalientes 132, Colonia Roma, 06760 Cuauhtémoc, D.F.", + "Updated" : "2014-10-27T15:52:28Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -98.8639984, 18.8856293 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=18.885629309518812,-98.8639983907342", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "18.8856293", + "Longitude" : "-98.8639984" + } + }, + "Published" : "2014-10-26T19:04:17Z", + "Title" : "18.885629309518812,-98.8639983907342", + "Updated" : "2014-10-26T19:04:17Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1732936, 19.2487589 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Pueblo San Andrés Totoltepec, 14400 Ciudad de México, D.F., Mexico&ftid=0x85ce00b12d430e5d:0x555464d3fff565af", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.2487589", + "Longitude" : "-99.1732936" + } + }, + "Published" : "2014-10-25T17:30:13Z", + "Title" : "Pueblo San Andrés Totoltepec, Ciudad de México, D.F., Mexico", + "Updated" : "2014-10-25T17:30:13Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1412000, 19.4352000 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1718141752200063183", + "Location" : { + "Address" : "Av. Juárez S/N, Centro Histórico de la Cdad. de México, Centro, Cuauhtémoc, 06050 Ciudad de México, CDMX, Mexico", + "Business Name" : "Palacio de Bellas Artes", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4352000", + "Longitude" : "-99.1412000" + } + }, + "Published" : "2014-10-25T15:53:13Z", + "Title" : "Palacio de Bellas Artes", + "Updated" : "2014-10-25T15:53:13Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1950043, 19.4278651 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1120553985960778831", + "Location" : { + "Address" : "Campos Elíseos 247, Polanco, Polanco IV Secc, Miguel Hidalgo, 11550 Ciudad de México, CDMX, Mexico", + "Business Name" : "Starbucks", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4278651", + "Longitude" : "-99.1950043" + } + }, + "Published" : "2014-10-25T15:45:46Z", + "Title" : "STARBUCKS OBELISCO", + "Updated" : "2014-10-25T15:45:46Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.2025470, 19.4307300 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16300973670573920820", + "Location" : { + "Address" : "Av Moliere 38, Polanco, Polanco II Secc, Miguel Hidalgo, 11550 Ciudad de México, CDMX, Mexico", + "Business Name" : "Bikes DF", + "Geo Coordinates" : { + "Latitude" : "19.4307300", + "Longitude" : "-99.2025470" + } + }, + "Published" : "2014-10-25T15:45:08Z", + "Title" : "Bikes DF", + "Updated" : "2014-10-25T15:45:08Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1941676, 19.4291450 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14231760371581574112", + "Location" : { + "Address" : "Aristóteles s/n, Polanco, Polanco IV Secc, Miguel Hidalgo, 11560 Ciudad de México, CDMX, Mexico", + "Business Name" : "Angela Peralta Theater", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4291450", + "Longitude" : "-99.1941676" + } + }, + "Published" : "2014-10-25T15:44:51Z", + "Title" : "Teatro Angela Peralta", + "Updated" : "2014-10-25T15:44:51Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1645707, 19.4140913 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Querétaro 225, Colonia Roma, 06700 Ciudad de México, D.F.&ftid=0x85d1ff3ed346ce7b:0xf8647aef8aaeb639", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.4140913", + "Longitude" : "-99.1645707" + } + }, + "Published" : "2014-10-25T15:37:26Z", + "Title" : "Querétaro 225, 06700 D.F.", + "Updated" : "2014-10-25T15:37:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1678631, 19.4129420 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16386287669631021896", + "Location" : { + "Address" : "Av Sonora 189, Hipódromo, Cuauhtémoc, 06100 Ciudad de México, CDMX, Mexico", + "Business Name" : "Colegio Superior de Gastronomía", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4129420", + "Longitude" : "-99.1678631" + } + }, + "Published" : "2014-10-25T04:51:16Z", + "Title" : "Colegio Superior de Gastronomía", + "Updated" : "2014-10-25T04:51:16Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1719852, 19.4162580 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8978219869533030903", + "Location" : { + "Address" : "Av. Veracruz 102, Roma Nte., Cuauhtémoc, 06700 Ciudad de México, CDMX, Mexico", + "Business Name" : "El Patio", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4162580", + "Longitude" : "-99.1719852" + } + }, + "Published" : "2014-10-25T03:18:19Z", + "Title" : "El Patio", + "Updated" : "2014-10-25T03:18:19Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1692536, 19.4058810 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=19.405881043900624,-99.16925355792046", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.4058810", + "Longitude" : "-99.1692536" + } + }, + "Published" : "2014-10-25T00:10:54Z", + "Title" : "19.405881043900624,-99.16925355792046", + "Updated" : "2014-10-25T00:10:54Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1371238, 19.4415302 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=18388029258282904966", + "Location" : { + "Address" : "Ignacio Allende 77, Lagunilla, Centro, Cuauhtémoc, 06000 Ciudad de México, CDMX, Mexico", + "Business Name" : "Arisma Decoraciones", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4415302", + "Longitude" : "-99.1371238" + } + }, + "Published" : "2014-10-24T22:35:05Z", + "Title" : "mercado lagunilla varios", + "Updated" : "2014-10-24T22:35:05Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1633804, 19.4104231 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3201368549878217095", + "Location" : { + "Address" : "Campeche 101, Roma Sur, Cuauhtémoc, 06760 Ciudad de México, CDMX, Mexico", + "Business Name" : "Mercado Medellín", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4104231", + "Longitude" : "-99.1633804" + } + }, + "Published" : "2014-10-24T19:37:37Z", + "Title" : "Mercado de Medellin", + "Updated" : "2014-10-24T19:37:37Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1608633, 19.4161534 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4761051981831773806", + "Location" : { + "Address" : "Jalapa 145, Roma Nte., Cuauhtémoc, 06700 Ciudad de México, CDMX, Mexico", + "Business Name" : "Velo Velo Shop", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4161534", + "Longitude" : "-99.1608633" + } + }, + "Published" : "2014-10-24T16:26:04Z", + "Title" : "Velo Velo Shop", + "Updated" : "2014-10-24T16:26:04Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1569650, 19.4164640 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=6607631928193670419", + "Location" : { + "Address" : "Zacatecas 55, Roma Nte., Cuauhtémoc, 06700 Ciudad de México, CDMX, Mexico", + "Business Name" : "People for Bikes", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4164640", + "Longitude" : "-99.1569650" + } + }, + "Published" : "2014-10-24T16:25:58Z", + "Title" : "People for Bikes", + "Updated" : "2014-10-24T16:25:58Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1617763, 19.4088706 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10966066513768175869", + "Location" : { + "Address" : "Monterrey, Roma Sur, 06760 Ciudad de México, CDMX, Mexico", + "Business Name" : "Kiclos", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4088706", + "Longitude" : "-99.1617763" + } + }, + "Published" : "2014-10-24T16:25:44Z", + "Title" : "Kiclos", + "Updated" : "2014-10-24T16:25:44Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1659605, 19.4111226 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9138705565067169457", + "Location" : { + "Address" : "Manzanillo 30 H, Roma, 06700 Cuauhtémoc, CDMX, Mexico", + "Business Name" : "Alterbike bicicletas SÓLO ONLINE", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4111226", + "Longitude" : "-99.1659605" + } + }, + "Published" : "2014-10-24T16:25:38Z", + "Title" : "ALTERBIKE BICICLETAS", + "Updated" : "2014-10-24T16:25:38Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1634537, 19.4112921 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3979071658900746064", + "Location" : { + "Address" : "Coahuila 161, Roma Nte., Cuauhtémoc, 06700 Ciudad de México, CDMX, Mexico", + "Business Name" : "Bikes live lives rolling", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4112921", + "Longitude" : "-99.1634537" + } + }, + "Published" : "2014-10-24T16:25:35Z", + "Title" : "Vivo Bikes", + "Updated" : "2014-10-24T16:25:35Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1608128, 19.4103974 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11911374961103815760", + "Location" : { + "Address" : "Tonalá 223, Roma Sur, Cuauhtémoc, 06760 Ciudad de México, CDMX, Mexico", + "Business Name" : "BICICLETAS TONINO", + "Geo Coordinates" : { + "Latitude" : "19.4103974", + "Longitude" : "-99.1608128" + } + }, + "Published" : "2014-10-24T16:25:33Z", + "Title" : "Bicicletas Tonino", + "Updated" : "2014-10-24T16:25:33Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1613623, 19.4074167 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9472504547262098002", + "Location" : { + "Address" : "Roma Sur, 06760 Mexico City, CDMX, Mexico", + "Business Name" : "Mal Amores", + "Geo Coordinates" : { + "Latitude" : "19.4074167", + "Longitude" : "-99.1613623" + } + }, + "Published" : "2014-10-23T23:54:18Z", + "Title" : "Mal Amores", + "Updated" : "2014-10-23T23:54:18Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1688428, 19.4109432 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15337503070781648312", + "Location" : { + "Address" : "Av Michoacán 30A, Colonia Condesa, Cuauhtémoc, 03020 Ciudad de México, CDMX, Mexico", + "Business Name" : "Caffe Toscano", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4109432", + "Longitude" : "-99.1688428" + } + }, + "Published" : "2014-10-23T18:46:40Z", + "Title" : "CAFE TOSCANO CONDESA", + "Updated" : "2014-10-23T18:46:40Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1681573, 19.4107434 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=6430067715838867485", + "Location" : { + "Address" : "Amsterdam 240, Hipódromo, Cuauhtémoc, 06100 Ciudad de México, CDMX, Mexico", + "Business Name" : "El 3er Espacio", + "Geo Coordinates" : { + "Latitude" : "19.4107434", + "Longitude" : "-99.1681573" + } + }, + "Published" : "2014-10-23T18:45:41Z", + "Title" : "El 3er Espacio", + "Updated" : "2014-10-23T18:45:41Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1806869, 19.4120998 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3416803029731551408", + "Location" : { + "Address" : "Zamora 187, Colonia Condesa, Cuauhtémoc, 06140 Ciudad de México, CDMX, Mexico", + "Business Name" : "Centraal", + "Geo Coordinates" : { + "Latitude" : "19.4120998", + "Longitude" : "-99.1806869" + } + }, + "Published" : "2014-10-23T18:45:26Z", + "Title" : "Centraal", + "Updated" : "2014-10-23T18:45:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1908280, 19.4313946 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11783773736484271513", + "Location" : { + "Address" : "Local 1C Masaryk, Calle Arquímedes 69, Polanco V Secc, Miguel Hidalgo, 11580 Ciudad de México, CDMX, Mexico", + "Business Name" : "Cafe Punta del Cielo", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4313946", + "Longitude" : "-99.1908280" + } + }, + "Published" : "2014-10-23T18:40:13Z", + "Title" : "Café Punta Del Cielo", + "Updated" : "2014-10-23T18:40:13Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1604988, 19.4218062 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3277089541129596908", + "Location" : { + "Address" : "Orizaba 42, Roma Nte., Cuauhtémoc, 06700 Ciudad de México, CDMX, Mexico", + "Business Name" : "Café Toscano", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4218062", + "Longitude" : "-99.1604988" + } + }, + "Published" : "2014-10-23T17:46:57Z", + "Title" : "CAFE TOSCANO ROMA", + "Updated" : "2014-10-23T17:46:57Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1577666, 19.4275312 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9791408716523317956", + "Location" : { + "Address" : "Calle Liverpool 31, Juárez, Cuauhtémoc, 06600 Ciudad de México, CDMX, Mexico", + "Business Name" : "Benjamín Franklin Library", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4275312", + "Longitude" : "-99.1577666" + } + }, + "Published" : "2014-10-23T17:04:03Z", + "Title" : "Biblioteca Benjamín Franklin", + "Updated" : "2014-10-23T17:04:03Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1752954, 19.4243358 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3483663640232938135", + "Location" : { + "Address" : "Av. Paseo de la Reforma 505, Cuauhtémoc, 06500 Ciudad de México, CDMX, Mexico", + "Business Name" : "Torre Mayor", + "Geo Coordinates" : { + "Latitude" : "19.4243358", + "Longitude" : "-99.1752954" + } + }, + "Published" : "2014-10-22T23:02:43Z", + "Title" : "Torre Mayor", + "Updated" : "2014-10-22T23:02:43Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1717827, 19.4124708 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Nuevo León 78, Hipódromo Condesa, 06100 Ciudad de México, D.F.&ftid=0x85d1ff413fa350dd:0x8716d7a2b92c7fc1", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.4124708", + "Longitude" : "-99.1717827" + } + }, + "Published" : "2014-10-22T17:17:09Z", + "Title" : "Nuevo León 78, Hipódromo Condesa, Ciudad de México, D.F.", + "Updated" : "2014-10-22T17:17:09Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1947798, 19.4328683 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11653406765589265174", + "Location" : { + "Address" : "Tennyson 133, Polanco, Polanco IV Secc, Miguel Hidalgo, 11570 Ciudad de México, CDMX, Mexico", + "Business Name" : "Pujol", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4328683", + "Longitude" : "-99.1947798" + } + }, + "Published" : "2014-10-22T16:59:18Z", + "Title" : "Pujol Restaurant", + "Updated" : "2014-10-22T16:59:18Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1507955, 19.4473690 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12337640721315742525", + "Location" : { + "Address" : "Eje 1 Nte. S/N, Buenavista, Cuauhtémoc, 06350 Ciudad de México, CDMX, Mexico", + "Business Name" : "Biblioteca Vasconcelos", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4473690", + "Longitude" : "-99.1507955" + } + }, + "Published" : "2014-10-22T16:48:44Z", + "Title" : "Biblioteca Vasconcelos", + "Updated" : "2014-10-22T16:48:44Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1975269, 19.4281154 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3635053925829578248", + "Location" : { + "Address" : "Calle Julio Verne 28-30, Polanco, Polanco III Secc, Miguel Hidalgo, 11550 Ciudad de México, CDMX, Mexico", + "Business Name" : "Suites Obelisk", + "Country Code" : "MX", + "Geo Coordinates" : { + "Latitude" : "19.4281154", + "Longitude" : "-99.1975269" + } + }, + "Published" : "2014-10-22T16:39:05Z", + "Title" : "Suites Obelisk", + "Updated" : "2014-10-22T16:39:05Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9080575, 52.3888822 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Magnoliastraat 20, 1031 VD Amsterdam&ftid=0x47c6084ce0b6b94d:0x260d2da676e2a9ea", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3888822", + "Longitude" : "4.9080575" + } + }, + "Published" : "2014-10-01T11:04:36Z", + "Title" : "Magnoliastraat 20, 1031 VD Amsterdam", + "Updated" : "2014-10-01T11:04:36Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.1666310, 19.4263462 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Berna 12, Juárez, 06600 Ciudad de México, D.F., Mexico&ftid=0x85d1ff35e474cf8d:0x2455c6df69deeeba", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.4263462", + "Longitude" : "-99.1666310" + } + }, + "Published" : "2014-09-27T15:23:16Z", + "Title" : "Berna 12, Juárez, Ciudad de México, D.F., Mexico", + "Updated" : "2014-09-27T15:23:16Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8650821, 52.3758121 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Jan van Galenstraat 24A, 1051 KM Amsterdam&ftid=0x47c5e276e23b62bb:0x2f8185cb635b45bd", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3758121", + "Longitude" : "4.8650821" + } + }, + "Published" : "2014-09-27T15:09:02Z", + "Title" : "Jan van Galenstraat 24A, 1051 KM Amsterdam", + "Updated" : "2014-09-27T15:09:02Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8530067, 52.3312924 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3881615387971294091", + "Location" : { + "Address" : "Koenenkade 8, 1081 KH Amsterdam, Netherlands", + "Business Name" : "Spa Sport Hotel Zuiver", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3312924", + "Longitude" : "4.8530067" + } + }, + "Published" : "2014-09-25T18:54:04Z", + "Title" : "Spa Sport Hotel Zuiver", + "Updated" : "2014-09-25T18:54:04Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8682951, 52.3671983 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16745682807232960245", + "Location" : { + "Address" : "Hannie Dankbaarpassage 12, 1053 RT Amsterdam, Netherlands", + "Business Name" : "FilmHallen", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3671983", + "Longitude" : "4.8682951" + } + }, + "Published" : "2014-09-24T16:05:50Z", + "Title" : "FilmHallen", + "Updated" : "2014-09-24T16:05:50Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.2788967, 19.3594712 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Juan Salvador Agraz 69, Las Tinajas, 05370 Ciudad de México, D.F., Mexico&ftid=0x85d20734c957f4f9:0x5efaaa0b1eaec85c", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "19.3594712", + "Longitude" : "-99.2788967" + } + }, + "Published" : "2014-09-24T10:59:31Z", + "Title" : "Juan Salvador Agraz 69, Las Tinajas, Ciudad de México, D.F., Mexico", + "Updated" : "2014-09-24T10:59:31Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -99.2102080, 19.4331730 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11275635046888747365", + "Location" : { + "Address" : "No. 138 Piso 7, Perif. Blvd. Manuel Ávila Camacho, Miguel Hidalgo, 11000 Ciudad de México, CDMX, Mexico", + "Business Name" : "Accenture", + "Geo Coordinates" : { + "Latitude" : "19.4331730", + "Longitude" : "-99.2102080" + } + }, + "Published" : "2014-09-24T10:57:00Z", + "Title" : "Accenture Mexico City - Altiva", + "Updated" : "2014-09-24T10:57:00Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8899013, 52.3744450 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Torensteeg 5, 1012 TH Amsterdam&ftid=0x47c609c685b31cdf:0x84e6813a239be1dc", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3744450", + "Longitude" : "4.8899013" + } + }, + "Published" : "2014-09-22T13:00:08Z", + "Title" : "Torensteeg 5, 1012 TH Amsterdam", + "Updated" : "2014-09-22T13:00:08Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9277731, 52.3759371 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5022426165857908155", + "Location" : { + "Address" : "Veemkade 576, 1019 BL Amsterdam, Netherlands", + "Business Name" : "Café Pakhuis Wilhelmina", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3759371", + "Longitude" : "4.9277731" + } + }, + "Published" : "2014-09-21T14:24:53Z", + "Title" : "Café Pakhuis Wilhelmina", + "Updated" : "2014-09-21T14:24:53Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8318979, 52.3660263 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Tretjakovlaan 56, 1064 PR Amsterdam&ftid=0x47c5e23905be3107:0x94c8d0d6f74d3b8e", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3660263", + "Longitude" : "4.8318979" + } + }, + "Published" : "2014-09-21T10:20:59Z", + "Title" : "Tretjakovlaan 56, 1064 PR Amsterdam", + "Updated" : "2014-09-21T10:20:59Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9263342, 52.3616246 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1383957612589634045", + "Location" : { + "Address" : "Tweede van Swindenstraat 26, 1093 VS Amsterdam, Netherlands", + "Business Name" : "Salsa School Sabroso", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3616246", + "Longitude" : "4.9263342" + } + }, + "Published" : "2014-09-19T07:14:30Z", + "Title" : "Salsa School Sabroso", + "Updated" : "2014-09-19T07:14:30Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 6.0779779, 52.7401779 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=8355 Giethoorn&ftid=0x47c86fcf82900261:0x5203ff28326e2844", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.7401779", + "Longitude" : "6.0779779" + } + }, + "Published" : "2014-09-15T10:29:44Z", + "Title" : "Giethoorn", + "Updated" : "2014-09-15T10:29:44Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9259825, 52.3486137 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5486219330914840256", + "Location" : { + "Address" : "Nobelweg 10, 1097 AR Amsterdam, Netherlands", + "Business Name" : "Intratuin Amsterdam", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3486137", + "Longitude" : "4.9259825" + } + }, + "Published" : "2014-09-09T09:22:11Z", + "Title" : "Intratuin Amsterdam", + "Updated" : "2014-09-09T09:22:11Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8145773, 52.3508892 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3302426100380475580", + "Location" : { + "Address" : "Plesmanlaan 140, 1066 CX Amsterdam, Netherlands", + "Business Name" : "Tuincentrum Ottenhof", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3508892", + "Longitude" : "4.8145773" + } + }, + "Published" : "2014-09-09T09:21:15Z", + "Title" : "Tuincentrum Ottenhof", + "Updated" : "2014-09-09T09:21:15Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.7908333, 52.3519444 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15941739598067534747", + "Location" : { + "Address" : "Osdorperweg 247, 1069 LL Amsterdam, Netherlands", + "Business Name" : "Tuincentrum Osdorp B.V.", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3519444", + "Longitude" : "4.7908333" + } + }, + "Published" : "2014-09-09T09:21:06Z", + "Title" : "Tuincentrum Osdorp B.V.", + "Updated" : "2014-09-09T09:21:06Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8105572, 52.3417381 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=17224448760291907440", + "Location" : { + "Address" : "Sloterweg 984, 1066 CR Amsterdam, Netherlands", + "Business Name" : "Bakker's Kwekerij", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3417381", + "Longitude" : "4.8105572" + } + }, + "Published" : "2014-09-09T09:20:50Z", + "Title" : "Bakker's Kwekerij", + "Updated" : "2014-09-09T09:20:50Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.1219151, 52.0949606 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8184996379834906940", + "Location" : { + "Address" : "Voorstraat 71, 3512 AK Utrecht, Netherlands", + "Business Name" : "ACU", + "Geo Coordinates" : { + "Latitude" : "52.0949606", + "Longitude" : "5.1219151" + } + }, + "Published" : "2014-09-08T15:22:59Z", + "Title" : "ACU", + "Updated" : "2014-09-08T15:22:59Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.1191919, 52.0882719 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11023864871910268491", + "Location" : { + "Address" : "Springweg 50, 3511 VS Utrecht, Netherlands", + "Business Name" : "Springhaver", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.0882719", + "Longitude" : "5.1191919" + } + }, + "Published" : "2014-09-08T15:15:46Z", + "Title" : "Cafe Springhaver", + "Updated" : "2014-09-08T15:15:46Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.4586381, 51.4434773 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=18400284385943912920", + "Location" : { + "Address" : "Berkenstraat 1A, 5616 LV Eindhoven, Netherlands", + "Business Name" : "Monk Bouldergym Eindhoven", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "51.4434773", + "Longitude" : "5.4586381" + } + }, + "Published" : "2014-09-06T17:15:30Z", + "Title" : "Monk bouldergym Eindhoven", + "Updated" : "2014-09-06T17:15:30Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.4813194, 51.4266279 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10319278315477530162", + "Location" : { + "Address" : "5615 EE Eindhoven, Netherlands", + "Business Name" : "Stadswandelpark", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "51.4266279", + "Longitude" : "5.4813194" + } + }, + "Published" : "2014-09-06T17:11:21Z", + "Title" : "Stadswandelpark", + "Updated" : "2014-09-06T17:11:21Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.4192998, 51.4333830 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Hovenring, Land Forum, 5657 Eindhoven&ftid=0x47c6dbd2c1d23883:0xa5c7c1207fb12f7", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.4333830", + "Longitude" : "5.4192998" + } + }, + "Published" : "2014-09-06T17:10:53Z", + "Title" : "Hovenring", + "Updated" : "2014-09-06T17:10:53Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.4819658, 51.4345503 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14091221697115452268", + "Location" : { + "Address" : "Bilderdijklaan 10, 5611 NH Eindhoven, Netherlands", + "Business Name" : "Van Abbemuseum", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "51.4345503", + "Longitude" : "5.4819658" + } + }, + "Published" : "2014-09-06T17:10:35Z", + "Title" : "Van Abbemuseum", + "Updated" : "2014-09-06T17:10:35Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.4929542, 51.4265812 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Heezerweg 180, 5614 HJ Eindhoven&ftid=0x47c6d85798256cb5:0x3f762176ec26b252", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.4265812", + "Longitude" : "5.4929542" + } + }, + "Published" : "2014-09-06T17:10:04Z", + "Title" : "Heezerweg 180, 5614 HJ Eindhoven", + "Updated" : "2014-09-06T17:10:04Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.4792100, 51.4434406 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9185756890642826099", + "Location" : { + "Address" : "5611 AD Eindhoven, Netherlands", + "Business Name" : "Eindhoven Centraal", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "51.4434406", + "Longitude" : "5.4792100" + } + }, + "Published" : "2014-09-06T17:07:59Z", + "Title" : "Eindhoven", + "Updated" : "2014-09-06T17:07:59Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.4715370, 51.4378615 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Wilhelminaplein, 5611 Eindhoven&ftid=0x47c6d9057a6051d7:0x86ababdfc97be3d4", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.4378615", + "Longitude" : "5.4715370" + } + }, + "Published" : "2014-09-06T17:07:39Z", + "Title" : "Wilhelminaplein, Eindhoven", + "Updated" : "2014-09-06T17:07:39Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.1222222, 52.0930556 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12489449087050181498", + "Location" : { + "Address" : "Janskerkhof 9, 3512 BK Utrecht, Netherlands", + "Business Name" : "Broers", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.0930556", + "Longitude" : "5.1222222" + } + }, + "Published" : "2014-09-06T15:13:09Z", + "Title" : "Broers", + "Updated" : "2014-09-06T15:13:09Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3312805, 60.3926549 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7138850399946776591", + "Location" : { + "Address" : "Nygaten 7, 5017 Bergen, Norway", + "Business Name" : "Galleri Nygaten", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3926549", + "Longitude" : "5.3312805" + } + }, + "Published" : "2014-09-01T09:58:30Z", + "Title" : "Galleri Nygaten", + "Updated" : "2014-09-01T09:58:30Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3240622, 60.3906168 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3087341998837307871", + "Location" : { + "Address" : "Nordahl Bruns gate 9, 5014 Bergen, Norway", + "Business Name" : "West Norway Museum of Decorative Art", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3906168", + "Longitude" : "5.3240622" + } + }, + "Published" : "2014-09-01T09:54:39Z", + "Title" : "KODE 1", + "Updated" : "2014-09-01T09:54:39Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3532900, 60.3393031 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=13768666187840896553", + "Location" : { + "Address" : "Fantoftvegen 38, 5072 Bergen, Norway", + "Business Name" : "Fantoft Stave Church", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3393031", + "Longitude" : "5.3532900" + } + }, + "Published" : "2014-09-01T09:22:29Z", + "Title" : "Fantoft Stave Church", + "Updated" : "2014-09-01T09:22:29Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3222549, 60.3929431 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2610477468858153493", + "Location" : { + "Address" : "Markeveien 3, 5012 Bergen, Norway", + "Business Name" : "Outdoor Bergen", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3929431", + "Longitude" : "5.3222549" + } + }, + "Published" : "2014-09-01T09:13:07Z", + "Title" : "Outdoor Bergen AS", + "Updated" : "2014-09-01T09:13:07Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3283699, 60.3936276 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=13159551807320587461", + "Location" : { + "Address" : "Østre Skostredet 5, 5017 Bergen, Norway", + "Business Name" : "Litteraturhuset i Bergen", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3936276", + "Longitude" : "5.3283699" + } + }, + "Published" : "2014-08-30T18:52:31Z", + "Title" : "Litteraturhuset i Bergen", + "Updated" : "2014-08-30T18:52:31Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3266194, 60.3949306 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10917779066370062280", + "Location" : { + "Address" : "Hollendergaten 11, 5017 Bergen, Norway", + "Business Name" : "No Stress", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3949306", + "Longitude" : "5.3266194" + } + }, + "Published" : "2014-08-30T18:51:41Z", + "Title" : "No Stress", + "Updated" : "2014-08-30T18:51:41Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3318213, 60.3914557 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Marken 32, 5017 Bergen, Norway&ftid=0x463cfeaf2a5ad04b:0x6e6cfb3d77f7b6e6", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "60.3914557", + "Longitude" : "5.3318213" + } + }, + "Published" : "2014-08-30T17:41:27Z", + "Title" : "Marken 32, 5017 Bergen, Norway", + "Updated" : "2014-08-30T17:41:27Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3175526, 60.3957639 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9838925785816924141", + "Location" : { + "Address" : "Strandgaten 81, 5004 Bergen, Norway", + "Business Name" : "Altona Vinbar & Kjøkken", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3957639", + "Longitude" : "5.3175526" + } + }, + "Published" : "2014-08-30T17:05:29Z", + "Title" : "Altona Vinbar", + "Updated" : "2014-08-30T17:05:29Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3214930, 60.3919450 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3238928748492361951", + "Location" : { + "Address" : "Øvre Ole Bulls plass 6, 5012 Bergen, Norway", + "Business Name" : "Wessel Bar", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3919450", + "Longitude" : "5.3214930" + } + }, + "Published" : "2014-08-30T16:54:26Z", + "Title" : "Wessel Bar", + "Updated" : "2014-08-30T16:54:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3242020, 60.3945088 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=18334470455062975136", + "Location" : { + "Address" : "Strandkaien 3, 5012 Bergen, Norway", + "Business Name" : "Tourist Information in Bergen", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3945088", + "Longitude" : "5.3242020" + } + }, + "Published" : "2014-08-30T12:10:12Z", + "Title" : "Turistinformasjonen i Bergen", + "Updated" : "2014-08-30T12:10:12Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3810384, 60.4170777 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=60.41707766790519,5.381038337945938", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "60.4170777", + "Longitude" : "5.3810384" + } + }, + "Published" : "2014-08-29T15:11:45Z", + "Title" : "60.41707766790519,5.381038337945938", + "Updated" : "2014-08-29T15:11:45Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3594810, 60.3739406 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8438533314442701695", + "Location" : { + "Address" : "Jonas Lies vei 65, 5021 Bergen, Norway", + "Business Name" : "Haukeland University Hospital / Health Bergen", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3739406", + "Longitude" : "5.3594810" + } + }, + "Published" : "2014-08-29T10:09:28Z", + "Title" : "Haukeland University Hospital", + "Updated" : "2014-08-29T10:09:28Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3311976, 60.3928326 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Kong Oscars gate, Bergen, Norway&ftid=0x463cfea8b4858533:0x57b477ea898f906a", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "60.3928326", + "Longitude" : "5.3311976" + } + }, + "Published" : "2014-08-29T09:20:47Z", + "Title" : "Kong Oscars gate, Bergen, Norway", + "Updated" : "2014-08-29T09:20:47Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3113100, 60.3949078 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=60.394907813615475,5.311309956014156", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "60.3949078", + "Longitude" : "5.3113100" + } + }, + "Published" : "2014-08-28T12:12:26Z", + "Title" : "60.394907813615475,5.311309956014156", + "Updated" : "2014-08-28T12:12:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3203084, 60.3902355 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4830874889787879481", + "Location" : { + "Address" : "Håkonsgaten 27, 5015 Bergen, Norway", + "Business Name" : "Basic Hotel Bergen", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3902355", + "Longitude" : "5.3203084" + } + }, + "Published" : "2014-08-27T21:33:26Z", + "Title" : "Basic Hotel Bergen", + "Updated" : "2014-08-27T21:33:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8552694, 52.3542694 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4676253207170322489", + "Location" : { + "Address" : "Amstelveenseweg 134, 1075 XL Amsterdam, Netherlands", + "Business Name" : "Occii", + "Geo Coordinates" : { + "Latitude" : "52.3542694", + "Longitude" : "4.8552694" + } + }, + "Published" : "2014-08-19T17:01:51Z", + "Title" : "Occii", + "Updated" : "2014-08-19T17:01:51Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3241667, 60.3938889 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11509603615265194568", + "Location" : { + "Address" : "Strandgaten 3, 5013 Bergen, Norway", + "Business Name" : "Søstrene Hagelin", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3938889", + "Longitude" : "5.3241667" + } + }, + "Published" : "2014-08-19T11:56:36Z", + "Title" : "Søstrene Hagelin AS", + "Updated" : "2014-08-19T11:56:36Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3242355, 60.3973760 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Jacobsfjorden 4, 5003 Bergen, Norway&ftid=0x463cfea781c8b1d1:0xafa4c7d11da364fb", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "60.3973760", + "Longitude" : "5.3242355" + } + }, + "Published" : "2014-08-19T11:56:23Z", + "Title" : "Jacobsfjorden 4, 5003 Bergen, Norway", + "Updated" : "2014-08-19T11:56:23Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3254527, 60.3995806 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2076497201495628583", + "Location" : { + "Address" : "Stølegaten 8A, 5003 Bergen, Norway", + "Business Name" : "Bastant Stølegaten", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3995806", + "Longitude" : "5.3254527" + } + }, + "Published" : "2014-08-19T11:55:51Z", + "Title" : "Bastant Stølegaten", + "Updated" : "2014-08-19T11:55:51Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3293334, 60.3950769 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3012598396502474286", + "Location" : { + "Address" : "Øvre Korskirkeallmenning 5, 5017 Bergen, Norway", + "Business Name" : "Kaffemisjonen", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3950769", + "Longitude" : "5.3293334" + } + }, + "Published" : "2014-08-19T11:55:40Z", + "Title" : "Kaffemisjonen", + "Updated" : "2014-08-19T11:55:40Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3217778, 60.3911667 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2483437311718299620", + "Location" : { + "Address" : "Vaskerelven 14, 5014 Bergen, Norway", + "Business Name" : "Pingvinen", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3911667", + "Longitude" : "5.3217778" + } + }, + "Published" : "2014-08-19T11:55:32Z", + "Title" : "Pingvinen", + "Updated" : "2014-08-19T11:55:32Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3206583, 60.3910917 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=139327766250354481", + "Location" : { + "Address" : "Sigurds gate 4, 5015 Bergen, Norway", + "Business Name" : "Naboen Pub & Restaurant", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3910917", + "Longitude" : "5.3206583" + } + }, + "Published" : "2014-08-19T11:55:17Z", + "Title" : "Naboen", + "Updated" : "2014-08-19T11:55:17Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3093655, 60.3958114 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9669772015652679047", + "Location" : { + "Address" : "Georgernes Verft 12, 5011 Bergen, Norway", + "Business Name" : "USF", + "Geo Coordinates" : { + "Latitude" : "60.3958114", + "Longitude" : "5.3093655" + } + }, + "Published" : "2014-08-19T11:55:09Z", + "Title" : "USF Verftet", + "Updated" : "2014-08-19T11:55:09Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3454066, 60.3983482 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Fløyfjellet, Bergen, Norway&ftid=0x463cfebb723130f7:0x33ce3da8861f86e8", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "60.3983482", + "Longitude" : "5.3454066" + } + }, + "Published" : "2014-08-19T11:54:56Z", + "Title" : "Fløyfjellet", + "Updated" : "2014-08-19T11:54:56Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3869521, 60.3774863 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Ulriken, Bergen, Norway&ftid=0x463cf92af87f339d:0x84391761658b3434", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "60.3774863", + "Longitude" : "5.3869521" + } + }, + "Published" : "2014-08-19T11:54:39Z", + "Title" : "Ulriken", + "Updated" : "2014-08-19T11:54:39Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3660478, 60.3717828 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=13693914048530662146", + "Location" : { + "Address" : "Johan Blytts vei 30, 5096 Bergen, Norway", + "Business Name" : "Bergen Hostel Montana", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3717828", + "Longitude" : "5.3660478" + } + }, + "Published" : "2014-08-19T11:54:17Z", + "Title" : "Bergen Vandrerhjem Montana", + "Updated" : "2014-08-19T11:54:17Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3238889, 60.3894444 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2576354054753279221", + "Location" : { + "Address" : "Christies gate 14, 5015 Bergen, Norway", + "Business Name" : "Garage", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3894444", + "Longitude" : "5.3238889" + } + }, + "Published" : "2014-08-19T11:53:53Z", + "Title" : "Garage", + "Updated" : "2014-08-19T11:53:53Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3245493, 60.3975672 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=17471826344033985326", + "Location" : { + "Address" : "Bryggen, 5003 Bergen, Norway", + "Business Name" : "Bryggen", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3975672", + "Longitude" : "5.3245493" + } + }, + "Published" : "2014-08-19T11:53:18Z", + "Title" : "Bryggen", + "Updated" : "2014-08-19T11:53:18Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3185407, 60.4000024 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16084341591374905272", + "Location" : { + "Address" : "5003 Bergen, Norway", + "Business Name" : "Bergenhus Fortress", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.4000024", + "Longitude" : "5.3185407" + } + }, + "Published" : "2014-08-19T11:52:53Z", + "Title" : "Bergenhus Fortress", + "Updated" : "2014-08-19T11:52:53Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.3033710, 60.3996913 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5121286331307097323", + "Location" : { + "Address" : "Nordnesbakken 4, 5005 Bergen, Norway", + "Business Name" : "Akvariet i Bergen - Det Nasjonale Akvariet", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.3996913", + "Longitude" : "5.3033710" + } + }, + "Published" : "2014-08-19T11:52:46Z", + "Title" : "Bergen Aquarium", + "Updated" : "2014-08-19T11:52:46Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.2220173, 60.2918300 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4158912391514000", + "Location" : { + "Address" : "Flyplassvegen 555, 5258 Bergen, Norway", + "Business Name" : "Bergen Airport", + "Country Code" : "NO", + "Geo Coordinates" : { + "Latitude" : "60.2918300", + "Longitude" : "5.2220173" + } + }, + "Published" : "2014-08-19T11:52:11Z", + "Title" : "Bergen Airport, Flesland", + "Updated" : "2014-08-19T11:52:11Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 10.7522454, 59.9138688 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Oslo, Norway&ftid=0x46416e61f267f039:0x7e92605fd3231e9a", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "59.9138688", + "Longitude" : "10.7522454" + } + }, + "Published" : "2014-08-15T13:32:31Z", + "Title" : "Oslo, Norway", + "Updated" : "2014-08-15T13:32:31Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8674109, 52.3675716 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=6110363923902515693", + "Location" : { + "Address" : "Bellamystraat 2, 1053 BL Amsterdam, Netherlands", + "Business Name" : "Uit de keuken", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3675716", + "Longitude" : "4.8674109" + } + }, + "Published" : "2014-08-15T10:29:58Z", + "Title" : "Uit de keuken", + "Updated" : "2014-08-15T10:29:58Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9265621, 52.3719673 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=367500461576592939", + "Location" : { + "Address" : "Jacob Bontiusplaats 1, 1018 LL Amsterdam, Netherlands", + "Business Name" : "Amsterdam Roest", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3719673", + "Longitude" : "4.9265621" + } + }, + "Published" : "2014-08-15T08:33:38Z", + "Title" : "Roest", + "Updated" : "2014-08-15T08:33:38Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8980389, 52.3558500 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11148560321910305161", + "Location" : { + "Address" : "Eerste Sweelinckstraat 19F, 1073 CL Amsterdam, Netherlands", + "Business Name" : "Little Collins De Pijp", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3558500", + "Longitude" : "4.8980389" + } + }, + "Published" : "2014-08-08T17:05:20Z", + "Title" : "Little Collins", + "Updated" : "2014-08-08T17:05:20Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8914222, 52.3810038 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Buiten Brouwersstraat 6, 1013 GK Amsterdam&ftid=0x47c609c93ab3e5ab:0x3a8d381d5422dfe5", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3810038", + "Longitude" : "4.8914222" + } + }, + "Published" : "2014-08-06T15:34:05Z", + "Title" : "Buiten Brouwersstraat 6, 1013 GK Amsterdam", + "Updated" : "2014-08-06T15:34:05Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8006794, 52.3504529 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Jan van Zutphenstraat 429, 1069 Amsterdam&ftid=0x47c5e3d7eb9ea445:0xa05bcda0b27892f2", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3504529", + "Longitude" : "4.8006794" + } + }, + "Published" : "2014-08-06T09:44:20Z", + "Title" : "Jan van Zutphenstraat 429, 1069 Amsterdam", + "Updated" : "2014-08-06T09:44:20Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.0687670, 52.3641880 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12375670398181531018", + "Location" : { + "Address" : "1398 PX Muiden, Netherlands", + "Business Name" : "Muiden, Pampus", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3641880", + "Longitude" : "5.0687670" + } + }, + "Published" : "2014-08-02T14:03:49Z", + "Title" : "Muiden, Pampus", + "Updated" : "2014-08-02T14:03:49Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8728850, 52.3514487 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=6411008703739756570", + "Location" : { + "Address" : "Breitnerstraat 2, 1077 BL Amsterdam, Netherlands", + "Business Name" : "Toomler", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3514487", + "Longitude" : "4.8728850" + } + }, + "Published" : "2014-07-29T07:36:39Z", + "Title" : "Toomler", + "Updated" : "2014-07-29T07:36:39Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8746125, 52.3632554 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10466102939566420616", + "Location" : { + "Address" : "Eerste Constantijn Huygensstraat 82, 1054 BX Amsterdam, Netherlands", + "Business Name" : "Coffee lounge West", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3632554", + "Longitude" : "4.8746125" + } + }, + "Published" : "2014-07-28T07:32:59Z", + "Title" : "de koffie salon west", + "Updated" : "2014-07-28T07:32:59Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8209840, 52.3263834 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9633826358193456942", + "Location" : { + "Address" : "Koenenkade 56, 1081 KG Amsterdam, Netherlands", + "Business Name" : "Meerzicht Farm", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3263834", + "Longitude" : "4.8209840" + } + }, + "Published" : "2014-07-26T08:12:03Z", + "Title" : "Boerderij Meerzicht", + "Updated" : "2014-07-26T08:12:03Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8973833, 52.3655917 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=6729436983098920746", + "Location" : { + "Address" : "Utrechtsestraat 6, 1017 VN Amsterdam, Netherlands", + "Business Name" : "Restaurant GUTS", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3655917", + "Longitude" : "4.8973833" + } + }, + "Published" : "2014-07-16T16:29:33Z", + "Title" : "U6", + "Updated" : "2014-07-16T16:29:33Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8560163, 52.3713139 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Admiralengracht 223HS, 1056 DX Amsterdam&ftid=0x47c5e2727bf3bee5:0xa7b0ce58d18e1995", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3713139", + "Longitude" : "4.8560163" + } + }, + "Published" : "2014-07-15T07:08:09Z", + "Title" : "Admiralengracht 223HS, 1056 DX Amsterdam", + "Updated" : "2014-07-15T07:08:09Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8657070, 52.3601403 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Overtoom 301, 1054 HW Amsterdam&ftid=0x47c5e209cc3f3843:0xec9f62cdf185e073", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3601403", + "Longitude" : "4.8657070" + } + }, + "Published" : "2014-07-08T16:54:50Z", + "Title" : "Overtoom 301, 1054 HW Amsterdam", + "Updated" : "2014-07-08T16:54:50Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.1172013, 52.0880066 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12046261845149441447", + "Location" : { + "Address" : "Willemsplantsoen 12, 3511 LB Utrecht, Netherlands", + "Business Name" : "Van Ee & De Jonge", + "Geo Coordinates" : { + "Latitude" : "52.0880066", + "Longitude" : "5.1172013" + } + }, + "Published" : "2014-07-07T10:51:07Z", + "Title" : "Van Ee & De Jonge", + "Updated" : "2014-07-07T10:51:07Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8808862, 52.3798145 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1947840986122830973", + "Location" : { + "Address" : "Lindengracht 336, 1015 KN Amsterdam, Netherlands", + "Business Name" : "Caramba", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3798145", + "Longitude" : "4.8808862" + } + }, + "Published" : "2014-06-29T15:28:27Z", + "Title" : "Mexicaans Restaurant Caramba", + "Updated" : "2014-06-29T15:28:27Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8179540, 52.3701420 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2801656238182623048", + "Location" : { + "Address" : "President Allendelaan 3, 1064 GW Amsterdam, Netherlands", + "Business Name" : "Optisport Sloterparkbad", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3701420", + "Longitude" : "4.8179540" + } + }, + "Published" : "2014-06-28T16:39:41Z", + "Title" : "Sloterparkbad", + "Updated" : "2014-06-28T16:39:41Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8944444, 52.3505556 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9233792403917385855", + "Location" : { + "Address" : "Lutmastraat 49, 1072 JP Amsterdam, Netherlands", + "Business Name" : "Dopey's Elixer", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3505556", + "Longitude" : "4.8944444" + } + }, + "Published" : "2014-06-27T17:09:39Z", + "Title" : "Café Dopey's Elixer", + "Updated" : "2014-06-27T17:09:39Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9001936, 52.3490385 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=17891537702574181959", + "Location" : { + "Address" : "Pieter Lodewijk Takstraat 33/34, 1073 KJ Amsterdam, Netherlands", + "Business Name" : "Berlage Lyceum", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3490385", + "Longitude" : "4.9001936" + } + }, + "Published" : "2014-06-25T10:54:17Z", + "Title" : "Berlage Lyceum", + "Updated" : "2014-06-27T17:01:54Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 7.0074950, 51.4590155 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Friedrich-Ebert-Straße 18, 45127 Essen, Germany&ftid=0x47b8c2ba05e7ed6b:0xc95b757ec6de2f96", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.4590155", + "Longitude" : "7.0074950" + } + }, + "Published" : "2014-06-23T14:31:33Z", + "Title" : "Friedrich-Ebert-Straße 18-20, 45127 Essen, Germany", + "Updated" : "2014-06-23T14:31:33Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.7546099, 52.5049656 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Ruimtevaartlaan 80, 1562 BE Krommenie&ftid=0x47c5fbc16eb085c7:0x1a1d0d8d3527f1de", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.5049656", + "Longitude" : "4.7546099" + } + }, + "Published" : "2014-06-20T14:34:00Z", + "Title" : "Ruimtevaartlaan 80, 1562 BE Krommenie", + "Updated" : "2014-06-20T14:34:00Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.1191556, 52.0915244 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7020083969687188913", + "Location" : { + "Address" : "Oudegracht 167, 3511 AL Utrecht, Netherlands", + "Business Name" : "Utrecht Central Library", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.0915244", + "Longitude" : "5.1191556" + } + }, + "Published" : "2014-06-14T09:42:26Z", + "Title" : "Centrale Bibliotheek / Muziekafdeling", + "Updated" : "2014-06-14T09:42:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.7863489, 52.3782789 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=17406193961511837587", + "Location" : { + "Address" : "Bok de Korverweg 6, 1067 HR Amsterdam, Netherlands", + "Business Name" : "NRCA Stadium", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3782789", + "Longitude" : "4.7863489" + } + }, + "Published" : "2014-06-09T09:10:31Z", + "Title" : "Nationaal Rugby Centrum Amsterdam", + "Updated" : "2014-06-09T09:10:31Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.1196534, 52.0930856 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Slachtstraat 5, 3512 BC Utrecht&ftid=0x47c66f44fc684e47:0x80257154d1b6629b", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.0930856", + "Longitude" : "5.1196534" + } + }, + "Published" : "2014-05-31T10:35:53Z", + "Title" : "Slachtstraat 5, 3512 BC Utrecht", + "Updated" : "2014-05-31T10:35:53Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 6.9904486, 51.4305297 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=51.4305296305118,6.990448571741581", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.4305297", + "Longitude" : "6.9904486" + } + }, + "Published" : "2014-05-27T10:31:39Z", + "Title" : "51.4305296305118,6.990448571741581", + "Updated" : "2014-05-27T10:31:39Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 6.9881879, 51.4291819 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9318143583758923422", + "Location" : { + "Address" : "Virchowstraße 167a, 45147 Essen, Germany", + "Business Name" : "Botanischer Garten Grugapark", + "Country Code" : "DE", + "Geo Coordinates" : { + "Latitude" : "51.4291819", + "Longitude" : "6.9881879" + } + }, + "Published" : "2014-05-27T10:18:32Z", + "Title" : "Grugapark", + "Updated" : "2014-05-27T10:18:32Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8475788, 52.3913543 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Kabelweg 42, 1014 BB Amsterdam&ftid=0x47c5e28aeada995f:0xe47a3cf572d0c498", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3913543", + "Longitude" : "4.8475788" + } + }, + "Published" : "2014-05-17T14:42:55Z", + "Title" : "Kabelweg 42, 1014 BB Amsterdam", + "Updated" : "2014-05-17T14:42:55Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 6.7723107, 51.2243715 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=13530680961650959029", + "Location" : { + "Address" : "Berger Str. 19-21, 40213 Düsseldorf, Germany", + "Business Name" : "Libanon Restaurant", + "Country Code" : "DE", + "Geo Coordinates" : { + "Latitude" : "51.2243715", + "Longitude" : "6.7723107" + } + }, + "Published" : "2014-04-30T14:58:47Z", + "Title" : "Libanon Restaurant", + "Updated" : "2014-04-30T14:58:47Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 6.7756053, 51.2270591 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5080624576650882256", + "Location" : { + "Address" : "Mutter-Ey-Straße 1, 40213 Düsseldorf, Germany", + "Business Name" : "O’Reilly’s Irish Pub & Restaurant", + "Country Code" : "DE", + "Geo Coordinates" : { + "Latitude" : "51.2270591", + "Longitude" : "6.7756053" + } + }, + "Published" : "2014-04-30T14:56:33Z", + "Title" : "O'Reillys Irish Pub", + "Updated" : "2014-04-30T14:56:33Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 6.7830883, 51.1257194 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Delrath, 41542 Dormagen, Germany&ftid=0x47bf34e0b8df53c9:0xddeefe221af742fe", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.1257194", + "Longitude" : "6.7830883" + } + }, + "Published" : "2014-04-28T14:24:35Z", + "Title" : "Delrath, Dormagen, Germany", + "Updated" : "2014-04-28T14:24:35Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.1202130, 52.0921093 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5404128476515980557", + "Location" : { + "Address" : "Korte Minrebroederstraat 9, 3512 GG Utrecht, Netherlands", + "Business Name" : "Café de Zaak", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.0921093", + "Longitude" : "5.1202130" + } + }, + "Published" : "2014-04-19T11:55:09Z", + "Title" : "Café de Zaak", + "Updated" : "2014-04-19T11:55:09Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.1648638, 52.2743578 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Kapelstraat 17A, 1404 HV Bussum, The Netherlands&ftid=0x47c61361438196e7:0xd968983f50571e0d", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.2743578", + "Longitude" : "5.1648638" + } + }, + "Published" : "2014-04-19T11:37:06Z", + "Title" : "Kapelstraat 17A, 1404 HV Bussum, The Netherlands", + "Updated" : "2014-04-19T11:37:06Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8391990, 52.3712778 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Jan Tooropstraat 164, 1061 AE Amsterdam, The Netherlands&ftid=0x47c5e24056908b93:0x26e9829e2994121a", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3712778", + "Longitude" : "4.8391990" + } + }, + "Published" : "2014-04-16T18:02:26Z", + "Title" : "Jan Tooropstraat 164, 1061 AE Amsterdam, The Netherlands", + "Updated" : "2014-04-16T18:02:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8848910, 52.3652886 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Leidsestraat 74, 1017 PD Amsterdam, The Netherlands&ftid=0x47c609e9b11d4eef:0xc81ddbb714390cd1", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3652886", + "Longitude" : "4.8848910" + } + }, + "Published" : "2014-04-16T18:01:47Z", + "Title" : "Leidsestraat 74, 1017 PD Amsterdam, The Netherlands", + "Updated" : "2014-04-16T18:01:47Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8919587, 52.3861466 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5975984564598171895", + "Location" : { + "Address" : "Westerdok 720, 1013 BV Amsterdam, Netherlands", + "Business Name" : "Westerdokters", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3861466", + "Longitude" : "4.8919587" + } + }, + "Published" : "2014-04-16T12:14:43Z", + "Title" : "Medisch Kwartier de Oude Houthaven", + "Updated" : "2014-04-16T12:14:43Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 13.3347300, 52.5293900 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Waldenserstraße 9, 10551 Berlin, Germany&ftid=0x47a8510d4d2cd9c3:0x965484f12155e04c", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.5293900", + "Longitude" : "13.3347300" + } + }, + "Published" : "2014-04-13T11:54:07Z", + "Title" : "Waldenserstraße 9, 10551 Berlin, Germany", + "Updated" : "2014-04-13T11:54:07Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 7.0451496, 51.4878720 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=13897001539282094050", + "Location" : { + "Address" : "Gelsenkirchener Str. 181, 45309 Essen, Germany", + "Business Name" : "Red Dot Design Museum", + "Country Code" : "DE", + "Geo Coordinates" : { + "Latitude" : "51.4878720", + "Longitude" : "7.0451496" + } + }, + "Published" : "2014-04-08T06:07:21Z", + "Title" : "Red Dot Design Museum", + "Updated" : "2014-04-08T06:07:21Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 7.0136754, 51.4518138 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10971985025438394117", + "Location" : { + "Address" : "Am Hauptbahnhof 5, 45127 Essen, Germany", + "Business Name" : "Essen Hbf", + "Country Code" : "DE", + "Geo Coordinates" : { + "Latitude" : "51.4518138", + "Longitude" : "7.0136754" + } + }, + "Published" : "2014-04-07T06:44:54Z", + "Title" : "Essen Hbf", + "Updated" : "2014-04-07T06:44:54Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 6.9697866, 51.4488241 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Frohnhauser Straße 309, 45144 Essen, Germany&ftid=0x47b8c2f693548603:0xac606bdeab0d072b", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.4488241", + "Longitude" : "6.9697866" + } + }, + "Published" : "2014-04-07T06:44:14Z", + "Title" : "Frohnhauser Straße 309, 45144 Essen, Germany", + "Updated" : "2014-04-07T06:44:14Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9383104, 52.3118746 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Villa ArenA, s111 1, 1101 Amsterdam Zuidoost, The Netherlands&ftid=0x47c60b97fb20a3e1:0xc40a7aa7e93ea2ca", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3118746", + "Longitude" : "4.9383104" + } + }, + "Published" : "2014-04-05T11:20:53Z", + "Title" : "Villa ArenA, s111 1, 1101 Amsterdam Zuidoost, The Netherlands", + "Updated" : "2014-04-05T11:20:53Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9090960, 52.3570913 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11996801793944354996", + "Location" : { + "Address" : "Ruyschstraat 34-H, 1091 CC Amsterdam, Netherlands", + "Business Name" : "de Ruyschkamer", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3570913", + "Longitude" : "4.9090960" + } + }, + "Published" : "2014-03-14T18:00:45Z", + "Title" : "de Ruyschkamer", + "Updated" : "2014-03-14T18:00:45Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8590065, 52.3766997 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Bestevâerstraat, Amsterdam, The Netherlands&ftid=0x47c5e2703703c08b:0xe7148b5378843d01", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3766997", + "Longitude" : "4.8590065" + } + }, + "Published" : "2014-03-06T17:45:31Z", + "Title" : "Bestevâerstraat, Amsterdam, The Netherlands", + "Updated" : "2014-03-06T17:45:31Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.6668142, 51.0353269 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Driepaal 3, 3650 Dilsen-Stokkem, Belgium&ftid=0x47c0c5539ff9f46b:0x2f5e169c38f0436", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.0353269", + "Longitude" : "5.6668142" + } + }, + "Published" : "2014-03-02T20:34:07Z", + "Title" : "Driepaal 3, 3650 Dilsen-Stokkem, Belgium", + "Updated" : "2014-03-02T20:34:07Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8767456, 52.3334228 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Frieslandstraat 161, 1082 TN Amsterdam&ftid=0x47c60a10376035a9:0xdd4d4681b7492a48", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3334228", + "Longitude" : "4.8767456" + } + }, + "Published" : "2014-03-01T17:53:54Z", + "Title" : "Frieslandstraat 161, 1082 TN Amsterdam", + "Updated" : "2014-03-01T17:53:54Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 0.0495180, 51.5048437 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=537310032246282827", + "Location" : { + "Address" : "Hartmann Rd, Royal Docks, London E16 2PX, United Kingdom", + "Business Name" : "London City Airport", + "Country Code" : "GB", + "Geo Coordinates" : { + "Latitude" : "51.5048437", + "Longitude" : "0.0495180" + } + }, + "Published" : "2014-02-20T13:19:32Z", + "Title" : "London City Airport", + "Updated" : "2014-02-20T13:19:32Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.1612775, 51.4990055 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5648896766503341332", + "Location" : { + "Address" : "3b, 3 Hans Cres, Knightsbridge, London SW1X 0LS, United Kingdom", + "Business Name" : "Embassy of Ecuador", + "Country Code" : "GB", + "Geo Coordinates" : { + "Latitude" : "51.4990055", + "Longitude" : "-0.1612775" + } + }, + "Published" : "2014-02-20T12:35:47Z", + "Title" : "Embassy of Ecuador", + "Updated" : "2014-02-20T12:35:47Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.0814374, 51.5187516 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14231231250514968415", + "Location" : { + "Address" : "Liverpool St, London EC2M 7PY, United Kingdom", + "Business Name" : "Liverpool Street Station", + "Country Code" : "GB", + "Geo Coordinates" : { + "Latitude" : "51.5187516", + "Longitude" : "-0.0814374" + } + }, + "Published" : "2014-02-17T15:06:46Z", + "Title" : "Liverpool Street Station", + "Updated" : "2014-02-17T15:06:46Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.1763672, 51.4967150 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8914844151054820548", + "Location" : { + "Address" : "Cromwell Rd, South Kensington, London SW7 5BD, United Kingdom", + "Business Name" : "Natural History Museum", + "Country Code" : "GB", + "Geo Coordinates" : { + "Latitude" : "51.4967150", + "Longitude" : "-0.1763672" + } + }, + "Published" : "2014-02-17T13:35:30Z", + "Title" : "Natural History Museum", + "Updated" : "2014-02-17T13:35:30Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.1721800, 51.4966392 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11436620009305892127", + "Location" : { + "Address" : "Cromwell Rd, Knightsbridge, London SW7 2RL, United Kingdom", + "Business Name" : "Victoria and Albert Museum", + "Country Code" : "GB", + "Geo Coordinates" : { + "Latitude" : "51.4966392", + "Longitude" : "-0.1721800" + } + }, + "Published" : "2014-02-17T13:35:02Z", + "Title" : "Victoria and Albert Museum", + "Updated" : "2014-02-17T13:35:02Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.1269566, 51.5194133 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3436696222068785831", + "Location" : { + "Address" : "Great Russell St, Bloomsbury, London WC1B 3DG, United Kingdom", + "Business Name" : "The British Museum", + "Country Code" : "GB", + "Geo Coordinates" : { + "Latitude" : "51.5194133", + "Longitude" : "-0.1269566" + } + }, + "Published" : "2014-02-17T13:34:18Z", + "Title" : "The British Museum", + "Updated" : "2014-02-17T13:34:18Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.1143680, 51.5181950 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=283+High+Holborn,+London+Borough+of+Camden,+London+WC1V,+UK&ftid=0x48761b4bad7ce99d:0x7b8a3f1745467c74", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.5181950", + "Longitude" : "-0.1143680" + } + }, + "Published" : "2014-02-17T13:18:40Z", + "Title" : "283 High Holborn, London WC1V, UK", + "Updated" : "2014-02-17T13:18:40Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.0761100, 51.5126960 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=60+Vine+Street&ftid=0x4876034b7c2b2261:0xc1239102aa02fff2", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.5126960", + "Longitude" : "-0.0761100" + } + }, + "Published" : "2014-02-17T13:18:30Z", + "Title" : "60 Vine St, London EC3N 2DB, UK", + "Updated" : "2014-02-17T13:18:30Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.0846850, 51.5126950 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=9+Gracechurch+Street,+City+of+London,+London,+Greater+London+EC3V+0DR,+UK&ftid=0x48760352fbe39b51:0xa236b7a423e921c7", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.5126950", + "Longitude" : "-0.0846850" + } + }, + "Published" : "2014-02-17T13:14:32Z", + "Title" : "9 Gracechurch St, London EC3V 0DR, UK", + "Updated" : "2014-02-17T13:14:32Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8550461, 52.3530460 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=3e+Schinkelstraat+16HS&ftid=0x47c5e2048f7196e1:0xdb90b88be542abb1", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3530460", + "Longitude" : "4.8550461" + } + }, + "Published" : "2014-02-14T18:09:11Z", + "Title" : "Derde Schinkelstraat 16HS, 1075 TL Amsterdam, The Netherlands", + "Updated" : "2014-02-14T18:09:11Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8368710, 52.3627270 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=bauerstraat+233&ftid=0x47c5e23c36cc8c4f:0xb40922361d6a6b4e", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3627270", + "Longitude" : "4.8368710" + } + }, + "Published" : "2014-02-10T12:54:07Z", + "Title" : "Marius Bauerstraat 233, 1062 Amsterdam, The Netherlands", + "Updated" : "2014-02-10T12:54:07Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8991050, 52.3614060 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Utrechtsestraat+124,+De+Weteringschans,+Amsterdam,+The+Netherlands&ftid=0x47c609940914b77d:0xba7279c1341fc9ed", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3614060", + "Longitude" : "4.8991050" + } + }, + "Published" : "2014-01-18T11:05:42Z", + "Title" : "Utrechtsestraat 124, 1017 VT Amsterdam, The Netherlands", + "Updated" : "2014-01-18T11:05:42Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9134107, 52.3578291 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5296600109473596047", + "Location" : { + "Address" : "Camperstraat 48, 1091 AH Amsterdam, Netherlands", + "Business Name" : "Gastrobar Pica Pica", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3578291", + "Longitude" : "4.9134107" + } + }, + "Published" : "2014-01-05T16:39:01Z", + "Title" : "Gastrobar Pica Pica", + "Updated" : "2014-01-05T16:39:01Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8973110, 52.3753880 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Oudebrugsteeg+9,+De+Wallen,+Amsterdam&ftid=0x47c609b86e029ff9:0x46945ae33bfe5aba", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3753880", + "Longitude" : "4.8973110" + } + }, + "Published" : "2014-01-02T10:40:37Z", + "Title" : "Oudebrugsteeg 9, 1012 JN Amsterdam", + "Updated" : "2014-01-02T10:40:37Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9482620, 52.3400100 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Sikkelstraat+46,+Amsterdam,+The+Netherlands&ftid=0x47c60be173c4c3d7:0xafe0977a10686427", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3400100", + "Longitude" : "4.9482620" + } + }, + "Published" : "2013-12-31T15:19:41Z", + "Title" : "Sikkelstraat 46, 1097 ZG Amsterdam, The Netherlands", + "Updated" : "2013-12-31T15:19:41Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8669700, 52.3656630 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Kinkerstraat+185&ftid=0x47c5e20a8f7fec0f:0xc9cec617f8f1f31a", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3656630", + "Longitude" : "4.8669700" + } + }, + "Published" : "2013-12-28T09:19:35Z", + "Title" : "Kinkerstraat 185, 1053 DP Amsterdam, The Netherlands", + "Updated" : "2013-12-28T09:19:35Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.0972542, 51.5236152 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1785816149843884517", + "Location" : { + "Address" : "20 Old St, London EC1V 9AB, United Kingdom", + "Business Name" : "Speak First", + "Geo Coordinates" : { + "Latitude" : "51.5236152", + "Longitude" : "-0.0972542" + } + }, + "Published" : "2013-12-17T12:46:00Z", + "Title" : "Speak First", + "Updated" : "2013-12-17T12:46:00Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8411274, 52.3545559 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3778551600139043852", + "Location" : { + "Address" : "Kon. Wilhelminaplein 13, 1062 HH Amsterdam, Netherlands", + "Business Name" : "Wiseguys", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3545559", + "Longitude" : "4.8411274" + } + }, + "Published" : "2013-12-16T19:58:04Z", + "Title" : "Wise Guys Wholesale", + "Updated" : "2013-12-16T19:58:04Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8837038, 52.3634225 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15272729753322655507", + "Location" : { + "Address" : "Kleine-Gartmanplantsoen 15-19, 1017 RP Amsterdam, Netherlands", + "Business Name" : "Pathé City", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3634225", + "Longitude" : "4.8837038" + } + }, + "Published" : "2013-12-13T19:38:40Z", + "Title" : "Pathé City", + "Updated" : "2013-12-13T19:38:40Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8729917, 52.3623389 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12716402582566915478", + "Location" : { + "Address" : "Overtoom 160-162, 1054 HP Amsterdam, Netherlands", + "Business Name" : "Gollem's Proeflokaal", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3623389", + "Longitude" : "4.8729917" + } + }, + "Published" : "2013-12-13T18:25:16Z", + "Title" : "Gollem's Proeflokaal", + "Updated" : "2013-12-13T18:25:16Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.2063916, 51.5609906 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12420860598203725998", + "Location" : { + "Address" : "Bosweg 162, 5062 SH Oisterwijk, Netherlands", + "Business Name" : "Boshuis Venkraai", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "51.5609906", + "Longitude" : "5.2063916" + } + }, + "Published" : "2013-12-12T16:16:16Z", + "Title" : "Boshuis Venkraai", + "Updated" : "2013-12-12T16:16:16Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.2063180, 51.5609440 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Bosweg+162,+5062+SH+Oisterwijk,+nl&ftid=0x47c6c1d6b64ec485:0x66ec7c801a69f56a", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.5609440", + "Longitude" : "5.2063180" + } + }, + "Published" : "2013-12-12T16:16:05Z", + "Title" : "Bosweg 162, 5062 SH Oisterwijk, The Netherlands", + "Updated" : "2013-12-12T16:16:05Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.1528350, 52.3521690 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Achillesstraat+46,+Almere+Poort,+Almere,+The+Netherlands&ftid=0x47c6116be8f13e6b:0x1093d31a4d182a03", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3521690", + "Longitude" : "5.1528350" + } + }, + "Published" : "2013-12-07T17:25:31Z", + "Title" : "Achillesstraat, 1363 Almere, The Netherlands", + "Updated" : "2013-12-07T17:25:31Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8904449, 52.3809723 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16378393281233143927", + "Location" : { + "Address" : "Haarlemmerstraat 120, 1013 EX Amsterdam, Netherlands", + "Business Name" : "Art Hotel Dulac", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3809723", + "Longitude" : "4.8904449" + } + }, + "Published" : "2013-12-04T17:43:09Z", + "Title" : "Art Hotel Dulac", + "Updated" : "2013-12-04T17:43:09Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8035762, 52.3592930 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Osdorpplein 365, 1068 EV Amsterdam&ftid=0x47c5e3d02cdce30f:0x6ceb90a5eccc5ac2", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3592930", + "Longitude" : "4.8035762" + } + }, + "Published" : "2013-12-03T11:47:57Z", + "Title" : "Osdorpplein 365, 1068 EV Amsterdam", + "Updated" : "2013-12-03T11:47:57Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8846640, 52.3577330 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Honthorststraat+30-B,+Museumkwartier,+Amsterdam,+The+Netherlands&ftid=0x47c609ee1557a2a9:0x8660066074de2636", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3577330", + "Longitude" : "4.8846640" + } + }, + "Published" : "2013-11-26T11:11:07Z", + "Title" : "Honthorststraat 30-B, 1071 DG Amsterdam, The Netherlands", + "Updated" : "2013-11-26T11:11:07Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9047290, 52.3767800 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Oosterdokseiland+4,+Nieuwmarkt+en+Lastage,+Amsterdam,+The+Netherlands&ftid=0x47c609ba74d40843:0x5025974194aabbd5", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3767800", + "Longitude" : "4.9047290" + } + }, + "Published" : "2013-11-23T12:27:45Z", + "Title" : "Oosterdokskade 4, 1011 Amsterdam, The Netherlands", + "Updated" : "2013-11-23T12:27:45Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.1423999, 52.2919771 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1177847090493180986", + "Location" : { + "Address" : "Meerkade 2, 1412 AB Naarden, Netherlands", + "Business Name" : "Naardermeer", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.2919771", + "Longitude" : "5.1423999" + } + }, + "Published" : "2013-11-09T22:11:24Z", + "Title" : "Naardermeer (Natuurreservaat)", + "Updated" : "2013-11-09T22:11:24Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8557804, 52.3489158 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2614672360908148183", + "Location" : { + "Address" : "Loods 1, Havenstraat 3, 1075 PR Amsterdam, Netherlands", + "Business Name" : "Mevius", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3489158", + "Longitude" : "4.8557804" + } + }, + "Published" : "2013-11-09T08:08:39Z", + "Title" : "Mevius", + "Updated" : "2013-11-09T08:08:39Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8589122, 52.3644020 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=13017563723988785693", + "Location" : { + "Address" : "Postjesweg 1, 1057 DT Amsterdam, Netherlands", + "Business Name" : "Edel by Dennis", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3644020", + "Longitude" : "4.8589122" + } + }, + "Published" : "2013-11-07T17:09:55Z", + "Title" : "Restaurant Edel", + "Updated" : "2013-11-07T17:09:55Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.7494030, 52.2757730 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7154247479623065666", + "Location" : { + "Address" : "Boeing Avenue 271, 1119 PD Schiphol-Rijk, Netherlands", + "Business Name" : "Schuberg Philis", + "Geo Coordinates" : { + "Latitude" : "52.2757730", + "Longitude" : "4.7494030" + } + }, + "Published" : "2013-11-06T22:44:41Z", + "Title" : "Schuberg Philis", + "Updated" : "2013-11-06T22:44:41Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8532408, 52.3185010 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14617500885424957143", + "Location" : { + "Address" : "Jan Tooroplaan 46, 1182 AE Amstelveen, Netherlands", + "Business Name" : "Pinoké", + "Geo Coordinates" : { + "Latitude" : "52.3185010", + "Longitude" : "4.8532408" + } + }, + "Published" : "2013-11-01T23:44:03Z", + "Title" : "Pinoké", + "Updated" : "2013-11-01T23:44:03Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8505185, 52.3556683 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1755740917295235647", + "Location" : { + "Address" : "Haarlemmermeerstraat 75, 1058 JR Amsterdam, Netherlands", + "Business Name" : "Vivant vd Werf", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3556683", + "Longitude" : "4.8505185" + } + }, + "Published" : "2013-10-26T16:41:26Z", + "Title" : "Vivant vd Werf", + "Updated" : "2013-10-26T16:41:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8911493, 52.3521972 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7398116420003627577", + "Location" : { + "Address" : "Ferdinand Bolstraat 156, 1072 LS Amsterdam, Netherlands", + "Business Name" : "Dumpstore Amsterdam", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3521972", + "Longitude" : "4.8911493" + } + }, + "Published" : "2013-10-19T10:16:12Z", + "Title" : "Dumpstore Amsterdam", + "Updated" : "2013-10-19T10:16:12Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9060648, 52.3962126 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9387970222711494481", + "Location" : { + "Address" : "Papaverweg 43, 1032 KE Amsterdam, Netherlands", + "Business Name" : "Rien de Wolf VOF", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3962126", + "Longitude" : "4.9060648" + } + }, + "Published" : "2013-10-19T10:12:34Z", + "Title" : "Rien de Wolf vof", + "Updated" : "2013-10-19T10:12:34Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8860146, 52.3722711 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=125828681940863435", + "Location" : { + "Address" : "Hartenstraat 17, 1016 BZ Amsterdam, Netherlands", + "Business Name" : "Kagetsu Hartenstraat", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3722711", + "Longitude" : "4.8860146" + } + }, + "Published" : "2013-10-18T12:02:57Z", + "Title" : "Kagetsu", + "Updated" : "2013-10-18T12:02:57Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8030169, 52.3591303 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9960607172457957368", + "Location" : { + "Address" : "Osdorpplein 469, 1068 SZ Amsterdam, Netherlands", + "Business Name" : "XL AH Osdorpplein", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3591303", + "Longitude" : "4.8030169" + } + }, + "Published" : "2013-10-06T13:37:43Z", + "Title" : "Albert Heijn", + "Updated" : "2013-10-06T13:37:43Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8532770, 52.3573530 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Andreas+Schelfhoutstraat+38,+1058+HV+Oud-Zuid,+Amsterdam,+Noord-Holland,+The+Netherlands&ftid=0x47c5e205539d4ba1:0xca30280b47df7a47", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3573530", + "Longitude" : "4.8532770" + } + }, + "Published" : "2013-09-28T14:22:20Z", + "Title" : "Andreas Schelfhoutstraat 38, 1058 HV Amsterdam, The Netherlands", + "Updated" : "2013-09-28T14:22:20Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8714990, 52.3783660 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Donker+Curtiusstraat+45&ftid=0x47c609d7f5779bdb:0xbbd85e7cc6462561", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3783660", + "Longitude" : "4.8714990" + } + }, + "Published" : "2013-09-28T14:21:54Z", + "Title" : "Donker Curtiusstraat 45, 1051 MC Amsterdam, The Netherlands", + "Updated" : "2013-09-28T14:21:54Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9101320, 52.3461760 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Waverstraat+2+II&ftid=0x47c609873788b5d9:0x20ebfc4cf24b999c", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3461760", + "Longitude" : "4.9101320" + } + }, + "Published" : "2013-09-28T14:21:45Z", + "Title" : "Waverstraat 2, 1079 VH Amsterdam, The Netherlands", + "Updated" : "2013-09-28T14:21:45Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8944950, 52.3612250 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Noorderstraat+77&ftid=0x47c6099358365ab1:0x21313b71667afc2e", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3612250", + "Longitude" : "4.8944950" + } + }, + "Published" : "2013-09-28T14:21:24Z", + "Title" : "Noorderstraat 77, 1017 Amsterdam, The Netherlands", + "Updated" : "2013-09-28T14:21:24Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8533500, 52.3573530 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Andreas+Schelfhoutstraat+16&ftid=0x47c5e205538dfcd3:0x793cf9e3891a3170", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3573530", + "Longitude" : "4.8533500" + } + }, + "Published" : "2013-09-28T14:21:12Z", + "Title" : "Andreas Schelfhoutstraat 16, 1058 HV Amsterdam, The Netherlands", + "Updated" : "2013-09-28T14:21:12Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8583390, 52.3620590 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Tweede+Kostverlorenkade+159&ftid=0x47c5e20e90e7cf33:0xb0b2fb78c28d993b", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3620590", + "Longitude" : "4.8583390" + } + }, + "Published" : "2013-09-28T14:20:59Z", + "Title" : "Tweede Kostverlorenkade 159, 1053 Amsterdam, The Netherlands", + "Updated" : "2013-09-28T14:20:59Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8745340, 52.3794750 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Amaliastraat+10+III&ftid=0x47c609d76d3b25a1:0x3adc33224825b2f2", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3794750", + "Longitude" : "4.8745340" + } + }, + "Published" : "2013-09-28T14:20:31Z", + "Title" : "Amaliastraat 10 3, 1052 GN Amsterdam, The Netherlands", + "Updated" : "2013-09-28T14:20:31Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9109920, 52.3476000 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Amsteldijk+131,+1078+RT+Zuideramstel,+Amsterdam,+Noord-Holland,+The+Netherlands&ftid=0x47c60986d4cf51ad:0xb7b7427c77831de1", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3476000", + "Longitude" : "4.9109920" + } + }, + "Published" : "2013-09-28T14:19:59Z", + "Title" : "Amsteldijk 131, 1078 RT Amsterdam, The Netherlands", + "Updated" : "2013-09-28T14:19:59Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8636943, 52.3600823 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=6288342079268202379", + "Location" : { + "Address" : "Overtoom 426hs, 1054 JT Amsterdam, Netherlands", + "Business Name" : "Classics Furniture", + "Geo Coordinates" : { + "Latitude" : "52.3600823", + "Longitude" : "4.8636943" + } + }, + "Published" : "2013-08-27T06:58:38Z", + "Title" : "Classics Furniture", + "Updated" : "2013-08-27T06:58:38Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8005408, 52.3584938 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=13270760850968163615", + "Location" : { + "Address" : "Tussen Meer 64, 1068 GC Amsterdam, Netherlands", + "Business Name" : "De Linnenboom", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3584938", + "Longitude" : "4.8005408" + } + }, + "Published" : "2013-08-24T17:21:38Z", + "Title" : "De Linnenboom", + "Updated" : "2013-08-24T17:21:38Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8704554, 52.3616793 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14341588436732933290", + "Location" : { + "Address" : "Overtoom 232, 1054 HZ Amsterdam, Netherlands", + "Business Name" : "Bloemfontein Interieur", + "Geo Coordinates" : { + "Latitude" : "52.3616793", + "Longitude" : "4.8704554" + } + }, + "Published" : "2013-08-24T17:17:27Z", + "Title" : "Bloemfontein Interieur", + "Updated" : "2013-08-24T17:17:27Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8423032, 52.3421360 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11802771728377152975", + "Location" : { + "Address" : "Anthony Fokkerweg 45, 1059 CN Amsterdam, Netherlands", + "Business Name" : "Leen Bakker", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3421360", + "Longitude" : "4.8423032" + } + }, + "Published" : "2013-08-24T17:15:58Z", + "Title" : "Leen Bakker", + "Updated" : "2013-08-24T17:15:58Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8276950, 52.3546640 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Johan+Huizingalaan+481&ftid=0x47c5e225ea9b882b:0xad5bfc23f2f5f8a9", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3546640", + "Longitude" : "4.8276950" + } + }, + "Published" : "2013-08-24T17:15:22Z", + "Title" : "Johan Huizingalaan 481, 1066 TZ Amsterdam, The Netherlands", + "Updated" : "2013-08-24T17:15:22Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8686308, 52.3805366 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Tweede Keucheniusstraat 16, 1051 VR Amsterdam&ftid=0x47c5e2785d142501:0x3f0a292c9c646657", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3805366", + "Longitude" : "4.8686308" + } + }, + "Published" : "2013-08-21T16:39:10Z", + "Title" : "Tweede Keucheniusstraat 16, 1051 VR Amsterdam", + "Updated" : "2013-08-21T16:39:10Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8877377, 52.3552232 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Gerard Doustraat 12, 1072 Amsterdam&ftid=0x47c609f26ba00725:0x55a7210fbcc736be", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3552232", + "Longitude" : "4.8877377" + } + }, + "Published" : "2013-08-21T16:38:38Z", + "Title" : "Gerard Doustraat 12, Amsterdam", + "Updated" : "2013-08-21T16:38:38Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8311180, 52.3549260 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Theodorus+Majofskistraat+9-1&ftid=0x47c5e22469fe1323:0xecca441b0f95bb0d", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3549260", + "Longitude" : "4.8311180" + } + }, + "Published" : "2013-08-20T11:33:29Z", + "Title" : "Theodorus Majofskistraat 9, 1065 SN Amsterdam, The Netherlands", + "Updated" : "2013-08-20T11:33:29Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.5200457, 52.1650204 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3733637984148056867", + "Location" : { + "Address" : "Draadbaan 7, 2352 BM Leiderdorp, Netherlands", + "Business Name" : "Bo-rent Leiderdorp", + "Geo Coordinates" : { + "Latitude" : "52.1650204", + "Longitude" : "4.5200457" + } + }, + "Published" : "2013-08-19T19:34:15Z", + "Title" : "Borent", + "Updated" : "2013-08-19T19:34:15Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9457831, 52.3671061 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11755521528594037119", + "Location" : { + "Address" : "Zeeburgerpad 90-99, 1019 AD Amsterdam, Netherlands", + "Business Name" : "Juttersdok", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3671061", + "Longitude" : "4.9457831" + } + }, + "Published" : "2013-08-17T12:23:58Z", + "Title" : "Stichting Het Juttersdok Zeeburgerpad", + "Updated" : "2013-08-17T12:23:58Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9109649, 52.3944662 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3792543805159182954", + "Location" : { + "Address" : "Papaverweg 17-19, 1032 KE Amsterdam, Netherlands", + "Business Name" : "Juttersdok", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3944662", + "Longitude" : "4.9109649" + } + }, + "Published" : "2013-08-17T12:23:07Z", + "Title" : "Juttersdok", + "Updated" : "2013-08-17T12:23:07Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8570873, 52.3640393 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Stuyvesantstraat 54, 1058 Amsterdam&ftid=0x47c5e20dc9707051:0x92538fce54a83d1a", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3640393", + "Longitude" : "4.8570873" + } + }, + "Published" : "2013-08-16T16:40:00Z", + "Title" : "Stuyvesantstraat 54, 1058 Amsterdam", + "Updated" : "2013-08-16T16:40:00Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8692614, 52.3813579 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Van Beuningenplein 112, 1051 VZ Amsterdam&ftid=0x47c5e2788bef6941:0x89f84fae26606ac1", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3813579", + "Longitude" : "4.8692614" + } + }, + "Published" : "2013-08-13T17:03:56Z", + "Title" : "Van Beuningenplein 112, 1051 VZ Amsterdam", + "Updated" : "2013-08-13T17:03:56Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8690478, 52.3820437 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=De Kempenaerstraat 6, 1051 CN Amsterdam&ftid=0x47c5e278934de72d:0xc07813789348a945", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3820437", + "Longitude" : "4.8690478" + } + }, + "Published" : "2013-08-13T17:03:03Z", + "Title" : "De Kempenaerstraat 6, 1051 CN Amsterdam", + "Updated" : "2013-08-13T17:03:03Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9045436, 52.3532868 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Rustenburgerdwarsstraat 12, 1074 JJ Amsterdam&ftid=0x47c6098f9b58e6fb:0x1f2536c79c645d37", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3532868", + "Longitude" : "4.9045436" + } + }, + "Published" : "2013-08-13T17:02:16Z", + "Title" : "Rustenburgerdwarsstraat 12, 1074 JJ Amsterdam", + "Updated" : "2013-08-13T17:02:16Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8635240, 52.3634929 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Jan Pieter Heijestraat 107, 1053 GN Amsterdam&ftid=0x47c5e20bcef9e597:0xb286264a0dc4b0d3", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3634929", + "Longitude" : "4.8635240" + } + }, + "Published" : "2013-08-13T16:53:10Z", + "Title" : "Jan Pieter Heijestraat 107, 1053 GN Amsterdam", + "Updated" : "2013-08-13T16:53:10Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8610942, 52.3776494 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=De Rijpgracht 18, 1055 VS Amsterdam&ftid=0x47c5e270939592dd:0x1889a98ac31fc58d", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3776494", + "Longitude" : "4.8610942" + } + }, + "Published" : "2013-08-13T16:52:18Z", + "Title" : "De Rijpgracht 18, 1055 VS Amsterdam", + "Updated" : "2013-08-13T16:52:18Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4926143, 52.1605228 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7028101624584105730", + "Location" : { + "Address" : "Janvossensteeg 54-60, 2312 WD Leiden, Netherlands", + "Business Name" : "Henny's Rits Leiden", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.1605228", + "Longitude" : "4.4926143" + } + }, + "Published" : "2013-08-10T13:34:01Z", + "Title" : "Henny's Rits Leiden", + "Updated" : "2013-08-10T13:34:01Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8440340, 52.3617600 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Nachtwachtlaan+165,+1058+EE+Amsterdam+Nieuw-West,+Amsterdam,+Noord-Holland,+The+Netherlands&ftid=0x47c5e216f6773e29:0x17590c3fcc6d901e", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3617600", + "Longitude" : "4.8440340" + } + }, + "Published" : "2013-08-06T18:12:14Z", + "Title" : "Nachtwachtlaan 165, 1058 EE Amsterdam, The Netherlands", + "Updated" : "2013-08-06T18:12:14Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8746190, 52.3734490 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Hugo+de+Grootkade+6+4,+Frederik+Hendrikbuurt,+Amsterdam,+The+Netherlands&ftid=0x47c609d949d12cd1:0xd3c34d05121f2b24", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3734490", + "Longitude" : "4.8746190" + } + }, + "Published" : "2013-07-31T15:28:05Z", + "Title" : "Hugo de Grootkade 6, 1052 Amsterdam, The Netherlands", + "Updated" : "2013-07-31T15:28:05Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8738990, 52.3740200 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Van+Oldenbarneveldtstraat+93+hs&ftid=0x47c609d93e8fac09:0xa0b0f25b0d38c13b", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3740200", + "Longitude" : "4.8738990" + } + }, + "Published" : "2013-07-31T15:27:46Z", + "Title" : "Van Oldenbarneveldtstraat 93, 1052 JX Amsterdam, The Netherlands", + "Updated" : "2013-07-31T15:27:46Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 13.3479004, 52.5039118 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14031954347803294756", + "Location" : { + "Address" : "Kurfürstenstraße 76, 10787 Berlin, Germany", + "Business Name" : "Il Sorriso", + "Country Code" : "DE", + "Geo Coordinates" : { + "Latitude" : "52.5039118", + "Longitude" : "13.3479004" + } + }, + "Published" : "2013-07-28T17:03:07Z", + "Title" : "Il Sorriso", + "Updated" : "2013-07-28T17:03:07Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8752610, 52.3653090 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Alberdingk+Thijmstraat+5+-II&ftid=0x47c609e7269324f7:0x5997f2b6129be92", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3653090", + "Longitude" : "4.8752610" + } + }, + "Published" : "2013-07-23T17:17:47Z", + "Title" : "Alberdingk Thijmstraat 5, 1054 Amsterdam, The Netherlands", + "Updated" : "2013-07-23T17:17:47Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8716590, 52.3690980 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Potgieterstraat+61-II,+Amsterdam&ftid=0x47c609dfb5a21e63:0x18f719224a98023", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3690980", + "Longitude" : "4.8716590" + } + }, + "Published" : "2013-07-23T17:17:28Z", + "Title" : "Potgieterstraat 61, 1053 Amsterdam, The Netherlands", + "Updated" : "2013-07-23T17:17:28Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 13.2884374, 52.5588327 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8998006701212722003", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.5588327", + "Longitude" : "13.2884374" + } + }, + "Published" : "2013-07-22T10:02:32Z", + "Title" : "Berlin Tegel Airport", + "Updated" : "2013-07-22T10:02:32Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 13.5064497, 52.3733153 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3818798795523663040", + "Location" : { + "Address" : "12529 Schönefeld, Germany", + "Business Name" : "Berlin Schönefeld Airport", + "Country Code" : "DE", + "Geo Coordinates" : { + "Latitude" : "52.3733153", + "Longitude" : "13.5064497" + } + }, + "Published" : "2013-07-22T10:02:05Z", + "Title" : "Berlin Schönefeld Airport", + "Updated" : "2013-07-22T10:02:05Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8710832, 52.3711024 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=De Clercqstraat 40, 1052 Amsterdam&ftid=0x47c609df1048c865:0x49f2a8eb1f8669eb", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3711024", + "Longitude" : "4.8710832" + } + }, + "Published" : "2013-07-21T12:28:13Z", + "Title" : "De Clercqstraat 40, Amsterdam", + "Updated" : "2013-07-21T12:28:13Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9276977, 52.3626625 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Eerste van Swindenstraat, 1093 Amsterdam&ftid=0x47c60973787902ff:0x5fff4ca0c73bb27f", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3626625", + "Longitude" : "4.9276977" + } + }, + "Published" : "2013-07-21T12:26:34Z", + "Title" : "Eerste van Swindenstraat, Amsterdam", + "Updated" : "2013-07-21T12:26:34Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9335485, 52.3620601 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Tweede Atjehstraat 5, 1094 Amsterdam&ftid=0x47c6097278ac76db:0x7eeed69e29d2865b", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3620601", + "Longitude" : "4.9335485" + } + }, + "Published" : "2013-07-21T12:25:43Z", + "Title" : "Tweede Atjehstraat 5, Amsterdam", + "Updated" : "2013-07-21T12:25:43Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9143426, 52.3560214 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Iepenplein 74, 1091 JR Amsterdam&ftid=0x47c6099cc7a1915f:0xb9d1572a4315ca88", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3560214", + "Longitude" : "4.9143426" + } + }, + "Published" : "2013-07-21T12:25:19Z", + "Title" : "Iepenplein 74, 1091 JR Amsterdam", + "Updated" : "2013-07-21T12:25:19Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9211434, 52.3583942 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Eikenweg 34, 1092 CA Amsterdam&ftid=0x47c60976385a6577:0x7f8a0838a4d6f6e7", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3583942", + "Longitude" : "4.9211434" + } + }, + "Published" : "2013-07-21T12:24:58Z", + "Title" : "Eikenweg 34, 1092 CA Amsterdam", + "Updated" : "2013-07-21T12:24:58Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8961648, 52.3585835 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Nicolaas Witsenstraat 18-2, 1017 ZH Amsterdam&ftid=0x47c60992fe3006e7:0x1b64c3edfd73ff74", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3585835", + "Longitude" : "4.8961648" + } + }, + "Published" : "2013-07-21T12:23:24Z", + "Title" : "Nicolaas Witsenstraat 18-2, 1017 ZH Amsterdam", + "Updated" : "2013-07-21T12:23:24Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8839558, 52.3626190 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Weteringschans 9D, 1017 RV Amsterdam&ftid=0x47c609e9279f6c8b:0xeec2ba7649c14650", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3626190", + "Longitude" : "4.8839558" + } + }, + "Published" : "2013-07-21T12:22:38Z", + "Title" : "Weteringschans 9D, 1017 RV Amsterdam", + "Updated" : "2013-07-21T12:22:38Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9074630, 52.3578640 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Swammerdamstraat+30,+Weesperzijde,+Amsterdam,+Ipar+Holanda&ftid=0x47c6099a895062ab:0x671551c8dd748a7a", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3578640", + "Longitude" : "4.9074630" + } + }, + "Published" : "2013-07-21T12:11:58Z", + "Title" : "Swammerdamstraat 30", + "Updated" : "2013-07-21T12:11:58Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4846154, 52.1601430 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15047543183047566495", + "Location" : { + "Address" : "Noordeinde 55, 2311 CB Leiden, Netherlands", + "Business Name" : "North End", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.1601430", + "Longitude" : "4.4846154" + } + }, + "Published" : "2013-07-19T15:07:05Z", + "Title" : "North End B.V.", + "Updated" : "2013-07-19T15:07:05Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 13.3456340, 52.5070470 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5007443377575176317", + "Location" : { + "Address" : "Budapester Str. 2, 10787 Berlin, Germany", + "Business Name" : "InterContinental Berlin", + "Country Code" : "DE", + "Geo Coordinates" : { + "Latitude" : "52.5070470", + "Longitude" : "13.3456340" + } + }, + "Published" : "2013-07-17T11:58:21Z", + "Title" : "InterContinental Berlin", + "Updated" : "2013-07-17T11:58:21Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 13.3694600, 52.5250110 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Hauptbahnhof,+Berlin,+Germany&ftid=0x47a851bdfbc3e491:0xaca160722d3ed184", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.5250110", + "Longitude" : "13.3694600" + } + }, + "Published" : "2013-07-17T11:58:06Z", + "Title" : "Hauptbahnhof, 10557 Berlin, Germany (Hauptbahnhof)", + "Updated" : "2013-07-17T11:58:06Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.6884530, 52.7066110 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Oorsprongweg+1,+Schoorl&ftid=0x47cf5a17f56063bf:0x7dada84feb4b3d2", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.7066110", + "Longitude" : "4.6884530" + } + }, + "Published" : "2013-07-12T19:57:25Z", + "Title" : "Oorsprongweg 1, 1871 Schoorl, The Netherlands", + "Updated" : "2013-07-12T19:57:25Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8557000, 52.3611400 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Bonaireplein,+De+Baarsjes,+Amsterdam&ftid=0x47c5e20e47762a65:0x23eed5bc2de32939", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3611400", + "Longitude" : "4.8557000" + } + }, + "Published" : "2013-07-07T12:49:22Z", + "Title" : "Bonaireplein", + "Updated" : "2013-07-07T12:49:22Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8766059, 52.3805710 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Lodewijk+Tripstraat+22-II&ftid=0x47c609d7297ab7cb:0x8799503464f69f47", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3805710", + "Longitude" : "4.8766059" + } + }, + "Published" : "2013-07-07T12:48:51Z", + "Title" : "Lodewijk Tripstraat 22", + "Updated" : "2013-07-07T12:48:51Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9141960, 52.3572120 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Eerste+Oosterparkstraat+156,+Oosterparkbuurt,+Amsterdam,+The+Netherlands,+Europe&ftid=0x47c6099cf3d7542f:0x5a60500b26eb1af3", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3572120", + "Longitude" : "4.9141960" + } + }, + "Published" : "2013-07-05T16:24:17Z", + "Title" : "Eerste Oosterparkstraat 156, 1091 Amsterdam, The Netherlands", + "Updated" : "2013-07-05T16:24:17Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9154130, 52.3699120 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Matrozenhof+63,+1018+ZP+Centrum,+Amsterdam,+Noord-Holland,+The+Netherlands&ftid=0x47c609a15e0d2367:0x75c2d6279c7e4933", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3699120", + "Longitude" : "4.9154130" + } + }, + "Published" : "2013-07-05T16:23:57Z", + "Title" : "Matrozenhof 63, 1018 ZP Amsterdam, The Netherlands", + "Updated" : "2013-07-05T16:23:57Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8646980, 52.3717940 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Geuzenstraat+39+III&ftid=0x47c5e27449110363:0x9d1873bcfb43a15c", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3717940", + "Longitude" : "4.8646980" + } + }, + "Published" : "2013-07-05T16:23:19Z", + "Title" : "Geuzenstraat 39, 1056 Amsterdam, The Netherlands", + "Updated" : "2013-07-05T16:23:19Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8556770, 52.3612840 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Bonaireplein+12,+1058+De+Baarsjes,+Amsterdam,+Noord-Holland,+The+Netherlands&ftid=0x47c5e20e468ad5f3:0x4fd6d9e696f21b3b", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3612840", + "Longitude" : "4.8556770" + } + }, + "Published" : "2013-07-05T16:22:16Z", + "Title" : "Bonaireplein 12, 1058 Amsterdam, The Netherlands", + "Updated" : "2013-07-05T16:22:16Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.7942360, 52.3562720 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Clauskindereweg+17&ftid=0x47c5e3db9302816b:0xad21734d12a95536", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3562720", + "Longitude" : "4.7942360" + } + }, + "Published" : "2013-07-04T17:53:13Z", + "Title" : "Clauskindereweg 17, 1069 HN Amsterdam, The Netherlands", + "Updated" : "2013-07-04T17:53:13Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9107440, 52.3548920 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Burmandwarsstraat+33&ftid=0x47c60984b62f6ebb:0xcc3cda2adae4ba25", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3548920", + "Longitude" : "4.9107440" + } + }, + "Published" : "2013-07-01T18:35:10Z", + "Title" : "Burmandwarsstraat 33", + "Updated" : "2013-07-01T18:35:10Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8501750, 52.3607920 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Postjeskade+171-II&ftid=0x47c5e21100dc0dab:0x9d80d3100e10b706", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3607920", + "Longitude" : "4.8501750" + } + }, + "Published" : "2013-06-29T15:45:32Z", + "Title" : "Postjeskade 171", + "Updated" : "2013-06-29T15:45:32Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8636910, 52.3643540 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Borgerstraat+149,+Van+Lennepbuurt,+Amsterdam&ftid=0x47c5e20bb13affed:0xb8f90f2c93e86f06", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3643540", + "Longitude" : "4.8636910" + } + }, + "Published" : "2013-06-29T15:44:48Z", + "Title" : "Borgerstraat 149", + "Updated" : "2013-06-29T15:44:48Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8659900, 52.3686140 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Schimmelstraat+24,+Kinkerbuurt,+Amsterdam,+Ipar+Holanda&ftid=0x47c5e2753a8d98a7:0x9aff878d6f7de13", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3686140", + "Longitude" : "4.8659900" + } + }, + "Published" : "2013-06-29T15:44:22Z", + "Title" : "Schimmelstraat 24", + "Updated" : "2013-06-29T15:44:22Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8800120, 52.3533550 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Ruysdaelstraat+75,+Museumkwartier,+Amsterdam&ftid=0x47c609f08ddac153:0xe45bc7290ad32d84", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3533550", + "Longitude" : "4.8800120" + } + }, + "Published" : "2013-06-29T15:43:49Z", + "Title" : "Ruysdaelstraat 75", + "Updated" : "2013-06-29T15:43:49Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8925020, 52.3522400 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Van+Ostadestraat+138,+Nieuwe+Pijp,+Amsterdam&ftid=0x47c6098cc68e58cd:0x741f699ccb07e568", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3522400", + "Longitude" : "4.8925020" + } + }, + "Published" : "2013-06-22T11:05:22Z", + "Title" : "Van Ostadestraat 138", + "Updated" : "2013-06-22T11:05:22Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9207460, 52.3528560 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Schalk+Burgerstraat+70,+Amsterdam,+The+Netherlands&ftid=0x47c609785b5e1b67:0xe0659bb88e81d12b", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3528560", + "Longitude" : "4.9207460" + } + }, + "Published" : "2013-06-18T18:54:27Z", + "Title" : "Schalk Burgerstraat 70, 1091 LM Amsterdam, The Netherlands", + "Updated" : "2013-06-18T18:54:27Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9186020, 52.3550420 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Tugelaweg+76+A-II,+Amsterdam,+The+Netherlands&ftid=0x47c6099d55034c93:0xc418512fcf1f6486", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3550420", + "Longitude" : "4.9186020" + } + }, + "Published" : "2013-06-18T18:54:13Z", + "Title" : "Tugelaweg 76, 1091 Amsterdam, The Netherlands", + "Updated" : "2013-06-18T18:54:13Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9205630, 52.3549230 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Retiefstraat+101B,+Amsterdam,+The+Netherlands&ftid=0x47c609781fddcffd:0x6a885c5893513600", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3549230", + "Longitude" : "4.9205630" + } + }, + "Published" : "2013-06-18T18:53:09Z", + "Title" : "Retiefstraat 101B, 1092 XB Amsterdam, The Netherlands", + "Updated" : "2013-06-18T18:53:09Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9021442, 52.3778626 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1984547236003823620", + "Location" : { + "Address" : "Stationsplein 11, 1012 AB Amsterdam, Netherlands", + "Business Name" : "Réseaux IP Européens Network Coordination Centre (RIPE NCC)", + "Geo Coordinates" : { + "Latitude" : "52.3778626", + "Longitude" : "4.9021442" + } + }, + "Published" : "2013-05-30T08:30:35Z", + "Title" : "Réseaux IP Européens Network Coordination Centre (RIPE NCC)", + "Updated" : "2013-05-30T08:30:35Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4825461, 52.1619331 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1770312194812823241", + "Location" : { + "Address" : "Morsstraat 60, 2312 BN Leiden, Netherlands", + "Business Name" : "Restaurant Delasoul", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.1619331", + "Longitude" : "4.4825461" + } + }, + "Published" : "2013-05-25T13:22:29Z", + "Title" : "De la Soul - Food Drinks & Music", + "Updated" : "2013-05-25T13:22:29Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4837469, 52.1568494 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9022845057473200063", + "Location" : { + "Address" : "Rapenburg 73, 2311 GJ Leiden, Netherlands", + "Business Name" : "Hortus Botanicus Leiden", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.1568494", + "Longitude" : "4.4837469" + } + }, + "Published" : "2013-05-25T13:21:22Z", + "Title" : "Hortus Botanicus", + "Updated" : "2013-05-25T13:21:22Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4525580, 52.1708100 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Willem+Einthovenstraat+1&ftid=0x47c5c717ff36d8b1:0x447e52ea71cdbd67", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.1708100", + "Longitude" : "4.4525580" + } + }, + "Published" : "2013-05-23T16:12:42Z", + "Title" : "Willem Einthovenstraat, Rijnfront, 2342 Oegstgeest, The Netherlands", + "Updated" : "2013-05-23T16:12:42Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4641540, 52.1614760 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Cruquiuslaan+132,+Leiden,+The+Netherlands&ftid=0x47c5c71d60471fa1:0xfec7ef7f065a8a60", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.1614760", + "Longitude" : "4.4641540" + } + }, + "Published" : "2013-03-10T10:06:10Z", + "Title" : "Cruquiuslaan 132, 2332 EA Leiden, The Netherlands", + "Updated" : "2013-03-10T10:06:10Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.5061760, 52.1663720 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Bernhardkade+40&ftid=0x47c5c699b527cc77:0x60efa730b89fefe1", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.1663720", + "Longitude" : "4.5061760" + } + }, + "Published" : "2013-01-04T23:47:12Z", + "Title" : "Bernhardkade 40, 2316 RX Leiden, The Netherlands", + "Updated" : "2013-01-04T23:47:12Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8907201, 52.3815159 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8008701039764337200", + "Location" : { + "Address" : "Haarlemmerstraat 124-126, 1013 EX Amsterdam, Netherlands", + "Business Name" : "Posthoornkerk", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3815159", + "Longitude" : "4.8907201" + } + }, + "Published" : "2012-11-30T12:59:51Z", + "Title" : "Posthoornkerk", + "Updated" : "2012-11-30T12:59:51Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.5096074, 52.1601517 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.160152,4.509607", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.1601517", + "Longitude" : "4.5096074" + } + }, + "Published" : "2012-10-27T10:28:24Z", + "Title" : "52.160152,4.509607", + "Updated" : "2012-10-27T10:28:24Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9379535, 52.3030946 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16423644313747042166", + "Location" : { + "Address" : "Kuiperbergweg 13, 1101 AE Amsterdam, Netherlands", + "Business Name" : "TelecityGroup Netherlands B.V. AMS 2", + "Geo Coordinates" : { + "Latitude" : "52.3030946", + "Longitude" : "4.9379535" + } + }, + "Published" : "2012-10-23T10:33:36Z", + "Title" : "TelecityGroup Netherlands B.V.", + "Updated" : "2012-10-23T10:33:36Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.5169661, 52.1636027 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8903845128011010471", + "Location" : { + "Address" : "Vlasbaan 17, 2352 AH Leiderdorp, Netherlands", + "Business Name" : "KARWEI", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.1636027", + "Longitude" : "4.5169661" + } + }, + "Published" : "2012-10-06T14:18:49Z", + "Title" : "Karwei Leiderdorp", + "Updated" : "2012-10-06T14:18:49Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4895122, 52.1590651 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4479945092443066630", + "Location" : { + "Address" : "Breestraat 74, 2311 CS Leiden, Netherlands", + "Business Name" : "Huisarts A.M. van den Braken", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.1590651", + "Longitude" : "4.4895122" + } + }, + "Published" : "2012-09-28T12:53:31Z", + "Title" : "Huisarts A.M. van den Braken", + "Updated" : "2012-09-28T12:53:31Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4895220, 52.1590690 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=5032623567202352753", + "Location" : { + "Address" : "Breestraat 74, 2311 CS Leiden, Netherlands", + "Business Name" : "Central Pharmacy Leiden", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.1590690", + "Longitude" : "4.4895220" + } + }, + "Published" : "2012-09-28T10:44:02Z", + "Title" : "Centraal Apotheek Leiden", + "Updated" : "2012-09-28T10:44:02Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.1125065, 51.5128021 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=681126995147446805", + "Location" : { + "Address" : "20 Devereux Ct, Temple, London WC2R 3JJ, United Kingdom", + "Business Name" : "The Devereux", + "Country Code" : "GB", + "Geo Coordinates" : { + "Latitude" : "51.5128021", + "Longitude" : "-0.1125065" + } + }, + "Published" : "2012-09-17T15:15:23Z", + "Title" : "The Devereux", + "Updated" : "2012-09-17T15:15:23Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -0.0906700, 51.5131000 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=51.5133,-0.090927", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "51.5131000", + "Longitude" : "-0.0906700" + } + }, + "Published" : "2012-09-17T15:13:25Z", + "Title" : "Queen Victoria St", + "Updated" : "2012-09-17T15:13:25Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8062170, 52.3977930 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Hornweg+64,+1043+Westpoort,+Amsterdam,+Noord-Holland,+The+Netherlands&ftid=0x47c5e30f5acd5a0b:0x1fca28260345c531", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3977930", + "Longitude" : "4.8062170" + } + }, + "Published" : "2012-09-08T15:36:01Z", + "Title" : "Hornweg 64", + "Updated" : "2012-09-08T15:36:01Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9360243, 52.3650919 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15999116700313180017", + "Location" : { + "Address" : "Timorplein 62, 1094 CC Amsterdam, Netherlands", + "Business Name" : "Studio/K", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3650919", + "Longitude" : "4.9360243" + } + }, + "Published" : "2012-09-06T12:03:01Z", + "Title" : "Studio/K", + "Updated" : "2012-09-06T12:03:01Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8822110, 52.3647480 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8387531172291828889", + "Location" : { + "Address" : "Korte Leidsedwarsstraat 18, 1017 RC Amsterdam, Netherlands", + "Business Name" : "Jimmy Woo", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3647480", + "Longitude" : "4.8822110" + } + }, + "Published" : "2012-08-04T20:45:17Z", + "Title" : "Jimmy Woo", + "Updated" : "2012-08-04T20:45:17Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8844709, 52.3635130 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1271380068405583281", + "Location" : { + "Address" : "Korte Leidsedwarsstraat 115, 1017 PX Amsterdam, Netherlands", + "Business Name" : "Jazz Café Alto", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3635130", + "Longitude" : "4.8844709" + } + }, + "Published" : "2012-08-04T20:45:07Z", + "Title" : "Café Alto", + "Updated" : "2012-08-04T20:45:07Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4912440, 52.1669610 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Hansenstraat+57,+2316+Leiden,+Zuid-Holland,+The+Netherlands&ftid=0x47c5c6eb2aa21253:0x40dee6749953f1b4", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.1669610", + "Longitude" : "4.4912440" + } + }, + "Published" : "2012-08-03T14:42:05Z", + "Title" : "Hansenstraat 57", + "Updated" : "2012-08-03T14:42:05Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.5015931, 52.1765220 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Saffraantuin,+Leiden&ftid=0x47c5c6bbb9de6f69:0x67dc4f4da813c25c", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.1765220", + "Longitude" : "4.5015931" + } + }, + "Published" : "2012-07-17T15:19:06Z", + "Title" : "Saffraantuin", + "Updated" : "2012-07-17T15:19:06Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.8626740, 51.8480020 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4772521043654557279", + "Location" : { + "Address" : "Sint Stevenskerkhof 62, 6511 VZ Nijmegen, Netherlands", + "Business Name" : "Saint Stephen's Church, Nijmegen", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "51.8480020", + "Longitude" : "5.8626740" + } + }, + "Published" : "2012-07-16T15:55:43Z", + "Title" : "Stevenskerk", + "Updated" : "2012-07-16T15:55:43Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8800050, 52.3706710 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Hazenstraat+19&ftid=0x47c609dce899cff7:0xe61e280963b15e03", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3706710", + "Longitude" : "4.8800050" + } + }, + "Published" : "2012-07-06T20:41:30Z", + "Title" : "Hazenstraat 19, 1016 Binnenstad", + "Updated" : "2012-07-06T20:41:30Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8505839, 52.3190700 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Nieuwe+Kalfjeslaan+21B&ftid=0x47c5e1dbbd3e77f7:0x40a6c793c970fa10", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3190700", + "Longitude" : "4.8505839" + } + }, + "Published" : "2012-06-21T19:20:44Z", + "Title" : "Nieuwe Kalfjeslaan 21B, 1182 Amstelveen", + "Updated" : "2012-06-21T19:20:44Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4262560, 52.1800240 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.179415,4.427458&ftid=0x47c5c75ad95f4051:0x425a2a6ff0ade258", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.1800240", + "Longitude" : "4.4262560" + } + }, + "Published" : "2012-06-17T19:09:48Z", + "Title" : "Ingenieur G. Tjalmaweg, Katwijk, The Netherlands", + "Updated" : "2012-06-17T19:09:48Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 13.3493691, 38.1243918 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1196960526128454668", + "Location" : { + "Address" : "Via Filippo G. B. Basile, 3, 90141 Palermo PA, Italy", + "Business Name" : "L'Espace di G.B. Zappulla", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "38.1243918", + "Longitude" : "13.3493691" + } + }, + "Published" : "2012-05-12T19:13:21Z", + "Title" : "Espace(L')", + "Updated" : "2012-05-12T19:13:21Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 13.3756205, 38.1134521 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1083964715368920288", + "Location" : { + "Address" : "Via Lincoln, 90123 Palermo PA, Italy", + "Business Name" : "Villa Giulia", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "38.1134521", + "Longitude" : "13.3756205" + } + }, + "Published" : "2012-05-12T18:47:27Z", + "Title" : "Villa Giulia", + "Updated" : "2012-05-12T18:47:27Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 13.3620133, 38.1200795 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=9755162391201715536", + "Location" : { + "Address" : "Via Roma, 325, 90100 Palermo PA, Italy", + "Business Name" : "B&B Ai Tre Compari", + "Country Code" : "IT", + "Geo Coordinates" : { + "Latitude" : "38.1200795", + "Longitude" : "13.3620133" + } + }, + "Published" : "2012-05-09T20:35:56Z", + "Title" : "B&B Ai Tre Compari", + "Updated" : "2012-05-09T20:35:56Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 13.3677100, 38.1097400 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=38.109740,13.367710", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "38.1097400", + "Longitude" : "13.3677100" + } + }, + "Published" : "2012-05-09T20:34:39Z", + "Title" : "38.109740,13.367710", + "Updated" : "2012-05-09T20:34:39Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9135890, 52.3606470 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Sajetplein+26,+Oosterparkbuurt,+Watergraafsmeer,+Nederland&ftid=0x47c6099eaa8ae35f:0x66b925b6bf897fcf", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3606470", + "Longitude" : "4.9135890" + } + }, + "Published" : "2012-05-04T17:11:48Z", + "Title" : "Sajetplein 26, 1091 Watergraafsmeer, The Netherlands", + "Updated" : "2012-05-04T17:11:48Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 16.5879280, 31.2048360 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=sirte,+libya&ftid=0x13987ee0fae8d075:0x77a5aaf4c1356d56", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "31.2048360", + "Longitude" : "16.5879280" + } + }, + "Published" : "2012-04-22T14:18:01Z", + "Title" : "Sirte, Libya", + "Updated" : "2012-04-22T14:18:01Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 14.0220600, 38.0394690 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Cefalu,+Italy&ftid=0x13173a19e0e35c05:0x40b042967b83120", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "38.0394690", + "Longitude" : "14.0220600" + } + }, + "Published" : "2012-04-17T09:07:26Z", + "Title" : "90015 Cefalu Palermo, Italy", + "Updated" : "2012-04-17T09:07:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 13.3015960, 37.8124650 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Corleone,+Italy&ftid=0x131a1b70e1048199:0x40b042967b83190", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "37.8124650", + "Longitude" : "13.3015960" + } + }, + "Published" : "2012-04-17T09:06:55Z", + "Title" : "90034 Corleone Palermo, Italy", + "Updated" : "2012-04-17T09:06:55Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4818540, 52.1568020 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.156802,4.481854&ftid=0x47c5c6f19fd0a37f:0x2af38a0f4a611781", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.1568020", + "Longitude" : "4.4818540" + } + }, + "Published" : "2012-04-14T16:29:36Z", + "Title" : "P.N. van Eyckhof", + "Updated" : "2012-04-14T16:29:36Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8960406, 52.3654133 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7136763053943125742", + "Location" : { + "Address" : "Thorbeckeplein 5, 1017 CS Amsterdam, Netherlands", + "Business Name" : "De Heeren Van Aemstel", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3654133", + "Longitude" : "4.8960406" + } + }, + "Published" : "2012-03-24T17:00:24Z", + "Title" : "De Heeren Van Aemstel", + "Updated" : "2012-03-24T17:00:24Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.7827780, 52.2152780 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Nieuw-Milligen,+Apeldoorn,+Gelderland,+The+Netherlands&ftid=0x47c7ca0a65d44c7b:0xe89e56bb61048ef9", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.2152780", + "Longitude" : "5.7827780" + } + }, + "Published" : "2012-03-11T13:44:39Z", + "Title" : "Nieuw-Milligen, The Netherlands", + "Updated" : "2012-03-11T13:44:39Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9030490, 52.3686400 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Jodenbreestraat+158,+Amsterdam,+The+Netherlands&ftid=0x47c609bdc98e3b53:0x87588a14b806972b", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3686400", + "Longitude" : "4.9030490" + } + }, + "Published" : "2012-03-08T11:07:14Z", + "Title" : "Jodenbreestraat 158, 1011 Binnenstad, The Netherlands", + "Updated" : "2012-03-08T11:07:14Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9024270, 52.3690650 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Jodenbreestraat,+1011+Amsterdam,+The+Netherlands&ftid=0x47c609bdccdca71b:0xd1f3d48348defd13", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3690650", + "Longitude" : "4.9024270" + } + }, + "Published" : "2012-03-08T11:06:37Z", + "Title" : "Jodenbreestraat, 1011 Amsterdam, The Netherlands", + "Updated" : "2012-03-08T11:06:37Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4753100, 52.1550660 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Staringkade+52,+Leiden,++2321+AX+NL&ftid=0x47c5c6fa1058cd2b:0xac296a68631a6d2a", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.1550660", + "Longitude" : "4.4753100" + } + }, + "Published" : "2012-03-07T22:19:49Z", + "Title" : "Staringkade 52, 2321 Leiden, The Netherlands", + "Updated" : "2012-03-07T22:19:49Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 11.5834522, 48.1298707 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8813894495079536210", + "Location" : { + "Address" : "Museumsinsel 1, 80538 München, Germany", + "Business Name" : "Deutsches Museum", + "Country Code" : "DE", + "Geo Coordinates" : { + "Latitude" : "48.1298707", + "Longitude" : "11.5834522" + } + }, + "Published" : "2012-03-05T08:24:06Z", + "Title" : "Deutsches Museum", + "Updated" : "2012-03-05T08:24:06Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 11.5804833, 48.1475056 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10374423104460062406", + "Location" : { + "Address" : "Ludwigstraße 16, 80539 München, Germany", + "Business Name" : "Bavarian state library", + "Country Code" : "DE", + "Geo Coordinates" : { + "Latitude" : "48.1475056", + "Longitude" : "11.5804833" + } + }, + "Published" : "2012-03-05T07:46:20Z", + "Title" : "Bayerische Staatsbibliothek", + "Updated" : "2012-03-05T07:46:20Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 11.5434735, 48.1484188 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7264818024544737971", + "Location" : { + "Address" : "Elvirastraße 18A, 80636 München, Germany", + "Business Name" : "CHOPAN - Afghanische Spezialitäten", + "Country Code" : "DE", + "Geo Coordinates" : { + "Latitude" : "48.1484188", + "Longitude" : "11.5434735" + } + }, + "Published" : "2012-03-03T19:14:32Z", + "Title" : "Chopan", + "Updated" : "2012-03-03T19:14:32Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 11.3963431, 47.2566475 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=3340328675716026314", + "Location" : { + "Address" : "Tschamlerstraße, Südring 7, 6020 Innsbruck, Austria", + "Business Name" : "CINEPLEXX", + "Country Code" : "AT", + "Geo Coordinates" : { + "Latitude" : "47.2566475", + "Longitude" : "11.3963431" + } + }, + "Published" : "2012-03-02T17:57:41Z", + "Title" : "Cineplexx Innsbruck", + "Updated" : "2012-03-02T17:57:41Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 11.3950316, 47.2635807 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14986524897176658042", + "Location" : { + "Address" : "53, Maria-Theresien-Straße 51/1, 6020 Innsbruck, Austria", + "Business Name" : "Theresienbräu", + "Country Code" : "AT", + "Geo Coordinates" : { + "Latitude" : "47.2635807", + "Longitude" : "11.3950316" + } + }, + "Published" : "2012-03-02T14:02:46Z", + "Title" : "Theresienbräu", + "Updated" : "2012-03-02T14:02:46Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 11.3950196, 47.2703500 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4077485291321674004", + "Location" : { + "Address" : "Rennweg 3, 6020 Innsbruck, Austria", + "Business Name" : "Nordkette Cable Car", + "Geo Coordinates" : { + "Latitude" : "47.2703500", + "Longitude" : "11.3950196" + } + }, + "Published" : "2012-03-02T10:28:10Z", + "Title" : "Hungerburgbahn/Nordkettenbahn", + "Updated" : "2012-03-02T10:28:10Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 11.5613300, 48.1714600 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Winzererstr.+182&ftid=0x479e767f4b140ca1:0xebcd861e366dcb93", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "48.1714600", + "Longitude" : "11.5613300" + } + }, + "Published" : "2012-02-29T07:15:45Z", + "Title" : "Winzererstraße 182, 80797 München, Germany", + "Updated" : "2012-02-29T07:15:45Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9923230, 52.3008890 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Cornelis+Aarnoutsstraat+21&ftid=0x47c60c5fa9e3aa83:0x247185475c63c3", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3008890", + "Longitude" : "4.9923230" + } + }, + "Published" : "2012-02-24T17:19:38Z", + "Title" : "Cornelis Aarnoutsstraat 21, 1106 Zuidoost, The Netherlands", + "Updated" : "2012-02-24T17:19:38Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9165903, 52.3608512 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7159418647994591782", + "Location" : { + "Address" : "'s-Gravesandestraat 55, 1092 AA Amsterdam, Netherlands", + "Business Name" : "Hotel Arena", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3608512", + "Longitude" : "4.9165903" + } + }, + "Published" : "2012-02-17T12:53:03Z", + "Title" : "Hotel Arena", + "Updated" : "2012-02-17T12:53:03Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8849360, 52.3759480 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7435308816460047606", + "Location" : { + "Address" : "Leliegracht 60, 1015 DJ Amsterdam, Netherlands", + "Business Name" : "Spanjer en van Twist", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3759480", + "Longitude" : "4.8849360" + } + }, + "Published" : "2012-02-15T13:54:50Z", + "Title" : "Spanjer en Van Twist", + "Updated" : "2012-02-15T13:54:50Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8954201, 52.3680688 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4565271517019837050", + "Location" : { + "Address" : "Nieuwe Doelenstraat 20-20, 1012 CP Amsterdam, Netherlands", + "Business Name" : "Café de Jaren", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3680688", + "Longitude" : "4.8954201" + } + }, + "Published" : "2012-02-15T13:51:11Z", + "Title" : "Cafe de Jaren", + "Updated" : "2012-02-15T13:51:11Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.3449000, 52.0571940 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Frederiklaan+17,+2281+Rijswijk,+Zuid-Holland,+The+Netherlands&ftid=0x47c5b65815f9b683:0x3fcdda581138b1d5", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.0571940", + "Longitude" : "4.3449000" + } + }, + "Published" : "2012-02-12T14:38:44Z", + "Title" : "Frederiklaan 17, 2281 Rijswijk, The Netherlands", + "Updated" : "2012-02-12T14:38:44Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9036710, 52.3510500 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Van+Woustraat+197&ftid=0x47c6098f463933cb:0xd4d0a2301ef0ee6e", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3510500", + "Longitude" : "4.9036710" + } + }, + "Published" : "2012-02-10T17:49:16Z", + "Title" : "Van Woustraat 197, 1074 Amsterdam, The Netherlands", + "Updated" : "2012-02-10T17:49:16Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8901078, 52.3809170 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16245005021003456783", + "Location" : { + "Address" : "Haarlemmerstraat 123, 1013 EN Amsterdam, Netherlands", + "Business Name" : "Kathmandu Outdoor & Travel", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3809170", + "Longitude" : "4.8901078" + } + }, + "Published" : "2012-02-08T20:25:10Z", + "Title" : "Demmenie Sport Amsterdam", + "Updated" : "2012-02-08T20:25:10Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8911188, 52.3517037 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=18145275372844778510", + "Location" : { + "Address" : "Ferdinand Bolstraat 170, 1072 LT Amsterdam, Netherlands", + "Business Name" : "Mangiancora", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3517037", + "Longitude" : "4.8911188" + } + }, + "Published" : "2012-01-26T17:16:52Z", + "Title" : "MANGIANCORA", + "Updated" : "2012-01-26T17:16:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8919068, 52.3516241 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=13782014243327199828", + "Location" : { + "Address" : "Rustenburgerstraat 384, 1072 HG Amsterdam, Netherlands", + "Business Name" : "CC Music Cafe - Live Music Venue", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3516241", + "Longitude" : "4.8919068" + } + }, + "Published" : "2012-01-26T17:16:18Z", + "Title" : "CC Muziekcafé", + "Updated" : "2012-01-26T17:16:18Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 15.3770670, 41.6907990 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=San+Severo,+Italy&ftid=0x133742ebbb0767bf:0x499571c55ff115e2", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "41.6907990", + "Longitude" : "15.3770670" + } + }, + "Published" : "2012-01-21T16:26:28Z", + "Title" : "71016 San Severo Foggia, Italy", + "Updated" : "2012-01-21T16:26:28Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 16.2538920, 39.2982000 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Cosenza,+Italy&ftid=0x133f90d28462150b:0x3d30d630246b6d83", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "39.2982000", + "Longitude" : "16.2538920" + } + }, + "Published" : "2012-01-21T14:51:58Z", + "Title" : "87100 Cosenza, Italy", + "Updated" : "2012-01-21T14:51:58Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4724430, 52.1941960 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Rosa+Spierlaan+15,+Oegstgeest,+Nederland&ftid=0x47c5c12aff36b953:0xc4a5945087bd297d", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.1941960", + "Longitude" : "4.4724430" + } + }, + "Published" : "2012-01-14T13:37:43Z", + "Title" : "Rosa Spierlaan 15, 2343 Oegstgeest, The Netherlands", + "Updated" : "2012-01-14T13:37:43Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8592290, 52.3705770 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Witte+de+Withstraat+152,+Amsterdam,+The+Netherlands&ftid=0x47c5e27306eabdf7:0x6009f9cd9de8f351", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3705770", + "Longitude" : "4.8592290" + } + }, + "Published" : "2012-01-13T17:59:04Z", + "Title" : "Witte de Withstraat 152, 1057 Amsterdam, The Netherlands", + "Updated" : "2012-01-13T17:59:04Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8841621, 52.3700072 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12933289246149960817", + "Location" : { + "Address" : "Keizersgracht 324, 1016 EZ Amsterdam, Netherlands", + "Business Name" : "Felix Meritis", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3700072", + "Longitude" : "4.8841621" + } + }, + "Published" : "2012-01-12T16:37:59Z", + "Title" : "Felix Meritis", + "Updated" : "2012-01-12T16:37:59Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9043493, 52.3479919 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=4419570798354083800", + "Location" : { + "Address" : "Rijnstraat 22, 1078 RB Amsterdam, Netherlands", + "Business Name" : "Brazuca Coffee Rijnstraat", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3479919", + "Longitude" : "4.9043493" + } + }, + "Published" : "2012-01-07T23:14:39Z", + "Title" : "Casa Brazuca", + "Updated" : "2012-01-07T23:14:39Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8852162, 52.3628131 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.362813,4.885216", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3628131", + "Longitude" : "4.8852162" + } + }, + "Published" : "2012-01-07T18:39:09Z", + "Title" : "52.362813,4.885216", + "Updated" : "2012-01-07T18:39:09Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8279265, 52.3882200 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2649207367186147511", + "Location" : { + "Address" : "Naritaweg 48, 1043 BZ Amsterdam, Netherlands", + "Business Name" : "Klimhal Amsterdam B.V.", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3882200", + "Longitude" : "4.8279265" + } + }, + "Published" : "2012-01-07T11:08:10Z", + "Title" : "Klimhal Amsterdam B.V.", + "Updated" : "2012-01-07T11:08:10Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4042119, 52.2107610 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=17061570460225537147", + "Location" : { + "Address" : "Noordduinseweg 3, 2221 BL Katwijk aan Zee, Netherlands", + "Business Name" : "Stichting Popkonserten Scum", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.2107610", + "Longitude" : "4.4042119" + } + }, + "Published" : "2011-12-31T09:37:26Z", + "Title" : "Stichting Popkonserten Scum", + "Updated" : "2011-12-31T09:37:26Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8709077, 52.3695410 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14361926867869615468", + "Location" : { + "Address" : "Bilderdijkstraat 81-85, 1053 KM Amsterdam, Netherlands", + "Business Name" : "Kijkshop", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3695410", + "Longitude" : "4.8709077" + } + }, + "Published" : "2011-12-30T14:27:57Z", + "Title" : "Kijkshop.nl", + "Updated" : "2011-12-30T14:27:57Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9062788, 52.3678606 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=17729446243116774367", + "Location" : { + "Address" : "Muiderstraat, 1011 PZ Amsterdam, Netherlands", + "Business Name" : "HiFi Solutions", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3678606", + "Longitude" : "4.9062788" + } + }, + "Published" : "2011-12-30T14:26:15Z", + "Title" : "HiFi Solutions", + "Updated" : "2011-12-30T14:26:15Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8935940, 52.3700610 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15358378776257691004", + "Location" : { + "Address" : "Nes 67, 1012 KD Amsterdam, Netherlands", + "Business Name" : "Bierfabriek Amsterdam", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3700610", + "Longitude" : "4.8935940" + } + }, + "Published" : "2011-12-29T13:38:09Z", + "Title" : "Restaurant de Bierfabriek", + "Updated" : "2011-12-29T13:38:09Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8858944, 52.3585917 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=13188624404145099128", + "Location" : { + "Address" : "Hobbemastraat 26, 1071 ZC Amsterdam, Netherlands", + "Business Name" : "Zuiderbad", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3585917", + "Longitude" : "4.8858944" + } + }, + "Published" : "2011-12-24T15:50:55Z", + "Title" : "Zuiderbad", + "Updated" : "2011-12-24T15:50:55Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9026986, 52.3387038 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=16357384777363935321", + "Location" : { + "Address" : "De Mirandalaan 9, 1079 PA Amsterdam, Netherlands", + "Business Name" : "De Mirandabad", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3387038", + "Longitude" : "4.9026986" + } + }, + "Published" : "2011-12-24T15:49:18Z", + "Title" : "De Mirandabad", + "Updated" : "2011-12-24T15:49:18Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8749493, 52.3570244 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=15522078254151923794", + "Location" : { + "Address" : "Willemsparkweg 73/75, 1071 GT Amsterdam, Netherlands", + "Business Name" : "Café Gruter", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3570244", + "Longitude" : "4.8749493" + } + }, + "Published" : "2011-12-21T17:04:22Z", + "Title" : "Café Gruter", + "Updated" : "2011-12-21T17:04:22Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4028500, 52.1989160 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Leeuweriklaan,+Katwijk,+Nederland&ftid=0x47c5bf4ddd2f7f87:0x6e2c95b4ff6fa71a", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.1989160", + "Longitude" : "4.4028500" + } + }, + "Published" : "2011-12-20T16:24:50Z", + "Title" : "Leeuweriklaan, 2225 Katwijk, The Netherlands", + "Updated" : "2011-12-20T16:24:50Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4149500, 52.1998600 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.199860,4.414950", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.1998600", + "Longitude" : "4.4149500" + } + }, + "Published" : "2011-12-20T16:22:52Z", + "Title" : "52.199860,4.414950", + "Updated" : "2011-12-20T16:22:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4075137, 52.2053517 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=362077796121545848", + "Location" : { + "Address" : "Prins Hendrikkade 12, 2225 TZ Katwijk aan Zee, Netherlands", + "Business Name" : "Fire Station Katwijk", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.2053517", + "Longitude" : "4.4075137" + } + }, + "Published" : "2011-12-20T16:21:42Z", + "Title" : "Brandweer Katwijk", + "Updated" : "2011-12-20T16:21:42Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8830380, 52.3630570 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8557792163300460155", + "Location" : { + "Address" : "Kleine-Gartmanplantsoen 10, 1017 RR Amsterdam, Netherlands", + "Business Name" : "Café-Restaurant De Balie", + "Geo Coordinates" : { + "Latitude" : "52.3630570", + "Longitude" : "4.8830380" + } + }, + "Published" : "2011-12-19T16:05:24Z", + "Title" : "De Balie", + "Updated" : "2011-12-19T16:05:24Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8624640, 52.3524280 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Okeghemstraat+2,+Amsterdam&ftid=0x47c5e20729402295:0xd7daf3bb7108de7e", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3524280", + "Longitude" : "4.8624640" + } + }, + "Published" : "2011-12-14T13:21:55Z", + "Title" : "Okeghemstraat 2, 1075 Amsterdam", + "Updated" : "2011-12-14T13:21:55Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8900741, 52.3597907 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=18380935567413158306", + "Location" : { + "Address" : "Weteringschans 157, 1017 SE Amsterdam, Netherlands", + "Business Name" : "Café Brecht", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3597907", + "Longitude" : "4.8900741" + } + }, + "Published" : "2011-12-14T13:20:36Z", + "Title" : "Café Brecht", + "Updated" : "2011-12-14T13:20:36Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8939482, 52.3754441 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=17409787775043404348", + "Location" : { + "Address" : "Nieuwe Nieuwstraat 20, 1012 NH Amsterdam, Netherlands", + "Business Name" : "Karma Café", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3754441", + "Longitude" : "4.8939482" + } + }, + "Published" : "2011-12-13T18:10:36Z", + "Title" : "Karma Café", + "Updated" : "2011-12-13T18:10:36Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8510500, 52.3622650 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=van+walbeeckstraat+78,+1058+amsterdam,+the+netherlands&ftid=0x47c5e2119b8ecc81:0x82eed080293c407f", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3622650", + "Longitude" : "4.8510500" + } + }, + "Published" : "2011-12-10T01:08:47Z", + "Title" : "Van Walbeeckstraat 78", + "Updated" : "2011-12-10T01:08:47Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8589472, 52.3644154 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=12794274951637845154", + "Location" : { + "Address" : "Postjesweg 1, 1057 DT Amsterdam, Netherlands", + "Business Name" : "Valiz", + "Geo Coordinates" : { + "Latitude" : "52.3644154", + "Longitude" : "4.8589472" + } + }, + "Published" : "2011-12-09T15:13:21Z", + "Title" : "Valiz", + "Updated" : "2011-12-09T15:13:21Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8843316, 52.3702975 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=11195341478824030657", + "Location" : { + "Address" : "Berenstraat 1, 1016 GG Amsterdam, Netherlands", + "Business Name" : "Episode", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3702975", + "Longitude" : "4.8843316" + } + }, + "Published" : "2011-12-09T11:43:25Z", + "Title" : "Episode", + "Updated" : "2011-12-09T11:43:25Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8992417, 52.3720689 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2027247607617869589", + "Location" : { + "Address" : "Kloveniersburgwal 6, 1012 CT Amsterdam, Netherlands", + "Business Name" : "De Bekeerde Suster", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3720689", + "Longitude" : "4.8992417" + } + }, + "Published" : "2011-12-06T13:09:28Z", + "Title" : "De Bekeerde Suster", + "Updated" : "2011-12-06T13:09:28Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 25.6614639, 60.9826540 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Lahti", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "60.9826540", + "Longitude" : "25.6614639" + } + }, + "Published" : "2011-12-05T20:20:15Z", + "Title" : "Lahti, Finland", + "Updated" : "2011-12-05T20:20:15Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.3669800, 50.8156730 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=50.815673,4.36698", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "50.8156730", + "Longitude" : "4.3669800" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "De Post Ukkel Bascule, Brussel", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 10.9890380, 45.4130830 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=45.413083,10.989038", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "45.4130830", + "Longitude" : "10.9890380" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Via Centro 23", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9294200, 52.3753400 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.37534,4.92942", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3753400", + "Longitude" : "4.9294200" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Panama, Amsterdam", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8891470, 52.3765750 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.376575,4.889147", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3765750", + "Longitude" : "4.8891470" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "'T Arendsnest", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.1191427, 52.0932213 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.093221,5.119143", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.0932213", + "Longitude" : "5.1191427" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "52.093221,5.119143", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8902260, 52.3680770 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.368077,4.890226", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3680770", + "Longitude" : "4.8902260" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Handboogstraat 17", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8983590, 52.3702830 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.370283,4.898359", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3702830", + "Longitude" : "4.8983590" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Kloveniersburgwal 59", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8322250, 52.2823050 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.282305,4.832225", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.2823050", + "Longitude" : "4.8322250" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Sacharovlaan", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8855920, 52.3616300 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.36163,4.885592", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3616300", + "Longitude" : "4.8855920" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Jit", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9008000, 52.3740000 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.374,4.9008", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3740000", + "Longitude" : "4.9008000" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Geldersekade 94", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 179.9999998, -80.0000000 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=-80.0,-180.0", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "-80.0000000", + "Longitude" : "179.9999998" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Katya Woloshyn", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.3496300, 45.4385200 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=45.43852,12.34963", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "45.4385200", + "Longitude" : "12.3496300" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Locanda Cavanella", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 11.3497040, 44.4967110 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=44.496711,11.349704", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "44.4967110", + "Longitude" : "11.3497040" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Largo Respighi 8", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 11.6234600, 44.8469400 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=44.84694,11.62346", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "44.8469400", + "Longitude" : "11.6234600" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Palazzo dei Diamanti", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8943480, 52.3773010 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.377301,4.894348", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3773010", + "Longitude" : "4.8943480" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Spuistraat", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 11.3430040, 44.4937790 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=44.493779,11.343004", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "44.4937790", + "Longitude" : "11.3430040" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Piazza Maggiore", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8888279, 52.3572330 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.357233,4.888828", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3572330", + "Longitude" : "4.8888279" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Waaghals (De)", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.3498990, 50.8449840 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=50.844984,4.349899", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "50.8449840", + "Longitude" : "4.3498990" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Manneken Pis", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9143140, 52.3598080 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.359808,4.914314", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3598080", + "Longitude" : "4.9143140" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Jen & Bryan's house", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9313370, 52.3312130 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.331213,4.931337", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3312130", + "Longitude" : "4.9313370" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Entrada 123", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9018630, 52.3472240 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.347224,4.901863", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3472240", + "Longitude" : "4.9018630" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Christian's", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.3679180, 50.8236870 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=50.823687,4.367918", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "50.8236870", + "Longitude" : "4.3679180" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Vleurgatsesteenweg", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9067400, 52.3608270 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.360827,4.90674", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3608270", + "Longitude" : "4.9067400" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Sarphatistraat 36", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9013320, 52.3548520 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.354852,4.901332", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3548520", + "Longitude" : "4.9013320" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Ceintuurbaan 195", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.0553610, 52.4953690 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.495369,5.055361", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.4953690", + "Longitude" : "5.0553610" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Malik's House", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8737490, 52.3849200 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.38492,4.873749", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3849200", + "Longitude" : "4.8737490" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Joan Melchior Kemperstraat, 62, Amsterdam 1051, Netherlands", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8887150, 52.3702110 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.370211,4.888715", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3702110", + "Longitude" : "4.8887150" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "De Gekraakte Ketel", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9395670, 52.3728410 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.372841,4.939567", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3728410", + "Longitude" : "4.9395670" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "D.l. Hudigstraat 41", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8966860, 52.3658110 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.365811,4.896686", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3658110", + "Longitude" : "4.8966860" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Rembrandtplein, Amsterdam", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8865830, 52.3697930 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.369793,4.886583", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3697930", + "Longitude" : "4.8865830" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Doctor", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8898850, 52.3562370 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.356237,4.889885", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3562370", + "Longitude" : "4.8898850" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Esther", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.3539060, 50.8484050 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=50.848405,4.353906", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "50.8484050", + "Longitude" : "4.3539060" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Getrouwheidsgang (Impasse De La Fidélité) 4", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.3491390, 50.8490580 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=50.849058,4.349139", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "50.8490580", + "Longitude" : "4.3491390" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Paul Devauxstraat 9", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.3837830, 50.8152980 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=50.815298,4.383783", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "50.8152980", + "Longitude" : "4.3837830" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Adolphe Buyllaan", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8203150, 52.2828920 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.282892,4.820315", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.2828920", + "Longitude" : "4.8203150" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Boschplaat 50", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 30.5396840, 50.4307260 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=50.430726,30.539684", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "50.4307260", + "Longitude" : "30.5396840" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Tanya", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8998310, 52.3753980 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.375398,4.899831", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3753980", + "Longitude" : "4.8998310" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Brouwerij de Prael", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.3478390, 50.8444690 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=50.844469,4.347839", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "50.8444690", + "Longitude" : "4.3478390" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "De Post Brussel Bogaarden, Brussel", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.3748760, 50.8268310 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=50.826831,4.374876", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "50.8268310", + "Longitude" : "4.3748760" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "De Post, Brussel", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8826520, 52.3645900 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.36459,4.882652", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3645900", + "Longitude" : "4.8826520" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Boom Chicago", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8771600, 52.3490200 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.34902,4.87716", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3490200", + "Longitude" : "4.8771600" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Tram 5 Stop by Chris", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9435680, 52.3126330 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.312633,4.943568", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3126330", + "Longitude" : "4.9435680" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Decathlon", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.4247510, 52.1906940 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.190694,4.424751", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.1906940", + "Longitude" : "4.4247510" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Sandtlaan 2", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 45.9238020, 41.6233820 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=41.623382,45.923802", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "41.6233820", + "Longitude" : "45.9238020" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "A302", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9208200, 52.3624900 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.36249,4.92082", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3624900", + "Longitude" : "4.9208200" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Tropenmuseum", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.3407540, 50.8378650 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=50.837865,4.340754", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "50.8378650", + "Longitude" : "4.3407540" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Grondwetplein", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8620700, 52.3711300 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.37113,4.86207", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3711300", + "Longitude" : "4.8620700" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Club 8, Amsterdam", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.3744040, 50.8187630 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=50.818763,4.374404", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "50.8187630", + "Longitude" : "4.3744040" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Abbaye", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8915370, 52.3595470 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.359547,4.891537", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3595470", + "Longitude" : "4.8915370" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Weteringschans 169", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8786300, 52.3559650 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.355965,4.87863", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3559650", + "Longitude" : "4.8786300" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Concertgebouw, Amsterdam", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9393390, 52.3728050 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.372805,4.939339", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3728050", + "Longitude" : "4.9393390" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "D.l. Hudigstraat 47", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8990540, 52.3660890 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.366089,4.899054", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3660890", + "Longitude" : "4.8990540" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "AIR", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8590960, 52.3027270 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.302727,4.859096", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3027270", + "Longitude" : "4.8590960" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Stadsplein 100, 1181 Amstelveen, Netherlands", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8833270, 52.3568070 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.356807,4.883327", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3568070", + "Longitude" : "4.8833270" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Teniersstraat 2, 1071, Amsterdam, Netherlands", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.3529800, 50.8466750 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=50.846675,4.35298", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "50.8466750", + "Longitude" : "4.3529800" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Grote Markt", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8148120, 52.2459210 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=52.245921,4.814812", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.2459210", + "Longitude" : "4.8148120" + } + }, + "Published" : "2011-12-02T14:25:52Z", + "Title" : "Weegbree 14", + "Updated" : "2011-12-02T14:25:52Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.7967770, 52.3580400 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Wolbrantskerkweg 191, 1069 Amsterdam, The Netherlands", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3580400", + "Longitude" : "4.7967770" + } + }, + "Published" : "2011-11-19T16:05:58Z", + "Title" : "Wolbrantskerkweg 191, 1069 Amsterdam, The Netherlands", + "Updated" : "2011-11-19T16:05:58Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -27.2205770, 38.7216420 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Azores, Portugal", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "38.7216420", + "Longitude" : "-27.2205770" + } + }, + "Published" : "2011-11-16T20:58:22Z", + "Title" : "Azores, Portugal", + "Updated" : "2011-11-16T20:58:22Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ -16.9594720, 32.7607070 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=madeira", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "32.7607070", + "Longitude" : "-16.9594720" + } + }, + "Published" : "2011-11-16T20:58:11Z", + "Title" : "Madeira, Portugal", + "Updated" : "2011-11-16T20:58:11Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8866009, 52.3780662 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1586264280808035479", + "Location" : { + "Address" : "Prinsenstraat 30, 1015 DD Amsterdam, Netherlands", + "Business Name" : "De Vergulde Gaper", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3780662", + "Longitude" : "4.8866009" + } + }, + "Published" : "2011-11-12T11:07:31Z", + "Title" : "De Vergulde Gaper", + "Updated" : "2011-11-12T11:07:31Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8845877, 52.3768223 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=17875029838275160902", + "Location" : { + "Address" : "Egelantiersgracht 2-6, 1015 RL Amsterdam, Netherlands", + "Business Name" : "Gunters en Meuser Centrum", + "Geo Coordinates" : { + "Latitude" : "52.3768223", + "Longitude" : "4.8845877" + } + }, + "Published" : "2011-10-19T09:53:49Z", + "Title" : "Gunters en Meuser Beheer B.V.", + "Updated" : "2011-10-19T09:53:49Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.0714226, 52.3343272 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=8914438299242954402", + "Location" : { + "Address" : "Herengracht 1, 1398 AA Muiden, Netherlands", + "Business Name" : "Muiderslot", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3343272", + "Longitude" : "5.0714226" + } + }, + "Published" : "2011-06-03T18:51:12Z", + "Title" : "het Muiderslot", + "Updated" : "2011-06-03T18:51:12Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9153510, 52.3582730 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Onze Vrouwe Gasthuis", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3582730", + "Longitude" : "4.9153510" + } + }, + "Published" : "2011-05-31T06:28:50Z", + "Title" : "Onze Lieve Vrouwe Gasthuis, Oosterpark 9, 1091 AC Amsterdam, Netherlands", + "Updated" : "2011-05-31T06:28:50Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8493581, 52.3803430 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Leeuwendalersweg 5C, 1055 Landlust, Amsterdam, Noord-Holland, The Netherlands", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3803430", + "Longitude" : "4.8493581" + } + }, + "Published" : "2011-05-12T16:34:48Z", + "Title" : "Leeuwendalersweg 5C, 1055 Amsterdam, The Netherlands", + "Updated" : "2011-05-12T16:34:48Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9592096, 52.2938961 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=508901693264556403", + "Location" : { + "Address" : "Meibergdreef 9, 1105 AZ Amsterdam, Netherlands", + "Business Name" : "Amsterdam UMC, locatie AMC", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.2938961", + "Longitude" : "4.9592096" + } + }, + "Published" : "2011-05-09T07:14:16Z", + "Title" : "Academisch Medisch Centrum", + "Updated" : "2011-05-09T07:14:16Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8937231, 52.3715348 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2668782599925424315", + "Location" : { + "Address" : "Nes 41, 1012 KC Amsterdam, Netherlands", + "Business Name" : "Café restaurant van Kerkwijk", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3715348", + "Longitude" : "4.8937231" + } + }, + "Published" : "2011-04-08T15:01:45Z", + "Title" : "Van Kerkwijk", + "Updated" : "2011-04-08T15:01:45Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8994100, 52.3660086 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=10875530998858133614", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3660086", + "Longitude" : "4.8994100" + } + }, + "Published" : "2011-03-24T21:39:02Z", + "Title" : "AIR - Nightclub Amsterdam", + "Updated" : "2011-03-24T21:39:02Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8820137, 52.3770413 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=14354713463380114183", + "Location" : { + "Address" : "Tweede Tuindwarsstraat 53, 1015 RZ Amsterdam, Netherlands", + "Business Name" : "La Perla Pizzeria", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3770413", + "Longitude" : "4.8820137" + } + }, + "Published" : "2011-03-22T12:45:58Z", + "Title" : "La Perla", + "Updated" : "2011-03-22T12:45:58Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8146382, 52.2459488 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Weegbree 12, Uithoorn, Nederland", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.2459488", + "Longitude" : "4.8146382" + } + }, + "Published" : "2011-02-03T20:55:53Z", + "Title" : "Weegbree 12, 1422 Uithoorn, The Netherlands", + "Updated" : "2011-02-03T20:55:53Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8993721, 52.3743248 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Oudezijds Voorburgwal 53, 1012 Amsterdam, The Netherlands", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3743248", + "Longitude" : "4.8993721" + } + }, + "Published" : "2011-01-24T19:38:39Z", + "Title" : "Oudezijds Voorburgwal 53, 1012 Amsterdam, The Netherlands", + "Updated" : "2011-01-24T19:38:39Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8943849, 52.3722646 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=1907037461235157001", + "Location" : { + "Address" : "Damstraat 36, 1012 JM Amsterdam, Netherlands", + "Business Name" : "The Mexican", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3722646", + "Longitude" : "4.8943849" + } + }, + "Published" : "2011-01-01T13:48:37Z", + "Title" : "The Mexican II", + "Updated" : "2011-01-01T13:48:37Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9090810, 52.3444061 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Trompenburgstraat 14a", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3444061", + "Longitude" : "4.9090810" + } + }, + "Published" : "2010-12-05T13:20:55Z", + "Title" : "Trompenburgstraat 14A, 1079 Amsterdam, The Netherlands", + "Updated" : "2010-12-05T13:20:55Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.9019050, 52.3472481 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Reggestraat 15, 1078 Amsterdam, Noord-Holland, The Netherlands", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3472481", + "Longitude" : "4.9019050" + } + }, + "Published" : "2010-09-16T17:28:44Z", + "Title" : "Reggestraat 15, 1078 Amsterdam, The Netherlands", + "Updated" : "2010-09-16T17:28:44Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 5.7913080, 53.2034073 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Leeuwarden", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "53.2034073", + "Longitude" : "5.7913080" + } + }, + "Published" : "2010-08-17T19:18:11Z", + "Title" : "Leeuwarden, The Netherlands", + "Updated" : "2010-08-17T19:18:11Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8843340, 52.3324340 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=7968562344212315043", + "Location" : { + "Address" : "Havikshorst 30, 1083 TT Amsterdam, Netherlands", + "Business Name" : "Dutch Courses Amsterdam - Katakura/WBLC", + "Country Code" : "NL", + "Geo Coordinates" : { + "Latitude" : "52.3324340", + "Longitude" : "4.8843340" + } + }, + "Published" : "2010-08-16T14:52:11Z", + "Title" : "Katakura WBLC Dutch Language School", + "Updated" : "2010-08-16T14:52:11Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 11.6204395, 44.8378944 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Ferrara, Italy", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "44.8378944", + "Longitude" : "11.6204395" + } + }, + "Published" : "2010-08-04T21:15:02Z", + "Title" : "Ferrara, Italy", + "Updated" : "2010-08-04T21:15:02Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 11.3464823, 44.4942207 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Bologna, Italy", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "44.4942207", + "Longitude" : "11.3464823" + } + }, + "Published" : "2010-08-04T21:14:49Z", + "Title" : "Bologna, Italy", + "Updated" : "2010-08-04T21:14:49Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.3432703, 45.5049973 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Venice Marco Polo Airport, Italy", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "45.5049973", + "Longitude" : "12.3432703" + } + }, + "Published" : "2010-08-04T21:14:23Z", + "Title" : "Venice Marco Polo Airport, 30173 Venice, Italy", + "Updated" : "2010-08-04T21:14:23Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.2027197, 45.6512108 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Treviso Airport, Italy", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "45.6512108", + "Longitude" : "12.2027197" + } + }, + "Published" : "2010-08-04T21:13:57Z", + "Title" : "Treviso Airport, 31100 Treviso, Italy", + "Updated" : "2010-08-04T21:13:57Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 12.3387842, 45.4343376 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Venice", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "45.4343376", + "Longitude" : "12.3387842" + } + }, + "Published" : "2010-08-04T21:13:29Z", + "Title" : "Venice, Italy", + "Updated" : "2010-08-04T21:13:29Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 11.8765888, 45.4095688 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=padova", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "45.4095688", + "Longitude" : "11.8765888" + } + }, + "Published" : "2010-08-04T21:13:12Z", + "Title" : "Padua, Italy", + "Updated" : "2010-08-04T21:13:12Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 10.9917479, 45.4383660 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Verona", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "45.4383660", + "Longitude" : "10.9917479" + } + }, + "Published" : "2010-08-04T21:13:02Z", + "Title" : "Verona, Italy", + "Updated" : "2010-08-04T21:13:02Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 13.4066667, 52.5194435 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=berlin Mitte", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.5194435", + "Longitude" : "13.4066667" + } + }, + "Published" : "2010-07-20T18:19:15Z", + "Title" : "Berlin-Mitte, Berlijn, Duitsland", + "Updated" : "2010-07-20T18:19:15Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8893790, 52.3797913 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?q=Brouwersgracht 69j, Amsterdam, Nederland", + "Location" : { + "Geo Coordinates" : { + "Latitude" : "52.3797913", + "Longitude" : "4.8893790" + } + }, + "Published" : "2010-05-15T13:16:01Z", + "Title" : "Brouwersgracht 69, 1015 Amsterdam, The Netherlands", + "Updated" : "2010-05-15T13:16:01Z" + }, + "type" : "Feature" + }, { + "geometry" : { + "coordinates" : [ 4.8934199, 52.3736418 ], + "type" : "Point" + }, + "properties" : { + "Google Maps URL" : "http://maps.google.com/?cid=2613325985662711262", + "Location" : { + "Address" : "Damrak 95 BG, 1012 LP Amsterdam, Netherlands", + "Business Name" : "Pott Change", + "Geo Coordinates" : { + "Latitude" : "52.3736418", + "Longitude" : "4.8934199" + } + }, + "Published" : "2010-05-05T11:17:13Z", + "Title" : "Pott Change", + "Updated" : "2010-05-05T11:17:13Z" + }, + "type" : "Feature" + } ] +} \ No newline at end of file diff --git a/sample/api-reply.json b/sample/api-reply.json new file mode 100644 index 0000000..0bb3283 --- /dev/null +++ b/sample/api-reply.json @@ -0,0 +1,71 @@ +{ + "html_attributions" : [], + "result" : { + "address_components" : [ + { + "long_name" : "4", + "short_name" : "4", + "types" : [ "street_number" ] + }, + { + "long_name" : "Calle Cruz de Piedra", + "short_name" : "Calle Cruz de Piedra", + "types" : [ "route" ] + }, + { + "long_name" : "Alacant", + "short_name" : "Alacant", + "types" : [ "locality", "political" ] + }, + { + "long_name" : "Alicante", + "short_name" : "A", + "types" : [ "administrative_area_level_2", "political" ] + }, + { + "long_name" : "Comunidad Valenciana", + "short_name" : "Comunidad Valenciana", + "types" : [ "administrative_area_level_1", "political" ] + }, + { + "long_name" : "Spain", + "short_name" : "ES", + "types" : [ "country", "political" ] + }, + { + "long_name" : "03015", + "short_name" : "03015", + "types" : [ "postal_code" ] + } + ], + "adr_address" : "\u003cspan class=\"street-address\"\u003eCalle Cruz de Piedra, 4\u003c/span\u003e, \u003cspan class=\"postal-code\"\u003e03015\u003c/span\u003e \u003cspan class=\"locality\"\u003eAlacant\u003c/span\u003e, \u003cspan class=\"region\"\u003eAlicante\u003c/span\u003e, \u003cspan class=\"country-name\"\u003eSpain\u003c/span\u003e", + "formatted_address" : "Calle Cruz de Piedra, 4, 03015 Alacant, Alicante, Spain", + "geometry" : { + "location" : { + "lat" : 38.3642358, + "lng" : -0.4626489 + }, + "viewport" : { + "northeast" : { + "lat" : 38.3655847802915, + "lng" : -0.4612999197084979 + }, + "southwest" : { + "lat" : 38.3628868197085, + "lng" : -0.463997880291502 + } + } + }, + "icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/geocode-71.png", + "id" : "ce1aa5a252b86d559268866a6a4858db9bba3dff", + "name" : "Calle Cruz de Piedra, 4", + "place_id" : "ChIJFwinI3E3Yg0RSMb3_GWb6IU", + "reference" : "CmRbAAAAn6NLYXEs-ttLvUlgjnh5aDHt-LR_hXe6JmUN8fzv6MJ7Q50xt_zUU_WlTc3aL_BQc70-1YjEb6Soluro5rA8cIFJG_w08RSr_JWo_SFEFc1Ncme_dKVKsPX6Q0LtO8gWEhACTzabAMLQfM5xt1_BNsywGhSZr0WRGlutqeuRgs-IY41ndk3yoQ", + "scope" : "GOOGLE", + "types" : [ "street_address" ], + "url" : "https://maps.google.com/?q=Calle+Cruz+de+Piedra,+4,+03015+Alacant,+Alicante,+Spain&ftid=0xd62377123a70817:0x85e89b65fcf7c648", + "utc_offset" : 60, + "vicinity" : "Alacant" + }, + "status" : "OK" +} diff --git a/sample/takeout.csv b/sample/takeout.csv new file mode 100644 index 0000000..0f595bf --- /dev/null +++ b/sample/takeout.csv @@ -0,0 +1,12 @@ +Title,Note,URL,Comment +Landgoed Duindigt,,https://www.google.com/maps/place/Landgoed+Duindigt/data=!4m2!3m1!1s0x47c5b7823aad817b:0xe7b57212489ddeef, +"Wilhelminapark, Rijswijk",,"https://www.google.com/maps/place/Wilhelminapark,+Rijswijk/data=!4m2!3m1!1s0x47c5b429e6a3b9c1:0x35a6ea3a76b539ca", +Madestein,,https://www.google.com/maps/place/Madestein/data=!4m2!3m1!1s0x47c5b19a9779def5:0x955b04221077c457, +Watergangseweg 40,,https://www.google.com/maps/place/Watergangseweg+40/data=!4m2!3m1!1s0x47c608e698b0ab0b:0x9eed85f833c7aabe, +C&A,,https://www.google.com/maps/place/C%26A/data=!4m2!3m1!1s0x40b1f8cf7edcf6a7:0x5a487534e85aa846, +H&M,,https://www.google.com/maps/place/H%26M/data=!4m2!3m1!1s0x40b1ff1642fa5cef:0x143ba07d3ce45222, +epiesa.ro Eminescu,,https://www.google.com/maps/place/epiesa.ro+Eminescu/data=!4m2!3m1!1s0x40b1ff4acb42e72b:0x194564f0dc9551bd, +Interbellico,,https://www.google.com/maps/place/Interbellico/data=!4m2!3m1!1s0x40b1ff35e00dae99:0xae8b28e6e42c3524, +The Society Shop,,https://www.google.com/maps/place/The+Society+Shop/data=!4m2!3m1!1s0x47c609e50812a7b3:0xdaefe5ada18b065e, +Nieuwe Church,,https://www.google.com/maps/place/Nieuwe+Church/data=!4m2!3m1!1s0x47c5b5c25c9ba869:0xe90425f70920bac9, +Loge Silentium,,https://www.google.com/maps/place/Loge+Silentium/data=!4m2!3m1!1s0x47c5b5c30c9fa291:0x6d6b885a6f6afb1b, diff --git a/template.kml.mako b/template.kml.mako new file mode 100644 index 0000000..0de45ac --- /dev/null +++ b/template.kml.mako @@ -0,0 +1,24 @@ + + + + ${path|x} + % for p in places: + + ${p.name|x} + + ${p.url} + ]]> + +
${p.address|x}
+ + ${f'{p.long:0.6f},{p.lat:0.6f},0.0'} + +
+ % endfor +
+
From a05e50c2ecb1dbe8311c499304f6c47475598651 Mon Sep 17 00:00:00 2001 From: Devin Bayer Date: Mon, 8 Mar 2021 23:59:25 +0100 Subject: [PATCH 2/2] small cleanups --- .gitignore | 1 + README.md | 65 ++++++++++++++++++++++++++++++++++++------------------ csv2kml.py | 10 ++++----- 3 files changed, 49 insertions(+), 27 deletions(-) diff --git a/.gitignore b/.gitignore index 07a13b1..1b0827b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *.kml +*.csv diff --git a/README.md b/README.md index cee2dc8..9a58374 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# Export Google Maps saved/starred/favorite locations to KML/CSV/Sygic +# Google Maps Export -This repository contain 4 [Python 3](https://www.python.org/downloads/) scripts that can be used to **export starred locations from Google Maps to other formats** which then can be imported by GPS navigation apps or other POI convertion tools. The three scrips are: +This repository contain 4 [Python 3](https://www.python.org/downloads/) scripts that can be used to **export saved locations from Google Maps to other formats** which then can be imported by GPS navigation apps or other POI convertion tools. The three scrips are: -* **csv2kml**: Export Favorites / Flagged Places / Want To Go / and custom lists. +* **csv2kml**: Export Favorites / Flagged Places / Want To Go / and custom lists to KML. * **json2kml**: this script converts the list of starred/saved places (a.k.a. POIs) from Google Maps into a **KML file** that can be imported into various GPS navigation applications (suchs as MAPS.ME). @@ -10,41 +10,61 @@ This repository contain 4 [Python 3](https://www.python.org/downloads/) scripts * **json2sygic**: this script converts the list of starred/saved places (a.k.a. POIs) from Google Maps into the internal format used by Sygic Android to save its favorites (**"items.dat"**) file. -## How to export Google Maps saved/starred locations to a JSON file +## Step 1: Google Takeout for JSON/CSV files -1. Go to Google Takeout (https://takeout.google.com/settings/takeout). -2. Click “Select None” and then select -- “Maps (your places)”. -- "Saved" Collections of saved links (images, places, web pages, etc.) from Google Search and Maps -3. Google will export a ZIP file. Save this file to your local disk, open it and extract the file “\Takeout\Maps (your places)\Saved Places.json” to a directory in your PC (do not change the file name). +1. Go to Google Takeout (https://takeout.google.com/settings/takeout). +2. Click “Select None” +3. Select “Maps (your places)”. +4. Select "Saved" - "collections of saved links (images, places, web pages, etc.) from Google Search and Maps" +5. Google will export a ZIP file. Save this file to your local disk, open it and extract. -## csv2kml - -Google Takeout stores several files as CSV: +Takeout contains several relevant files: +- Maps (your places)/Saved Places.json - Saved/Favourite places.csv - Saved/Flag.csv - Saved/Want to go.csv -First you need a Google API key: +## csv2kml + +First you need a Google API key -- If needed, greated a Google Cloud Project -- Enable Places API -- Goto -- Click: Create credentials -- Copy API key -- Run this and paste to save key: +1. If needed, greated a Google Cloud Project +2. Enable Places API +3. Goto +4. Click: Create credentials +5. Copy API key +6. Run this and paste to save key + +``` +install -D /dev/stdin -m 600 ~/.private/google-api +``` - install -D /dev/stdin -m 600 ~/.private/google-api +This script depends on `mako` so: -This script depends on `mako` so `pip3 install mako`. +``` +pip3 install mako +``` Run it like this: - ./csv2kml.py sample/takeout.csv > output.kml +``` +./csv2kml.py sample/takeout.csv > output.kml +``` Checked `failed.csv` for entries we were not able to convert. +Dev Notes +- these files use FTID identifiers +- https://stackoverflow.com/questions/47017387/decoding-the-google-maps-embedded-parameters +- the undocumented API call is: + - `https://maps.googleapis.com/maps/api/place/details/json?key=KEY&ftid=0xd62377123a70817:0x85e89b65fcf7c648` +- I was not able to find out what param1 is, but when a place (e. g., a store) + is selected, param2 is the Google Maps customer id (CID) in hexadecimal + encoding. +- related: https://gpx2googlemaps.com/#/ + + ## json2kml This script depends on [“SIMPLEKML” library] (https://simplekml.readthedocs.io/) and it can be installed via pip with the following command line (on Windows you may need to run this command in Command Prompt _Admin_): @@ -80,3 +100,4 @@ After this, the following steps must be executed to generate the KML file from t * This script creates a new "items.dat" file with all saved places from Google. This file needs to be copied to one of the above foldres. * **IMPORTANT**: when overwriting "items.dat" files, **all current Sygic favorites _will be lost_**. Keep this in mind. + diff --git a/csv2kml.py b/csv2kml.py index faa3cfc..d824611 100755 --- a/csv2kml.py +++ b/csv2kml.py @@ -2,10 +2,10 @@ """ Extract Google Place IDs from Google Takeout -Usage: extract.py google-maps-favorites-2020.csv - -Title,Note,URL,Comment -Pizzabar DEEG,,https://www.google.com/maps/place/Pizzabar+DEEG/data=!4m2!3m1!1s0x47c6eef6ec509509:0x519b160daf1c8e59, +Usage: extract.py favorites.csv > out.kml +Author: Devin Bayer +Repo: https://github.com/akvadrako/json2kml +License: GPL 3.0 """ import sys, csv, re @@ -51,7 +51,7 @@ class place: m = re.match(r'.*google.com/maps/place/.*/data=.*!1s(0x[0-9a-fx:]+)', p.url) if not m: log('nomatch', p.url) - csv.writer(failed_fd).writerow(row + ['error: ' + data['status']]) + csv.writer(failed_fd).writerow(row) continue ftid = m.group(1)