From 186c88ce21ef65bfd902b5638d72d6bbe0b1d9eb Mon Sep 17 00:00:00 2001 From: OpenClaw Bot Date: Fri, 1 May 2026 13:03:14 +0000 Subject: [PATCH] Add all project files --- .gitignore | 45 + .metadata | 45 + CHANGELOG.md | 156 +++ analysis_options.yaml | 28 + android/.gitignore | 14 + android/app/build.gradle.kts | 44 + android/app/src/debug/AndroidManifest.xml | 7 + android/app/src/main/AndroidManifest.xml | 48 + .../com/example/delivery_app/MainActivity.kt | 5 + .../res/drawable-v21/launch_background.xml | 12 + .../main/res/drawable/launch_background.xml | 12 + .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 544 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 442 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 721 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 1031 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 1443 bytes .../app/src/main/res/values-night/styles.xml | 18 + android/app/src/main/res/values/styles.xml | 18 + android/app/src/profile/AndroidManifest.xml | 7 + android/build.gradle.kts | 24 + android/gradle.properties | 2 + .../gradle/wrapper/gradle-wrapper.properties | 5 + android/settings.gradle.kts | 26 + assets/hoogerheide_addresses.json | 1 + fetch_addresses_overpass.dart | 109 +++ ios/.gitignore | 34 + ios/Flutter/AppFrameworkInfo.plist | 24 + ios/Flutter/Debug.xcconfig | 1 + ios/Flutter/Release.xcconfig | 1 + ios/Runner.xcodeproj/project.pbxproj | 620 ++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 8 + .../xcshareddata/xcschemes/Runner.xcscheme | 101 ++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 8 + ios/Runner/AppDelegate.swift | 16 + .../AppIcon.appiconset/Contents.json | 122 +++ .../Icon-App-1024x1024@1x.png | Bin 0 -> 10932 bytes .../AppIcon.appiconset/Icon-App-20x20@1x.png | Bin 0 -> 295 bytes .../AppIcon.appiconset/Icon-App-20x20@2x.png | Bin 0 -> 406 bytes .../AppIcon.appiconset/Icon-App-20x20@3x.png | Bin 0 -> 450 bytes .../AppIcon.appiconset/Icon-App-29x29@1x.png | Bin 0 -> 282 bytes .../AppIcon.appiconset/Icon-App-29x29@2x.png | Bin 0 -> 462 bytes .../AppIcon.appiconset/Icon-App-29x29@3x.png | Bin 0 -> 704 bytes .../AppIcon.appiconset/Icon-App-40x40@1x.png | Bin 0 -> 406 bytes .../AppIcon.appiconset/Icon-App-40x40@2x.png | Bin 0 -> 586 bytes .../AppIcon.appiconset/Icon-App-40x40@3x.png | Bin 0 -> 862 bytes .../AppIcon.appiconset/Icon-App-60x60@2x.png | Bin 0 -> 862 bytes .../AppIcon.appiconset/Icon-App-60x60@3x.png | Bin 0 -> 1674 bytes .../AppIcon.appiconset/Icon-App-76x76@1x.png | Bin 0 -> 762 bytes .../AppIcon.appiconset/Icon-App-76x76@2x.png | Bin 0 -> 1226 bytes .../Icon-App-83.5x83.5@2x.png | Bin 0 -> 1418 bytes .../LaunchImage.imageset/Contents.json | 23 + .../LaunchImage.imageset/LaunchImage.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/LaunchImage@2x.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/LaunchImage@3x.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/README.md | 5 + ios/Runner/Base.lproj/LaunchScreen.storyboard | 37 + ios/Runner/Base.lproj/Main.storyboard | 26 + ios/Runner/Info.plist | 70 ++ ios/Runner/Runner-Bridging-Header.h | 1 + ios/Runner/SceneDelegate.swift | 6 + ios/RunnerTests/RunnerTests.swift | 12 + lib/hoogerheide_streets.dart | 158 ++++ lib/main.dart | 28 + lib/models/delivery_history.dart | 43 + lib/models/stop.dart | 82 ++ lib/pages/builder_page.dart | 315 ++++++ lib/pages/route_page.dart | 895 ++++++++++++++++++ lib/pages/routes_page.dart | 233 +++++ lib/pages/settings_page.dart | 95 ++ lib/pages/statistics_page.dart | 301 ++++++ lib/providers/app_state.dart | 83 ++ lib/providers/delivery_provider.dart | 206 ++++ lib/services/database.dart | 351 +++++++ lib/services/geocoding.dart | 117 +++ lib/services/gpx_export.dart | 75 ++ lib/services/routing.dart | 144 +++ linux/.gitignore | 1 + linux/CMakeLists.txt | 128 +++ linux/flutter/CMakeLists.txt | 88 ++ linux/flutter/generated_plugin_registrant.cc | 11 + linux/flutter/generated_plugin_registrant.h | 15 + linux/flutter/generated_plugins.cmake | 24 + linux/runner/CMakeLists.txt | 26 + linux/runner/main.cc | 6 + linux/runner/my_application.cc | 148 +++ linux/runner/my_application.h | 21 + macos/.gitignore | 7 + macos/Flutter/Flutter-Debug.xcconfig | 1 + macos/Flutter/Flutter-Release.xcconfig | 1 + macos/Flutter/GeneratedPluginRegistrant.swift | 14 + macos/Runner.xcodeproj/project.pbxproj | 705 ++++++++++++++ .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/xcschemes/Runner.xcscheme | 99 ++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + macos/Runner/AppDelegate.swift | 13 + .../AppIcon.appiconset/Contents.json | 68 ++ .../AppIcon.appiconset/app_icon_1024.png | Bin 0 -> 102994 bytes .../AppIcon.appiconset/app_icon_128.png | Bin 0 -> 5680 bytes .../AppIcon.appiconset/app_icon_16.png | Bin 0 -> 520 bytes .../AppIcon.appiconset/app_icon_256.png | Bin 0 -> 14142 bytes .../AppIcon.appiconset/app_icon_32.png | Bin 0 -> 1066 bytes .../AppIcon.appiconset/app_icon_512.png | Bin 0 -> 36406 bytes .../AppIcon.appiconset/app_icon_64.png | Bin 0 -> 2218 bytes macos/Runner/Base.lproj/MainMenu.xib | 343 +++++++ macos/Runner/Configs/AppInfo.xcconfig | 14 + macos/Runner/Configs/Debug.xcconfig | 2 + macos/Runner/Configs/Release.xcconfig | 2 + macos/Runner/Configs/Warnings.xcconfig | 13 + macos/Runner/DebugProfile.entitlements | 12 + macos/Runner/Info.plist | 32 + macos/Runner/MainFlutterWindow.swift | 15 + macos/Runner/Release.entitlements | 8 + macos/RunnerTests/RunnerTests.swift | 12 + pubspec.lock | 666 +++++++++++++ pubspec.yaml | 31 + web/favicon.png | Bin 0 -> 917 bytes web/icons/Icon-192.png | Bin 0 -> 5292 bytes web/icons/Icon-512.png | Bin 0 -> 8252 bytes web/icons/Icon-maskable-192.png | Bin 0 -> 5594 bytes web/icons/Icon-maskable-512.png | Bin 0 -> 20998 bytes web/index.html | 46 + web/manifest.json | 35 + windows/.gitignore | 17 + windows/CMakeLists.txt | 108 +++ windows/flutter/CMakeLists.txt | 109 +++ .../flutter/generated_plugin_registrant.cc | 14 + windows/flutter/generated_plugin_registrant.h | 15 + windows/flutter/generated_plugins.cmake | 25 + windows/runner/CMakeLists.txt | 40 + windows/runner/Runner.rc | 121 +++ windows/runner/flutter_window.cpp | 71 ++ windows/runner/flutter_window.h | 33 + windows/runner/main.cpp | 43 + windows/runner/resource.h | 16 + windows/runner/resources/app_icon.ico | Bin 0 -> 33772 bytes windows/runner/runner.exe.manifest | 14 + windows/runner/utils.cpp | 65 ++ windows/runner/utils.h | 19 + windows/runner/win32_window.cpp | 288 ++++++ windows/runner/win32_window.h | 102 ++ 145 files changed, 8627 insertions(+) create mode 100644 .gitignore create mode 100644 .metadata create mode 100644 CHANGELOG.md create mode 100644 analysis_options.yaml create mode 100644 android/.gitignore create mode 100644 android/app/build.gradle.kts create mode 100644 android/app/src/debug/AndroidManifest.xml create mode 100644 android/app/src/main/AndroidManifest.xml create mode 100644 android/app/src/main/kotlin/com/example/delivery_app/MainActivity.kt create mode 100644 android/app/src/main/res/drawable-v21/launch_background.xml create mode 100644 android/app/src/main/res/drawable/launch_background.xml create mode 100644 android/app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 android/app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 android/app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 android/app/src/main/res/values-night/styles.xml create mode 100644 android/app/src/main/res/values/styles.xml create mode 100644 android/app/src/profile/AndroidManifest.xml create mode 100644 android/build.gradle.kts create mode 100644 android/gradle.properties create mode 100644 android/gradle/wrapper/gradle-wrapper.properties create mode 100644 android/settings.gradle.kts create mode 100644 assets/hoogerheide_addresses.json create mode 100644 fetch_addresses_overpass.dart create mode 100644 ios/.gitignore create mode 100644 ios/Flutter/AppFrameworkInfo.plist create mode 100644 ios/Flutter/Debug.xcconfig create mode 100644 ios/Flutter/Release.xcconfig create mode 100644 ios/Runner.xcodeproj/project.pbxproj create mode 100644 ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings create mode 100644 ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme create mode 100644 ios/Runner.xcworkspace/contents.xcworkspacedata create mode 100644 ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings create mode 100644 ios/Runner/AppDelegate.swift create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png create mode 100644 ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json create mode 100644 ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png create mode 100644 ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png create mode 100644 ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png create mode 100644 ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md create mode 100644 ios/Runner/Base.lproj/LaunchScreen.storyboard create mode 100644 ios/Runner/Base.lproj/Main.storyboard create mode 100644 ios/Runner/Info.plist create mode 100644 ios/Runner/Runner-Bridging-Header.h create mode 100644 ios/Runner/SceneDelegate.swift create mode 100644 ios/RunnerTests/RunnerTests.swift create mode 100644 lib/hoogerheide_streets.dart create mode 100644 lib/main.dart create mode 100644 lib/models/delivery_history.dart create mode 100644 lib/models/stop.dart create mode 100644 lib/pages/builder_page.dart create mode 100644 lib/pages/route_page.dart create mode 100644 lib/pages/routes_page.dart create mode 100644 lib/pages/settings_page.dart create mode 100644 lib/pages/statistics_page.dart create mode 100644 lib/providers/app_state.dart create mode 100644 lib/providers/delivery_provider.dart create mode 100644 lib/services/database.dart create mode 100644 lib/services/geocoding.dart create mode 100644 lib/services/gpx_export.dart create mode 100644 lib/services/routing.dart create mode 100644 linux/.gitignore create mode 100644 linux/CMakeLists.txt create mode 100644 linux/flutter/CMakeLists.txt create mode 100644 linux/flutter/generated_plugin_registrant.cc create mode 100644 linux/flutter/generated_plugin_registrant.h create mode 100644 linux/flutter/generated_plugins.cmake create mode 100644 linux/runner/CMakeLists.txt create mode 100644 linux/runner/main.cc create mode 100644 linux/runner/my_application.cc create mode 100644 linux/runner/my_application.h create mode 100644 macos/.gitignore create mode 100644 macos/Flutter/Flutter-Debug.xcconfig create mode 100644 macos/Flutter/Flutter-Release.xcconfig create mode 100644 macos/Flutter/GeneratedPluginRegistrant.swift create mode 100644 macos/Runner.xcodeproj/project.pbxproj create mode 100644 macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme create mode 100644 macos/Runner.xcworkspace/contents.xcworkspacedata create mode 100644 macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 macos/Runner/AppDelegate.swift create mode 100644 macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png create mode 100644 macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png create mode 100644 macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png create mode 100644 macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png create mode 100644 macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png create mode 100644 macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png create mode 100644 macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png create mode 100644 macos/Runner/Base.lproj/MainMenu.xib create mode 100644 macos/Runner/Configs/AppInfo.xcconfig create mode 100644 macos/Runner/Configs/Debug.xcconfig create mode 100644 macos/Runner/Configs/Release.xcconfig create mode 100644 macos/Runner/Configs/Warnings.xcconfig create mode 100644 macos/Runner/DebugProfile.entitlements create mode 100644 macos/Runner/Info.plist create mode 100644 macos/Runner/MainFlutterWindow.swift create mode 100644 macos/Runner/Release.entitlements create mode 100644 macos/RunnerTests/RunnerTests.swift create mode 100644 pubspec.lock create mode 100644 pubspec.yaml create mode 100644 web/favicon.png create mode 100644 web/icons/Icon-192.png create mode 100644 web/icons/Icon-512.png create mode 100644 web/icons/Icon-maskable-192.png create mode 100644 web/icons/Icon-maskable-512.png create mode 100644 web/index.html create mode 100644 web/manifest.json create mode 100644 windows/.gitignore create mode 100644 windows/CMakeLists.txt create mode 100644 windows/flutter/CMakeLists.txt create mode 100644 windows/flutter/generated_plugin_registrant.cc create mode 100644 windows/flutter/generated_plugin_registrant.h create mode 100644 windows/flutter/generated_plugins.cmake create mode 100644 windows/runner/CMakeLists.txt create mode 100644 windows/runner/Runner.rc create mode 100644 windows/runner/flutter_window.cpp create mode 100644 windows/runner/flutter_window.h create mode 100644 windows/runner/main.cpp create mode 100644 windows/runner/resource.h create mode 100644 windows/runner/resources/app_icon.ico create mode 100644 windows/runner/runner.exe.manifest create mode 100644 windows/runner/utils.cpp create mode 100644 windows/runner/utils.h create mode 100644 windows/runner/win32_window.cpp create mode 100644 windows/runner/win32_window.h diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3820a95 --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.build/ +.buildlog/ +.history +.svn/ +.swiftpm/ +migrate_working_dir/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# The .vscode folder contains launch configuration and tasks you configure in +# VS Code which you may wish to be included in version control, so this line +# is commented out by default. +#.vscode/ + +# Flutter/Dart/Pub related +**/doc/api/ +**/ios/Flutter/.last_build_id +.dart_tool/ +.flutter-plugins-dependencies +.pub-cache/ +.pub/ +/build/ +/coverage/ + +# Symbolication related +app.*.symbols + +# Obfuscation related +app.*.map.json + +# Android Studio will place build artifacts here +/android/app/debug +/android/app/profile +/android/app/release diff --git a/.metadata b/.metadata new file mode 100644 index 0000000..7a88248 --- /dev/null +++ b/.metadata @@ -0,0 +1,45 @@ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled and should not be manually edited. + +version: + revision: "02085feb3f5d8a8156e5e28512b9d99351d510c0" + channel: "stable" + +project_type: app + +# Tracks metadata for the flutter migrate command +migration: + platforms: + - platform: root + create_revision: 02085feb3f5d8a8156e5e28512b9d99351d510c0 + base_revision: 02085feb3f5d8a8156e5e28512b9d99351d510c0 + - platform: android + create_revision: 02085feb3f5d8a8156e5e28512b9d99351d510c0 + base_revision: 02085feb3f5d8a8156e5e28512b9d99351d510c0 + - platform: ios + create_revision: 02085feb3f5d8a8156e5e28512b9d99351d510c0 + base_revision: 02085feb3f5d8a8156e5e28512b9d99351d510c0 + - platform: linux + create_revision: 02085feb3f5d8a8156e5e28512b9d99351d510c0 + base_revision: 02085feb3f5d8a8156e5e28512b9d99351d510c0 + - platform: macos + create_revision: 02085feb3f5d8a8156e5e28512b9d99351d510c0 + base_revision: 02085feb3f5d8a8156e5e28512b9d99351d510c0 + - platform: web + create_revision: 02085feb3f5d8a8156e5e28512b9d99351d510c0 + base_revision: 02085feb3f5d8a8156e5e28512b9d99351d510c0 + - platform: windows + create_revision: 02085feb3f5d8a8156e5e28512b9d99351d510c0 + base_revision: 02085feb3f5d8a8156e5e28512b9d99351d510c0 + + # User provided section + + # List of Local paths (relative to this file) that should be + # ignored by the migrate tool. + # + # Files that are not part of the templates will be ignored by default. + unmanaged_files: + - 'lib/main.dart' + - 'ios/Runner.xcodeproj/project.pbxproj' diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..9c478a6 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,156 @@ +# Delivery App — Build & Feature Changelog +**Date:** 2026-04-29 +**Developer:** Raphael (Emergency: kimi-k2.6) +**Target:** Wesley vdk (Telegram) + +--- + +## ✅ Completed Features + +### 1. Map Themes (Fixed) +- **Standard** — OpenStreetMap default tiles +- **Dark** — CartoDB Dark Matter (replaced Stadia Dark which returned 401 Unauthorized) +- **CartoDB Voyager** — Light themed, good contrast with app UI + +*Note: Stadia Dark requires API key. CartoDB Dark Matter is free.* + +### 2. Overpass Address Integration +- Fetched **5,855 addresses** (151 streets) in Hoogerheide via Overpass API +- Stored locally in `assets/hoogerheide_addresses.json` +- App now checks local cache first (instant), falls back to Nominatim with timeout +- Added "Refresh coordinates" button in RoutePage AppBar + +### 3. Delete Functionality +- **Delete stops:** Via stop details bottom sheet (red button) +- **Delete routes:** Trash icon next to each route in RoutesPage +- Both require confirmation dialog + +### 4. Route Optimization & Display +- **OSRM trip routing** for proper TSP (Traveling Salesman Problem) optimization +- **Route polyline display** using `flutter_map` PolylineLayer +- **Loading indicators** when calculating routes +- Route button (↗️) toggles display on/off + +### 5. Build Environment Setup +- Installed **Eclipse Temurin JDK 17** (`/workspace/jdk/`) +- Installed **Android SDK** (`/workspace/android-sdk/`) +- Installed **CMake 3.22.1** via Android SDK manager +- Fixed missing `source_span: ^1.10.0` dependency +- APK output: **49MB** (consistent across builds) + +--- + +## ❌ Known Issues / Unresolved + +### 1. Route Line Not Displaying +**Status:** Unresolved +**Symptoms:** +- Tapping route button shows loading indicator +- After completion, no polyline appears on map +- OSRM API returns valid geometry (tested manually) +- Polyline decoding appears correct (debug prints added) + +**Likely causes:** +- PolylineLayer z-index issue (might be behind tiles) +- `_showRoute` state not triggering rebuild +- Decoded points might be malformed +- OSRM returns encoded polyline, decoding might fail silently + +**Debug steps:** +```bash +adb logcat | grep flutter # View debug prints from phone +``` + +### 2. Stadia Dark Theme Unusable +**Status:** Replaced with CartoDB Dark +**Root cause:** `tiles.stadiamaps.com` returns 401 Unauthorized +**Solution:** Use CartoDB Dark Matter (free, no auth) or get Stadia API key + +### 3. Coordinate Accuracy +**Status:** Improved, not perfect +**Issue:** Some stops still map to incorrect locations +**Cause:** Database has old/wrong coordinates from previous Nominatim failures +**Fix:** Use "Refresh coordinates" button to re-geocode all stops using Overpass data + +### 4. APK Caching on Telegram +**Status:** Partially fixed +**Issue:** Telegram caches APK files, installing old versions +**Workaround:** Rename APK with timestamp before sending (e.g., `delivery-v20260429-2126-debug.apk`) + +--- + +## 🔧 Technical Debt + +### Code Issues +1. **Missing commas** — Several Dart function calls missing commas between arguments (fixed in multiple places) +2. **Fallback logic** — If OSRM fails, falls back to straight lines between stops (not following streets) +3. **No error UI** — Route/optimization failures fail silently (only debugPrint) +4. **State management** — `_isLoadingRoute` and `_showRoute` might have race conditions + +### Dependencies Added +```yaml +dependencies: + source_span: ^1.10.0 # Fix for string_scanner incompatibility +``` + +### Files Modified +- `lib/main.dart` — Main app logic (routes, stops, map, geocoding) +- `pubspec.yaml` — Added assets reference +- `assets/hoogerheide_addresses.json` — 5,855 addresses from Overpass +- `lib/hoogerheide_streets.dart` — Generated street coordinates (unused now) + +--- + +## 📋 Test Checklist + +- [ ] Route line displays after tapping ↗️ button +- [ ] Loading indicator shows during route calculation +- [ ] Route optimization reorders stops correctly +- [ ] Delete stop works with confirmation +- [ ] Delete route works with confirmation +- [ ] Dark theme (CartoDB) renders correctly +- [ ] "Refresh coordinates" updates stop positions +- [ ] Overpass data loads (no network needed after first fetch) + +--- + +## 🚀 Next Steps (If Resuming) + +1. **Fix route display:** + - Check `adb logcat` for debug prints + - Verify PolylineLayer renders (try hardcoded points) + - Test with 2-3 stops only + +2. **Improve error handling:** + - Show SnackBar on route/optimization failure + - Add retry button + +3. **Local Nominatim (optional):** + - Install PostgreSQL + Nominatim with Netherlands data + - Solves rate-limiting issues permanently + +4. **Unit tests:** + - Test polyline decoding + - Test geocoding logic + - Test route optimization + +--- + +## 📦 Build Commands + +```bash +# Clean build +flutter clean && flutter pub get + +# Release APK +export JAVA_HOME="/home/node/.openclaw/workspace/jdk/jdk-17.0.9+9" +export ANDROID_HOME="/home/node/.openclaw/workspace/android-sdk" +export PATH="$JAVA_HOME/bin:$ANDROID_HOME/cmdline-tools/latest/bin:$ANDROID_HOME/platform-tools:/home/node/.openclaw/workspace/flutter/bin:$PATH" +flutter build apk --release + +# Output: build/app/outputs/flutter-apk/app-release.apk (49MB) +``` + +--- + +**Last updated:** 2026-04-29 23:15 UTC diff --git a/analysis_options.yaml b/analysis_options.yaml new file mode 100644 index 0000000..0d29021 --- /dev/null +++ b/analysis_options.yaml @@ -0,0 +1,28 @@ +# This file configures the analyzer, which statically analyzes Dart code to +# check for errors, warnings, and lints. +# +# The issues identified by the analyzer are surfaced in the UI of Dart-enabled +# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be +# invoked from the command line by running `flutter analyze`. + +# The following line activates a set of recommended lints for Flutter apps, +# packages, and plugins designed to encourage good coding practices. +include: package:flutter_lints/flutter.yaml + +linter: + # The lint rules applied to this project can be customized in the + # section below to disable rules from the `package:flutter_lints/flutter.yaml` + # included above or to enable additional rules. A list of all available lints + # and their documentation is published at https://dart.dev/lints. + # + # Instead of disabling a lint rule for the entire project in the + # section below, it can also be suppressed for a single line of code + # or a specific dart file by using the `// ignore: name_of_lint` and + # `// ignore_for_file: name_of_lint` syntax on the line or in the file + # producing the lint. + rules: + # avoid_print: false # Uncomment to disable the `avoid_print` rule + # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule + +# Additional information about this file can be found at +# https://dart.dev/guides/language/analysis-options diff --git a/android/.gitignore b/android/.gitignore new file mode 100644 index 0000000..be3943c --- /dev/null +++ b/android/.gitignore @@ -0,0 +1,14 @@ +gradle-wrapper.jar +/.gradle +/captures/ +/gradlew +/gradlew.bat +/local.properties +GeneratedPluginRegistrant.java +.cxx/ + +# Remember to never publicly share your keystore. +# See https://flutter.dev/to/reference-keystore +key.properties +**/*.keystore +**/*.jks diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts new file mode 100644 index 0000000..afa439b --- /dev/null +++ b/android/app/build.gradle.kts @@ -0,0 +1,44 @@ +plugins { + id("com.android.application") + id("kotlin-android") + // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins. + id("dev.flutter.flutter-gradle-plugin") +} + +android { + namespace = "com.example.delivery_app" + compileSdk = flutter.compileSdkVersion + ndkVersion = flutter.ndkVersion + + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + + kotlinOptions { + jvmTarget = JavaVersion.VERSION_17.toString() + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId = "com.example.delivery_app" + // You can update the following values to match your application needs. + // For more information, see: https://flutter.dev/to/review-gradle-config. + minSdk = flutter.minSdkVersion + targetSdk = flutter.targetSdkVersion + versionCode = flutter.versionCode + versionName = flutter.versionName + } + + buildTypes { + release { + // TODO: Add your own signing config for the release build. + // Signing with the debug keys for now, so `flutter run --release` works. + signingConfig = signingConfigs.getByName("debug") + } + } +} + +flutter { + source = "../.." +} diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000..399f698 --- /dev/null +++ b/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..76b8aa7 --- /dev/null +++ b/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/android/app/src/main/kotlin/com/example/delivery_app/MainActivity.kt b/android/app/src/main/kotlin/com/example/delivery_app/MainActivity.kt new file mode 100644 index 0000000..f072850 --- /dev/null +++ b/android/app/src/main/kotlin/com/example/delivery_app/MainActivity.kt @@ -0,0 +1,5 @@ +package com.example.delivery_app + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity : FlutterActivity() diff --git a/android/app/src/main/res/drawable-v21/launch_background.xml b/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 0000000..f74085f --- /dev/null +++ b/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/drawable/launch_background.xml b/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 0000000..304732f --- /dev/null +++ b/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..db77bb4b7b0906d62b1847e87f15cdcacf6a4f29 GIT binary patch literal 544 zcmeAS@N?(olHy`uVBq!ia0vp^9w5xY3?!3`olAj~WQl7;NpOBzNqJ&XDuZK6ep0G} zXKrG8YEWuoN@d~6R2!h8bpbvhu0Wd6uZuB!w&u2PAxD2eNXD>P5D~Wn-+_Wa#27Xc zC?Zj|6r#X(-D3u$NCt}(Ms06KgJ4FxJVv{GM)!I~&n8Bnc94O7-Hd)cjDZswgC;Qs zO=b+9!WcT8F?0rF7!Uys2bs@gozCP?z~o%U|N3vA*22NaGQG zlg@K`O_XuxvZ&Ks^m&R!`&1=spLvfx7oGDKDwpwW`#iqdw@AL`7MR}m`rwr|mZgU`8P7SBkL78fFf!WnuYWm$5Z0 zNXhDbCv&49sM544K|?c)WrFfiZvCi9h0O)B3Pgg&ebxsLQ05GG~ AQ2+n{ literal 0 HcmV?d00001 diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..17987b79bb8a35cc66c3c1fd44f5a5526c1b78be GIT binary patch literal 442 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA3?vioaBc-sk|nMYCBgY=CFO}lsSJ)O`AMk? zp1FzXsX?iUDV2pMQ*D5Xx&nMcT!A!W`0S9QKQy;}1Cl^CgaH=;G9cpY;r$Q>i*pfB zP2drbID<_#qf;rPZx^FqH)F_D#*k@@q03KywUtLX8Ua?`H+NMzkczFPK3lFz@i_kW%1NOn0|D2I9n9wzH8m|-tHjsw|9>@K=iMBhxvkv6m8Y-l zytQ?X=U+MF$@3 zt`~i=@j|6y)RWMK--}M|=T`o&^Ni>IoWKHEbBXz7?A@mgWoL>!*SXo`SZH-*HSdS+ yn*9;$7;m`l>wYBC5bq;=U}IMqLzqbYCidGC!)_gkIk_C@Uy!y&wkt5C($~2D>~)O*cj@FGjOCM)M>_ixfudOh)?xMu#Fs z#}Y=@YDTwOM)x{K_j*Q;dPdJ?Mz0n|pLRx{4n|)f>SXlmV)XB04CrSJn#dS5nK2lM zrZ9#~WelCp7&e13Y$jvaEXHskn$2V!!DN-nWS__6T*l;H&Fopn?A6HZ-6WRLFP=R` zqG+CE#d4|IbyAI+rJJ`&x9*T`+a=p|0O(+s{UBcyZdkhj=yS1>AirP+0R;mf2uMgM zC}@~JfByORAh4SyRgi&!(cja>F(l*O+nd+@4m$|6K6KDn_&uvCpV23&>G9HJp{xgg zoq1^2_p9@|WEo z*X_Uko@K)qYYv~>43eQGMdbiGbo>E~Q& zrYBH{QP^@Sti!`2)uG{irBBq@y*$B zi#&(U-*=fp74j)RyIw49+0MRPMRU)+a2r*PJ$L5roHt2$UjExCTZSbq%V!HeS7J$N zdG@vOZB4v_lF7Plrx+hxo7(fCV&}fHq)$ literal 0 HcmV?d00001 diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..d5f1c8d34e7a88e3f88bea192c3a370d44689c3c GIT binary patch literal 1031 zcmeAS@N?(olHy`uVBq!ia0vp^6F``Q8Ax83A=Cw=BuiW)N`mv#O3D+9QW+dm@{>{( zJaZG%Q-e|yQz{EjrrIztFa`(sgt!6~Yi|1%a`XoT0ojZ}lNrNjb9xjc(B0U1_% zz5^97Xt*%oq$rQy4?0GKNfJ44uvxI)gC`h-NZ|&0-7(qS@?b!5r36oQ}zyZrNO3 zMO=Or+<~>+A&uN&E!^Sl+>xE!QC-|oJv`ApDhqC^EWD|@=#J`=d#Xzxs4ah}w&Jnc z$|q_opQ^2TrnVZ0o~wh<3t%W&flvYGe#$xqda2bR_R zvPYgMcHgjZ5nSA^lJr%;<&0do;O^tDDh~=pIxA#coaCY>&N%M2^tq^U%3DB@ynvKo}b?yu-bFc-u0JHzced$sg7S3zqI(2 z#Km{dPr7I=pQ5>FuK#)QwK?Y`E`B?nP+}U)I#c1+FM*1kNvWG|a(TpksZQ3B@sD~b zpQ2)*V*TdwjFOtHvV|;OsiDqHi=6%)o4b!)x$)%9pGTsE z-JL={-Ffv+T87W(Xpooq<`r*VzWQcgBN$$`u}f>-ZQI1BB8ykN*=e4rIsJx9>z}*o zo~|9I;xof literal 0 HcmV?d00001 diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..4d6372eebdb28e45604e46eeda8dd24651419bc0 GIT binary patch literal 1443 zcmb`G{WsKk6vsdJTdFg%tJav9_E4vzrOaqkWF|A724Nly!y+?N9`YV6wZ}5(X(D_N(?!*n3`|_r0Hc?=PQw&*vnU?QTFY zB_MsH|!j$PP;I}?dppoE_gA(4uc!jV&0!l7_;&p2^pxNo>PEcNJv za5_RT$o2Mf!<+r?&EbHH6nMoTsDOa;mN(wv8RNsHpG)`^ymG-S5By8=l9iVXzN_eG%Xg2@Xeq76tTZ*dGh~Lo9vl;Zfs+W#BydUw zCkZ$o1LqWQO$FC9aKlLl*7x9^0q%0}$OMlp@Kk_jHXOjofdePND+j!A{q!8~Jn+s3 z?~~w@4?egS02}8NuulUA=L~QQfm;MzCGd)XhiftT;+zFO&JVyp2mBww?;QByS_1w! zrQlx%{^cMj0|Bo1FjwY@Q8?Hx0cIPF*@-ZRFpPc#bBw{5@tD(5%sClzIfl8WU~V#u zm5Q;_F!wa$BSpqhN>W@2De?TKWR*!ujY;Yylk_X5#~V!L*Gw~;$%4Q8~Mad z@`-kG?yb$a9cHIApZDVZ^U6Xkp<*4rU82O7%}0jjHlK{id@?-wpN*fCHXyXh(bLt* zPc}H-x0e4E&nQ>y%B-(EL=9}RyC%MyX=upHuFhAk&MLbsF0LP-q`XnH78@fT+pKPW zu72MW`|?8ht^tz$iC}ZwLp4tB;Q49K!QCF3@!iB1qOI=?w z7In!}F~ij(18UYUjnbmC!qKhPo%24?8U1x{7o(+?^Zu0Hx81|FuS?bJ0jgBhEMzf< zCgUq7r2OCB(`XkKcN-TL>u5y#dD6D!)5W?`O5)V^>jb)P)GBdy%t$uUMpf$SNV31$ zb||OojAbvMP?T@$h_ZiFLFVHDmbyMhJF|-_)HX3%m=CDI+ID$0^C>kzxprBW)hw(v zr!Gmda);ICoQyhV_oP5+C%?jcG8v+D@9f?Dk*!BxY}dazmrT@64UrP3hlslANK)bq z$67n83eh}OeW&SV@HG95P|bjfqJ7gw$e+`Hxo!4cx`jdK1bJ>YDSpGKLPZ^1cv$ek zIB?0S<#tX?SJCLWdMd{-ME?$hc7A$zBOdIJ)4!KcAwb=VMov)nK;9z>x~rfT1>dS+ zZ6#`2v@`jgbqq)P22H)Tx2CpmM^o1$B+xT6`(v%5xJ(?j#>Q$+rx_R|7TzDZe{J6q zG1*EcU%tE?!kO%^M;3aM6JN*LAKUVb^xz8-Pxo#jR5(-KBeLJvA@-gxNHx0M-ZJLl z;#JwQoh~9V?`UVo#}{6ka@II>++D@%KqGpMdlQ}?9E*wFcf5(#XQnP$Dk5~%iX^>f z%$y;?M0BLp{O3a(-4A?ewryHrrD%cx#Q^%KY1H zNre$ve+vceSLZcNY4U(RBX&)oZn*Py()h)XkE?PL$!bNb{N5FVI2Y%LKEm%yvpyTP z(1P?z~7YxD~Rf<(a@_y` literal 0 HcmV?d00001 diff --git a/android/app/src/main/res/values-night/styles.xml b/android/app/src/main/res/values-night/styles.xml new file mode 100644 index 0000000..06952be --- /dev/null +++ b/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..cb1ef88 --- /dev/null +++ b/android/app/src/main/res/values/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 0000000..399f698 --- /dev/null +++ b/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/android/build.gradle.kts b/android/build.gradle.kts new file mode 100644 index 0000000..dbee657 --- /dev/null +++ b/android/build.gradle.kts @@ -0,0 +1,24 @@ +allprojects { + repositories { + google() + mavenCentral() + } +} + +val newBuildDir: Directory = + rootProject.layout.buildDirectory + .dir("../../build") + .get() +rootProject.layout.buildDirectory.value(newBuildDir) + +subprojects { + val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name) + project.layout.buildDirectory.value(newSubprojectBuildDir) +} +subprojects { + project.evaluationDependsOn(":app") +} + +tasks.register("clean") { + delete(rootProject.layout.buildDirectory) +} diff --git a/android/gradle.properties b/android/gradle.properties new file mode 100644 index 0000000..fbee1d8 --- /dev/null +++ b/android/gradle.properties @@ -0,0 +1,2 @@ +org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError +android.useAndroidX=true diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..e4ef43f --- /dev/null +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-all.zip diff --git a/android/settings.gradle.kts b/android/settings.gradle.kts new file mode 100644 index 0000000..ca7fe06 --- /dev/null +++ b/android/settings.gradle.kts @@ -0,0 +1,26 @@ +pluginManagement { + val flutterSdkPath = + run { + val properties = java.util.Properties() + file("local.properties").inputStream().use { properties.load(it) } + val flutterSdkPath = properties.getProperty("flutter.sdk") + require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" } + flutterSdkPath + } + + includeBuild("$flutterSdkPath/packages/flutter_tools/gradle") + + repositories { + google() + mavenCentral() + gradlePluginPortal() + } +} + +plugins { + id("dev.flutter.flutter-plugin-loader") version "1.0.0" + id("com.android.application") version "8.11.1" apply false + id("org.jetbrains.kotlin.android") version "2.2.20" apply false +} + +include(":app") diff --git a/assets/hoogerheide_addresses.json b/assets/hoogerheide_addresses.json new file mode 100644 index 0000000..01b3708 --- /dev/null +++ b/assets/hoogerheide_addresses.json @@ -0,0 +1 @@ +{"addresses":[{"street":"KLM laan","housenumber":"20","lat":51.426372,"lon":4.3287999},{"street":"KLM laan","housenumber":"22","lat":51.4263329,"lon":4.328858},{"street":"Antwerpsestraatweg","housenumber":"181","lat":51.455173,"lon":4.311831},{"street":"Kooiweg","housenumber":"40","lat":51.4301532,"lon":4.3482979},{"street":"Huijbergseweg","housenumber":"3a","lat":51.4232902,"lon":4.3255204},{"street":"Antwerpsestraatweg","housenumber":"163","lat":51.4480746,"lon":4.3129487},{"street":"Antwerpsestraatweg","housenumber":"180","lat":51.4480687,"lon":4.3134734},{"street":"Groene Papegaai","housenumber":"180","lat":51.4167497,"lon":4.3489786},{"street":"Groene Papegaai","housenumber":"181","lat":51.4167147,"lon":4.3491809},{"street":"Groene Papegaai","housenumber":"182","lat":51.416682,"lon":4.3493821},{"street":"Groene Papegaai","housenumber":"183","lat":51.4166481,"lon":4.3495812},{"street":"Groene Papegaai","housenumber":"184","lat":51.4168968,"lon":4.3494884},{"street":"Groene Papegaai","housenumber":"185","lat":51.4169201,"lon":4.3492305},{"street":"Groene Papegaai","housenumber":"186","lat":51.4169438,"lon":4.3489768},{"street":"Groene Papegaai","housenumber":"187","lat":51.4171398,"lon":4.3489147},{"street":"Groene Papegaai","housenumber":"188","lat":51.4171936,"lon":4.3491825},{"street":"Groene Papegaai","housenumber":"189","lat":51.4171865,"lon":4.3494815},{"street":"Groene Papegaai","housenumber":"18a","lat":51.4179024,"lon":4.3438228},{"street":"Groene Papegaai","housenumber":"19","lat":51.4157748,"lon":4.3463804},{"street":"Kooiweg","housenumber":"19","lat":51.4297069,"lon":4.3482352},{"street":"Voltweg","housenumber":"19","lat":51.4277433,"lon":4.3528528},{"street":"Groene Papegaai","housenumber":"190","lat":51.4159848,"lon":4.3500454},{"street":"Groene Papegaai","housenumber":"191","lat":51.4159624,"lon":4.3505321},{"street":"Groene Papegaai","housenumber":"192","lat":51.4161258,"lon":4.3505173},{"street":"Groene Papegaai","housenumber":"193","lat":51.4161527,"lon":4.3502187},{"street":"Groene Papegaai","housenumber":"194","lat":51.4161689,"lon":4.3499167},{"street":"Groene Papegaai","housenumber":"195","lat":51.4163589,"lon":4.3499409},{"street":"Groene Papegaai","housenumber":"196","lat":51.416321,"lon":4.3502211},{"street":"Groene Papegaai","housenumber":"197","lat":51.4163126,"lon":4.3505361},{"street":"Groene Papegaai","housenumber":"198","lat":51.4164936,"lon":4.3505088},{"street":"Groene Papegaai","housenumber":"199","lat":51.4165015,"lon":4.3502511},{"street":"Groene Papegaai","housenumber":"19a","lat":51.4150937,"lon":4.346875},{"street":"Groene Papegaai","housenumber":"19b","lat":51.4149483,"lon":4.3469675},{"street":"Groene Papegaai","housenumber":"19c","lat":51.4147923,"lon":4.3491575},{"street":"Groene Papegaai","housenumber":"19d","lat":51.4147831,"lon":4.3492602},{"street":"Groene Papegaai","housenumber":"19e","lat":51.4154195,"lon":4.3521977},{"street":"Voltweg","housenumber":"1a","lat":51.4300387,"lon":4.3515517},{"street":"Middenweg","housenumber":"1c","lat":51.4280731,"lon":4.3470335},{"street":"Buitendreef","housenumber":"5","lat":51.4257565,"lon":4.3477789},{"street":"Edisonweg","housenumber":"5","lat":51.4258101,"lon":4.346728},{"street":"Postweg","housenumber":"5","lat":51.4263358,"lon":4.343193},{"street":"Voltweg","housenumber":"5","lat":51.4295779,"lon":4.3523481},{"street":"Wattweg","housenumber":"5","lat":51.427048,"lon":4.3514838},{"street":"Buitendreef","housenumber":"50","lat":51.4267597,"lon":4.3564843},{"street":"Ampèreweg","housenumber":"1","lat":51.4279279,"lon":4.349355},{"street":"Buitendreef","housenumber":"1","lat":51.4253473,"lon":4.3462496},{"street":"Edisonweg","housenumber":"1","lat":51.4271032,"lon":4.3465834},{"street":"Ampèreweg","housenumber":"11","lat":51.4270471,"lon":4.3490648},{"street":"Buitendreef","housenumber":"11","lat":51.4260338,"lon":4.3496418},{"street":"Middenweg","housenumber":"11","lat":51.4280561,"lon":4.3483712},{"street":"Voltweg","housenumber":"11","lat":51.4289158,"lon":4.3522797},{"street":"Groene Papegaai","housenumber":"110","lat":51.417257,"lon":4.3457367},{"street":"Buitendreef","housenumber":"10","lat":51.4258089,"lon":4.3506391},{"street":"Postweg","housenumber":"10","lat":51.4262064,"lon":4.3448065},{"street":"Voltweg","housenumber":"10","lat":51.428289,"lon":4.35201},{"street":"Groene Papegaai","housenumber":"101","lat":51.4167379,"lon":4.3461366},{"street":"Huijbergseweg","housenumber":"101","lat":51.4238114,"lon":4.3433659},{"street":"Groene Papegaai","housenumber":"102","lat":51.4167596,"lon":4.3459882},{"street":"Groene Papegaai","housenumber":"103","lat":51.4167791,"lon":4.3457989},{"street":"Huijbergseweg","housenumber":"103","lat":51.4240287,"lon":4.3435478},{"street":"Groene Papegaai","housenumber":"104","lat":51.4166222,"lon":4.3457128},{"street":"Groene Papegaai","housenumber":"105","lat":51.4165328,"lon":4.3457526},{"street":"Groene Papegaai","housenumber":"106","lat":51.4164435,"lon":4.3457919},{"street":"Groene Papegaai","housenumber":"107","lat":51.4164883,"lon":4.3461261},{"street":"Groene Papegaai","housenumber":"108","lat":51.4172572,"lon":4.3460679},{"street":"Groene Papegaai","housenumber":"109","lat":51.417267,"lon":4.3459225},{"street":"Buitendreef","housenumber":"10b","lat":51.4252857,"lon":4.3503403},{"street":"Middenweg","housenumber":"2","lat":51.4277959,"lon":4.3481685},{"street":"Groene Papegaai","housenumber":"111","lat":51.4170819,"lon":4.3457014},{"street":"Huijbergseweg","housenumber":"111","lat":51.4238982,"lon":4.3480513},{"street":"Groene Papegaai","housenumber":"112","lat":51.4169454,"lon":4.3457481},{"street":"Groene Papegaai","housenumber":"113","lat":51.4170068,"lon":4.3460491},{"street":"Groene Papegaai","housenumber":"114","lat":51.4176855,"lon":4.3461743},{"street":"Groene Papegaai","housenumber":"115","lat":51.4176969,"lon":4.3460227},{"street":"Groene Papegaai","housenumber":"116","lat":51.4177172,"lon":4.3458683},{"street":"Groene Papegaai","housenumber":"117","lat":51.4177373,"lon":4.345709},{"street":"Groene Papegaai","housenumber":"118","lat":51.4175309,"lon":4.3456622},{"street":"Groene Papegaai","housenumber":"119","lat":51.4174193,"lon":4.345706},{"street":"Ampèreweg","housenumber":"11a","lat":51.426948,"lon":4.3488942},{"street":"Ampèreweg","housenumber":"12","lat":51.4259696,"lon":4.348493},{"street":"Buitendreef","housenumber":"12","lat":51.4256103,"lon":4.3515155},{"street":"Kooiweg","housenumber":"12","lat":51.4291254,"lon":4.3446442},{"street":"Middenweg","housenumber":"12","lat":51.4283122,"lon":4.3511143},{"street":"Postweg","housenumber":"12","lat":51.4265921,"lon":4.3446422},{"street":"Voltweg","housenumber":"12","lat":51.428203,"lon":4.3520551},{"street":"Groene Papegaai","housenumber":"120","lat":51.4174963,"lon":4.3459962},{"street":"Groene Papegaai","housenumber":"123","lat":51.4165082,"lon":4.3466672},{"street":"Groene Papegaai","housenumber":"124","lat":51.4166555,"lon":4.3465305},{"street":"Groene Papegaai","housenumber":"125","lat":51.4168225,"lon":4.3464577},{"street":"Groene Papegaai","housenumber":"126","lat":51.4170038,"lon":4.3464954},{"street":"Groene Papegaai","housenumber":"127","lat":51.4173829,"lon":4.3463354},{"street":"Groene Papegaai","housenumber":"128","lat":51.4176178,"lon":4.3464461},{"street":"Huijbergseweg","housenumber":"128","lat":51.4225446,"lon":4.3424459},{"street":"Groene Papegaai","housenumber":"129","lat":51.4175882,"lon":4.3467062},{"street":"Buitendreef","housenumber":"12a","lat":51.4260185,"lon":4.3514752},{"street":"Ampèreweg","housenumber":"13","lat":51.4264921,"lon":4.3490963},{"street":"Buitendreef","housenumber":"13","lat":51.426092,"lon":4.3499785},{"street":"Middenweg","housenumber":"13","lat":51.4284161,"lon":4.3495391},{"street":"Groene Papegaai","housenumber":"130","lat":51.4173903,"lon":4.3466468},{"street":"Groene Papegaai","housenumber":"131","lat":51.417555,"lon":4.3470193},{"street":"Groene Papegaai","housenumber":"132","lat":51.4171408,"lon":4.3466999},{"street":"Groene Papegaai","housenumber":"133","lat":51.4171785,"lon":4.3469836},{"street":"Groene Papegaai","housenumber":"134","lat":51.4171583,"lon":4.3472498},{"street":"Huijbergseweg","housenumber":"134","lat":51.4234406,"lon":4.3431155},{"street":"Groene Papegaai","housenumber":"135","lat":51.4173508,"lon":4.3472213},{"street":"Groene Papegaai","housenumber":"136","lat":51.4175275,"lon":4.3472792},{"street":"Huijbergseweg","housenumber":"136","lat":51.4234577,"lon":4.3436414},{"street":"Groene Papegaai","housenumber":"137","lat":51.4174947,"lon":4.347581},{"street":"Groene Papegaai","housenumber":"138","lat":51.4173275,"lon":4.347498},{"street":"Groene Papegaai","housenumber":"139","lat":51.4171331,"lon":4.347487},{"street":"Huijbergseweg","housenumber":"139","lat":51.4267607,"lon":4.3620199},{"street":"Ampèreweg","housenumber":"13a","lat":51.42642,"lon":4.3491049},{"street":"Buitendreef","housenumber":"13a","lat":51.4263626,"lon":4.350163},{"street":"Buitendreef","housenumber":"14","lat":51.4261263,"lon":4.3519548},{"street":"Middenweg","housenumber":"14","lat":51.4281032,"lon":4.3515742},{"street":"Postweg","housenumber":"14","lat":51.4269647,"lon":4.3446027},{"street":"Voltweg","housenumber":"14","lat":51.4278896,"lon":4.3521161},{"street":"Groene Papegaai","housenumber":"140","lat":51.417296,"lon":4.3478126},{"street":"Groene Papegaai","housenumber":"141","lat":51.4174683,"lon":4.3478287},{"street":"Huijbergseweg","housenumber":"141","lat":51.426962,"lon":4.3617399},{"street":"Groene Papegaai","housenumber":"142","lat":51.4174355,"lon":4.3481305},{"street":"Groene Papegaai","housenumber":"143","lat":51.4172387,"lon":4.3480819},{"street":"Groene Papegaai","housenumber":"144","lat":51.4171846,"lon":4.3483803},{"street":"Groene Papegaai","housenumber":"145","lat":51.4174048,"lon":4.3484158},{"street":"Groene Papegaai","housenumber":"146","lat":51.4173658,"lon":4.3488514},{"street":"Voltweg","housenumber":"14a","lat":51.4279759,"lon":4.3520851},{"street":"Middenweg","housenumber":"15","lat":51.4287286,"lon":4.3493704},{"street":"Voltweg","housenumber":"15","lat":51.4284536,"lon":4.3524901},{"street":"Middenweg","housenumber":"15a","lat":51.4286401,"lon":4.3494139},{"street":"Voltweg","housenumber":"15a","lat":51.4283279,"lon":4.3525587},{"street":"Voltweg","housenumber":"15b","lat":51.4283915,"lon":4.3528656},{"street":"Voltweg","housenumber":"15c","lat":51.4283728,"lon":4.3529898},{"street":"Buitendreef","housenumber":"16","lat":51.4262475,"lon":4.3524583},{"street":"Kooiweg","housenumber":"16","lat":51.4294742,"lon":4.3470252},{"street":"Middenweg","housenumber":"16","lat":51.4281894,"lon":4.3515283},{"street":"Groene Papegaai","housenumber":"27","lat":51.4145497,"lon":4.3521457},{"street":"Kooiweg","housenumber":"27","lat":51.4307027,"lon":4.3520522},{"street":"Middenweg","housenumber":"27","lat":51.4287726,"lon":4.3513339},{"street":"Middenweg","housenumber":"27a","lat":51.4288022,"lon":4.351471},{"street":"Kooiweg","housenumber":"28","lat":51.4306713,"lon":4.3525706},{"street":"Groene Papegaai","housenumber":"283","lat":51.4153649,"lon":4.3514973},{"street":"Groene Papegaai","housenumber":"284","lat":51.4152593,"lon":4.3514409},{"street":"Groene Papegaai","housenumber":"285","lat":51.4151834,"lon":4.3516547},{"street":"Groene Papegaai","housenumber":"286","lat":51.4150701,"lon":4.3518538},{"street":"Groene Papegaai","housenumber":"287","lat":51.4151276,"lon":4.3520153},{"street":"Groene Papegaai","housenumber":"288","lat":51.4152636,"lon":4.3520015},{"street":"Groene Papegaai","housenumber":"289","lat":51.4153419,"lon":4.3518306},{"street":"Groene Papegaai","housenumber":"290","lat":51.4150837,"lon":4.3511853},{"street":"Groene Papegaai","housenumber":"291","lat":51.4150805,"lon":4.351374},{"street":"Groene Papegaai","housenumber":"292","lat":51.4150107,"lon":4.3514967},{"street":"Groene Papegaai","housenumber":"293","lat":51.4149477,"lon":4.3516316},{"street":"Groene Papegaai","housenumber":"294","lat":51.4148346,"lon":4.3515592},{"street":"Groene Papegaai","housenumber":"295","lat":51.4148637,"lon":4.3512869},{"street":"Groene Papegaai","housenumber":"296","lat":51.4149446,"lon":4.3511097},{"street":"Groene Papegaai","housenumber":"297","lat":51.4146227,"lon":4.3507376},{"street":"Groene Papegaai","housenumber":"298","lat":51.4147105,"lon":4.3508253},{"street":"Groene Papegaai","housenumber":"299","lat":51.4148207,"lon":4.3509227},{"street":"Buitendreef","housenumber":"2a","lat":51.4249701,"lon":4.346287},{"street":"Middenweg","housenumber":"2a","lat":51.4269864,"lon":4.3447342},{"street":"Postweg","housenumber":"2a","lat":51.4246877,"lon":4.3448556},{"street":"Voltweg","housenumber":"2a","lat":51.4296953,"lon":4.3512701},{"street":"Middenweg","housenumber":"2b","lat":51.4271663,"lon":4.3456229},{"street":"Voltweg","housenumber":"2b","lat":51.4296608,"lon":4.3511071},{"street":"Kooiweg","housenumber":"16b","lat":51.4296738,"lon":4.3471741},{"street":"Middenweg","housenumber":"17","lat":51.4290023,"lon":4.349242},{"street":"Voltweg","housenumber":"17","lat":51.428048,"lon":4.3527452},{"street":"Groene Papegaai","housenumber":"170","lat":51.4158916,"lon":4.3494135},{"street":"Groene Papegaai","housenumber":"171","lat":51.4159147,"lon":4.3490809},{"street":"Groene Papegaai","housenumber":"172","lat":51.4160711,"lon":4.3490692},{"street":"Groene Papegaai","housenumber":"173","lat":51.416263,"lon":4.3490392},{"street":"Groene Papegaai","housenumber":"174","lat":51.4162032,"lon":4.3492291},{"street":"Groene Papegaai","housenumber":"175","lat":51.416143,"lon":4.349421},{"street":"Groene Papegaai","housenumber":"176","lat":51.4160849,"lon":4.3496108},{"street":"Groene Papegaai","housenumber":"177","lat":51.416398,"lon":4.3495152},{"street":"Groene Papegaai","housenumber":"178","lat":51.4164539,"lon":4.3492594},{"street":"Groene Papegaai","housenumber":"179","lat":51.4165227,"lon":4.3490177},{"street":"Voltweg","housenumber":"17a","lat":51.4281963,"lon":4.3527213},{"street":"Groene Papegaai","housenumber":"18","lat":51.4181475,"lon":4.3432942},{"street":"Kooiweg","housenumber":"18","lat":51.4297466,"lon":4.3476447},{"street":"Middenweg","housenumber":"18","lat":51.4283912,"lon":4.3514597},{"street":"Voltweg","housenumber":"18","lat":51.4271659,"lon":4.3526214},{"street":"Buitendreef","housenumber":"2","lat":51.4247605,"lon":4.3456732},{"street":"Edisonweg","housenumber":"2","lat":51.4264236,"lon":4.3461899},{"street":"Groene Papegaai","housenumber":"2","lat":51.4233304,"lon":4.3444428},{"street":"Scheidreef","housenumber":"2","lat":51.4159562,"lon":4.3444209},{"street":"Voltweg","housenumber":"2","lat":51.4298407,"lon":4.3511514},{"street":"Buitendreef","housenumber":"20","lat":51.4263418,"lon":4.352979},{"street":"Groene Papegaai","housenumber":"20","lat":51.4178745,"lon":4.3449394},{"street":"Kooiweg","housenumber":"20","lat":51.4299072,"lon":4.3485183},{"street":"Middenweg","housenumber":"20","lat":51.4284196,"lon":4.3515976},{"street":"Voltweg","housenumber":"20","lat":51.4267991,"lon":4.3528167},{"street":"Groene Papegaai","housenumber":"200","lat":51.416536,"lon":4.3499376},{"street":"Groene Papegaai","housenumber":"201","lat":51.4167349,"lon":4.3499769},{"street":"Groene Papegaai","housenumber":"202","lat":51.4166739,"lon":4.3504718},{"street":"Groene Papegaai","housenumber":"203","lat":51.4168587,"lon":4.3504779},{"street":"Groene Papegaai","housenumber":"204","lat":51.4170238,"lon":4.3501892},{"street":"Groene Papegaai","housenumber":"205","lat":51.4170674,"lon":4.3498665},{"street":"Groene Papegaai","housenumber":"206","lat":51.417266,"lon":4.3499555},{"street":"Groene Papegaai","housenumber":"207","lat":51.4172342,"lon":4.3502093},{"street":"Groene Papegaai","housenumber":"208","lat":51.4170853,"lon":4.3504936},{"street":"Groene Papegaai","housenumber":"209","lat":51.4158083,"lon":4.3499966},{"street":"Buitendreef","housenumber":"20a","lat":51.4263803,"lon":4.3532288},{"street":"Groene Papegaai","housenumber":"21","lat":51.4151602,"lon":4.3459934},{"street":"Kooiweg","housenumber":"21","lat":51.4296587,"lon":4.34895},{"street":"Groene Papegaai","housenumber":"210","lat":51.4157607,"lon":4.3502821},{"street":"Groene Papegaai","housenumber":"211","lat":51.4157305,"lon":4.3505602},{"street":"Groene Papegaai","housenumber":"212","lat":51.4157416,"lon":4.3512041},{"street":"Groene Papegaai","housenumber":"213","lat":51.4157656,"lon":4.3509708},{"street":"Groene Papegaai","housenumber":"214","lat":51.4159969,"lon":4.3508836},{"street":"Groene Papegaai","housenumber":"215","lat":51.415962,"lon":4.3510485},{"street":"Groene Papegaai","housenumber":"216","lat":51.4159259,"lon":4.3512124},{"street":"Groene Papegaai","housenumber":"217","lat":51.4158906,"lon":4.3513706},{"street":"Groene Papegaai","housenumber":"218","lat":51.4162499,"lon":4.351207},{"street":"Groene Papegaai","housenumber":"219","lat":51.4161351,"lon":4.3512178},{"street":"Kooiweg","housenumber":"21a","lat":51.4299717,"lon":4.3487793},{"street":"Groene Papegaai","housenumber":"22","lat":51.4158629,"lon":4.3451579},{"street":"Kooiweg","housenumber":"22","lat":51.4300745,"lon":4.349278},{"street":"Groene Papegaai","housenumber":"220","lat":51.4162388,"lon":4.3509257},{"street":"Groene Papegaai","housenumber":"221","lat":51.4164964,"lon":4.3508283},{"street":"Groene Papegaai","housenumber":"222","lat":51.4164895,"lon":4.3509788},{"street":"Groene Papegaai","housenumber":"223","lat":51.4164821,"lon":4.3511272},{"street":"Groene Papegaai","housenumber":"224","lat":51.4164717,"lon":4.3512706},{"street":"Groene Papegaai","housenumber":"225","lat":51.4168065,"lon":4.3510946},{"street":"Groene Papegaai","housenumber":"226","lat":51.4166976,"lon":4.3511055},{"street":"Groene Papegaai","housenumber":"227","lat":51.4167843,"lon":4.3508002},{"street":"Groene Papegaai","housenumber":"228","lat":51.4170123,"lon":4.3507353},{"street":"Groene Papegaai","housenumber":"229","lat":51.417002,"lon":4.350879},{"street":"Kooiweg","housenumber":"22a","lat":51.4300439,"lon":4.3491347},{"street":"Groene Papegaai","housenumber":"23","lat":51.4145616,"lon":4.3514554},{"street":"Middenweg","housenumber":"23","lat":51.4285638,"lon":4.3500144},{"street":"Voltweg","housenumber":"23","lat":51.4272602,"lon":4.3531082},{"street":"Groene Papegaai","housenumber":"230","lat":51.4169931,"lon":4.3510263},{"street":"Groene Papegaai","housenumber":"231","lat":51.4169836,"lon":4.3511724},{"street":"Kooiweg","housenumber":"23a","lat":51.4296429,"lon":4.3498578},{"street":"Kooiweg","housenumber":"24","lat":51.4302723,"lon":4.3501493},{"street":"Groene Papegaai","housenumber":"25","lat":51.4147453,"lon":4.3518969},{"street":"Middenweg","housenumber":"25","lat":51.4285793,"lon":4.3508206},{"street":"Voltweg","housenumber":"25","lat":51.427003,"lon":4.3536853},{"street":"Groene Papegaai","housenumber":"259","lat":51.4150317,"lon":4.3526357},{"street":"Voltweg","housenumber":"25a","lat":51.427013,"lon":4.3532377},{"street":"Kooiweg","housenumber":"26","lat":51.4305755,"lon":4.3514345},{"street":"Groene Papegaai","housenumber":"261","lat":51.4152702,"lon":4.3523568},{"street":"Groene Papegaai","housenumber":"266","lat":51.4161539,"lon":4.3530033},{"street":"Groene Papegaai","housenumber":"267","lat":51.4163011,"lon":4.3529305},{"street":"Buitendreef","housenumber":"3","lat":51.4254191,"lon":4.3467505},{"street":"Voltweg","housenumber":"3","lat":51.4299907,"lon":4.3521295},{"street":"Groene Papegaai","housenumber":"300","lat":51.4147325,"lon":4.3510402},{"street":"Groene Papegaai","housenumber":"301","lat":51.4146365,"lon":4.3511249},{"street":"Groene Papegaai","housenumber":"302","lat":51.4145112,"lon":4.3509717},{"street":"Groene Papegaai","housenumber":"303","lat":51.4154998,"lon":4.3511077},{"street":"Groene Papegaai","housenumber":"305","lat":51.4155542,"lon":4.3504245},{"street":"Groene Papegaai","housenumber":"306","lat":51.4155597,"lon":4.3502231},{"street":"Groene Papegaai","housenumber":"307","lat":51.4155718,"lon":4.3500083},{"street":"Groene Papegaai","housenumber":"308","lat":51.4156107,"lon":4.3497567},{"street":"Groene Papegaai","housenumber":"309","lat":51.4154563,"lon":4.3497901},{"street":"Abdijlaan","housenumber":"31","lat":51.4229797,"lon":4.3641471},{"street":"Groene Papegaai","housenumber":"31","lat":51.4161857,"lon":4.3541644},{"street":"Kooiweg","housenumber":"31","lat":51.431801,"lon":4.3573195},{"street":"Voltweg","housenumber":"2c","lat":51.4302166,"lon":4.3509638},{"street":"Groene Papegaai","housenumber":"311","lat":51.4153713,"lon":4.3501979},{"street":"Groene Papegaai","housenumber":"312","lat":51.4153861,"lon":4.3504596},{"street":"Groene Papegaai","housenumber":"313","lat":51.4153239,"lon":4.3508426},{"street":"Groene Papegaai","housenumber":"314","lat":51.4153275,"lon":4.3510433},{"street":"Groene Papegaai","housenumber":"315","lat":51.4153326,"lon":4.3496633},{"street":"Groene Papegaai","housenumber":"316","lat":51.4153242,"lon":4.3498122},{"street":"Groene Papegaai","housenumber":"317","lat":51.4153229,"lon":4.3500577},{"street":"Groene Papegaai","housenumber":"318","lat":51.415308,"lon":4.3502366},{"street":"Groene Papegaai","housenumber":"319","lat":51.4152833,"lon":4.3504207},{"street":"Kooiweg","housenumber":"32","lat":51.4312641,"lon":4.3573981},{"street":"Groene Papegaai","housenumber":"320","lat":51.4152661,"lon":4.3506383},{"street":"Groene Papegaai","housenumber":"321","lat":51.4152104,"lon":4.3508413},{"street":"Groene Papegaai","housenumber":"322","lat":51.4150388,"lon":4.3507118},{"street":"Groene Papegaai","housenumber":"324","lat":51.4151191,"lon":4.3502485},{"street":"Groene Papegaai","housenumber":"325","lat":51.415132,"lon":4.3500636},{"street":"Groene Papegaai","housenumber":"326","lat":51.4151642,"lon":4.3498122},{"street":"Groene Papegaai","housenumber":"327","lat":51.4151754,"lon":4.3496394},{"street":"Groene Papegaai","housenumber":"328","lat":51.4149626,"lon":4.3505583},{"street":"Groene Papegaai","housenumber":"329","lat":51.4149928,"lon":4.3503007},{"street":"Groene Papegaai","housenumber":"330","lat":51.4150162,"lon":4.3501028},{"street":"Groene Papegaai","housenumber":"331","lat":51.4150478,"lon":4.3498262},{"street":"Groene Papegaai","housenumber":"332","lat":51.4150576,"lon":4.349595},{"street":"Groene Papegaai","housenumber":"333","lat":51.4148934,"lon":4.3495719},{"street":"Groene Papegaai","housenumber":"334","lat":51.4148837,"lon":4.3498405},{"street":"Groene Papegaai","housenumber":"335","lat":51.4148514,"lon":4.3500824},{"street":"Groene Papegaai","housenumber":"336","lat":51.4148338,"lon":4.3504274},{"street":"Groene Papegaai","housenumber":"337","lat":51.4147165,"lon":4.3503265},{"street":"Groene Papegaai","housenumber":"338","lat":51.4147428,"lon":4.3501576},{"street":"Groene Papegaai","housenumber":"339","lat":51.4147478,"lon":4.3498792},{"street":"Groene Papegaai","housenumber":"340","lat":51.414763,"lon":4.3497063},{"street":"Groene Papegaai","housenumber":"341","lat":51.4147712,"lon":4.3495314},{"street":"Buitendreef","housenumber":"37","lat":51.426484,"lon":4.3518036},{"street":"Buitendreef","housenumber":"39","lat":51.4266584,"lon":4.3527535},{"street":"Voltweg","housenumber":"3a","lat":51.4298004,"lon":4.3516958},{"street":"Ampèreweg","housenumber":"4","lat":51.4270384,"lon":4.3483604},{"street":"Buitendreef","housenumber":"4","lat":51.4250826,"lon":4.3468021},{"street":"Middenweg","housenumber":"4","lat":51.4279556,"lon":4.3494255},{"street":"Postweg","housenumber":"4","lat":51.4251908,"lon":4.3448297},{"street":"Voltweg","housenumber":"4","lat":51.4295903,"lon":4.3513009},{"street":"Wattweg","housenumber":"4","lat":51.427074,"lon":4.3506311},{"street":"Postweg","housenumber":"4a","lat":51.4252908,"lon":4.3448833},{"street":"Voltweg","housenumber":"5a","lat":51.4296035,"lon":4.3518107},{"street":"Ampèreweg","housenumber":"6","lat":51.4267595,"lon":4.3483599},{"street":"Buitendreef","housenumber":"6","lat":51.4251675,"lon":4.3472459},{"street":"Edisonweg","housenumber":"6","lat":51.4256257,"lon":4.346285},{"street":"Groene Papegaai","housenumber":"6","lat":51.4230301,"lon":4.3444621},{"street":"Wattweg","housenumber":"6","lat":51.4266075,"lon":4.3507623},{"street":"Westerstraat","housenumber":"62d-2","lat":51.4274419,"lon":4.360346},{"street":"Westerstraat","housenumber":"62d-21","lat":51.4268066,"lon":4.3597602},{"street":"Westerstraat","housenumber":"62d-23","lat":51.4268767,"lon":4.3601226},{"street":"Westerstraat","housenumber":"62d-25","lat":51.4282134,"lon":4.360016},{"street":"Westerstraat","housenumber":"62d-27","lat":51.4270381,"lon":4.3599935},{"street":"Westerstraat","housenumber":"62d-29","lat":51.426799,"lon":4.3618112},{"street":"Westerstraat","housenumber":"62d-3","lat":51.4270381,"lon":4.3603865},{"street":"Westerstraat","housenumber":"62d-30","lat":51.4270118,"lon":4.3615251},{"street":"Westerstraat","housenumber":"62d-31","lat":51.4273091,"lon":4.3594277},{"street":"Westerstraat","housenumber":"62d-4","lat":51.4266331,"lon":4.3604751},{"street":"Westerstraat","housenumber":"62d-5","lat":51.4267029,"lon":4.3593521},{"street":"Westerstraat","housenumber":"62d-6","lat":51.4273526,"lon":4.3593202},{"street":"Westerstraat","housenumber":"62d-7","lat":51.4270396,"lon":4.3601154},{"street":"Westerstraat","housenumber":"62d-8","lat":51.4284113,"lon":4.3598196},{"street":"Westerstraat","housenumber":"62d-9","lat":51.4296286,"lon":4.3596308},{"street":"Buitendreef","housenumber":"6a","lat":51.4252475,"lon":4.3476258},{"street":"Wattweg","housenumber":"6a","lat":51.4268455,"lon":4.3507363},{"street":"Wattweg","housenumber":"6b","lat":51.4265257,"lon":4.3501226},{"street":"Middenweg","housenumber":"7","lat":51.4281789,"lon":4.3472819},{"street":"Voltweg","housenumber":"7","lat":51.4292917,"lon":4.3525316},{"street":"Middenweg","housenumber":"7a","lat":51.4278831,"lon":4.3475221},{"street":"Voltweg","housenumber":"7a","lat":51.4293928,"lon":4.352454},{"street":"Voltweg","housenumber":"7c","lat":51.4294123,"lon":4.3525447},{"street":"Voltweg","housenumber":"7e","lat":51.4294235,"lon":4.3526264},{"street":"Voltweg","housenumber":"7f","lat":51.4294325,"lon":4.3526672},{"street":"Voltweg","housenumber":"7h","lat":51.4294401,"lon":4.3527022},{"street":"Voltweg","housenumber":"7k","lat":51.4294206,"lon":4.3527626},{"street":"Voltweg","housenumber":"7n","lat":51.4293722,"lon":4.3527951},{"street":"Voltweg","housenumber":"7r","lat":51.4293257,"lon":4.3528228},{"street":"Ampèreweg","housenumber":"8","lat":51.4264275,"lon":4.348425},{"street":"Buitendreef","housenumber":"8","lat":51.4255716,"lon":4.3490696},{"street":"Groene Papegaai","housenumber":"8","lat":51.4224463,"lon":4.3445186},{"street":"Middenweg","housenumber":"8","lat":51.428209,"lon":4.3506277},{"street":"Postweg","housenumber":"8","lat":51.4257206,"lon":4.3447601},{"street":"Voltweg","housenumber":"8","lat":51.428375,"lon":4.3519649},{"street":"Ampèreweg","housenumber":"8a","lat":51.4263319,"lon":4.3483965},{"street":"Buitendreef","housenumber":"8a","lat":51.425494,"lon":4.3493538},{"street":"Buitendreef","housenumber":"8b","lat":51.4255798,"lon":4.3492812},{"street":"Ampèreweg","housenumber":"9","lat":51.4272456,"lon":4.3488082},{"street":"Middenweg","housenumber":"9","lat":51.4281712,"lon":4.3478552},{"street":"Voltweg","housenumber":"9","lat":51.4292393,"lon":4.3528658},{"street":"Voltweg","housenumber":"9a","lat":51.4292321,"lon":4.3528292},{"street":"Voltweg","housenumber":"9b","lat":51.4292266,"lon":4.3527964},{"street":"Voltweg","housenumber":"9c","lat":51.4292182,"lon":4.352751},{"street":"Voltweg","housenumber":"9d","lat":51.4292081,"lon":4.3527142},{"street":"Voltweg","housenumber":"9e","lat":51.4292008,"lon":4.3526799},{"street":"Voltweg","housenumber":"9f","lat":51.4291921,"lon":4.3526328},{"street":"Voltweg","housenumber":"9j","lat":51.4291654,"lon":4.3523617},{"street":"Cleirenbaantje","housenumber":"1","lat":51.4387315,"lon":4.3177285},{"street":"Lange Steen","housenumber":"1","lat":51.4585387,"lon":4.3206835},{"street":"Oude Steenstraat","housenumber":"1","lat":51.4389962,"lon":4.3158047},{"street":"Aviolandalaan","housenumber":"10","lat":51.4379361,"lon":4.3363898},{"street":"Oude Stee","housenumber":"10","lat":51.4375433,"lon":4.3279924},{"street":"Antwerpsestraatweg","housenumber":"101","lat":51.4377298,"lon":4.3178912},{"street":"Antwerpsestraatweg","housenumber":"105","lat":51.438207,"lon":4.3179663},{"street":"Antwerpsestraatweg","housenumber":"109","lat":51.4384409,"lon":4.3179896},{"street":"Aviolandalaan","housenumber":"10d-148","lat":51.4378039,"lon":4.3354895},{"street":"Oude Stee","housenumber":"11","lat":51.4377751,"lon":4.3246643},{"street":"Antwerpsestraatweg","housenumber":"113","lat":51.4386657,"lon":4.3179987},{"street":"Antwerpsestraatweg","housenumber":"117","lat":51.4388945,"lon":4.3180021},{"street":"Antwerpsestraatweg","housenumber":"119","lat":51.4389426,"lon":4.3179769},{"street":"Aviolandalaan","housenumber":"12","lat":51.4378551,"lon":4.3346301},{"street":"Antwerpsestraatweg","housenumber":"121","lat":51.4390421,"lon":4.3178748},{"street":"Antwerpsestraatweg","housenumber":"122","lat":51.436908,"lon":4.318457},{"street":"Antwerpsestraatweg","housenumber":"124","lat":51.4370929,"lon":4.3184464},{"street":"Antwerpsestraatweg","housenumber":"125","lat":51.4393937,"lon":4.3170035},{"street":"Antwerpsestraatweg","housenumber":"126","lat":51.4374328,"lon":4.3186988},{"street":"Antwerpsestraatweg","housenumber":"126a","lat":51.4374632,"lon":4.3190884},{"street":"Antwerpsestraatweg","housenumber":"126b","lat":51.4373675,"lon":4.3184533},{"street":"Antwerpsestraatweg","housenumber":"126c","lat":51.437533,"lon":4.3188043},{"street":"Antwerpsestraatweg","housenumber":"127","lat":51.4396516,"lon":4.3166954},{"street":"Antwerpsestraatweg","housenumber":"128","lat":51.4377154,"lon":4.3182799},{"street":"Antwerpsestraatweg","housenumber":"129","lat":51.4399496,"lon":4.3168467},{"street":"Oude Stee","housenumber":"13","lat":51.438094,"lon":4.326268},{"street":"Antwerpsestraatweg","housenumber":"131","lat":51.4400741,"lon":4.3166999},{"street":"Antwerpsestraatweg","housenumber":"133","lat":51.4401711,"lon":4.3164962},{"street":"Antwerpsestraatweg","housenumber":"135","lat":51.440321,"lon":4.3161763},{"street":"Antwerpsestraatweg","housenumber":"139","lat":51.4414491,"lon":4.314697},{"street":"Oude Stee","housenumber":"14","lat":51.4377101,"lon":4.3285351},{"street":"Antwerpsestraatweg","housenumber":"140","lat":51.4388051,"lon":4.3184989},{"street":"Antwerpsestraatweg","housenumber":"143","lat":51.4421705,"lon":4.3145561},{"street":"Antwerpsestraatweg","housenumber":"144","lat":51.4392088,"lon":4.3184031},{"street":"Antwerpsestraatweg","housenumber":"146","lat":51.4411824,"lon":4.3159978},{"street":"Oude Stee","housenumber":"14a","lat":51.4375956,"lon":4.3291754},{"street":"Oude Stee","housenumber":"15","lat":51.4383682,"lon":4.3267651},{"street":"Zuidgeest","housenumber":"15","lat":51.4606941,"lon":4.3263748},{"street":"Antwerpsestraatweg","housenumber":"150","lat":51.4426032,"lon":4.3150726},{"street":"Oude Stee","housenumber":"16","lat":51.4383154,"lon":4.3298587},{"street":"Oude Stee","housenumber":"17","lat":51.4377649,"lon":4.3276421},{"street":"Aviolandalaan","housenumber":"18","lat":51.4390097,"lon":4.3310939},{"street":"Oude Stee","housenumber":"19","lat":51.4382356,"lon":4.3284667},{"street":"Oude Stee","housenumber":"19a","lat":51.4379482,"lon":4.3280422},{"street":"Oude Steenstraat","housenumber":"1a","lat":51.4387548,"lon":4.3160969},{"street":"Lange Steen","housenumber":"2","lat":51.4500759,"lon":4.3143788},{"street":"Oude Steenstraat","housenumber":"2","lat":51.4402479,"lon":4.316052},{"street":"Aviolandalaan","housenumber":"20","lat":51.4394927,"lon":4.3305823},{"street":"Oude Stee","housenumber":"21","lat":51.4388954,"lon":4.3300896},{"street":"Aviolandalaan","housenumber":"23","lat":51.4389824,"lon":4.3300589},{"street":"Aviolandalaan","housenumber":"27","lat":51.4399991,"lon":4.3301648},{"street":"Aviolandalaan","housenumber":"29","lat":51.4402777,"lon":4.3301583},{"street":"Oude Steenstraat","housenumber":"3","lat":51.4387846,"lon":4.3151778},{"street":"Aviolandalaan","housenumber":"31","lat":51.4409083,"lon":4.3284143},{"street":"Aviolandalaan","housenumber":"4","lat":51.4371531,"lon":4.3364978},{"street":"Oude Steenstraat","housenumber":"4","lat":51.4399795,"lon":4.3158609},{"street":"Kooiweg","housenumber":"40d-119","lat":51.4575088,"lon":4.3483145},{"street":"Kooiweg","housenumber":"40d-120","lat":51.4578657,"lon":4.3488805},{"street":"Kooiweg","housenumber":"40d-146","lat":51.4482216,"lon":4.3486605},{"street":"Kooiweg","housenumber":"40d-18","lat":51.4474623,"lon":4.3439349},{"street":"Kooiweg","housenumber":"40d-190","lat":51.4481531,"lon":4.3484221},{"street":"Kooiweg","housenumber":"40d-23","lat":51.4571345,"lon":4.3466943},{"street":"Kooiweg","housenumber":"40d-264","lat":51.4483958,"lon":4.3488656},{"street":"Kooiweg","housenumber":"40d-265","lat":51.4483795,"lon":4.3489055},{"street":"Kooiweg","housenumber":"40d-299","lat":51.4477882,"lon":4.3480704},{"street":"Kooiweg","housenumber":"40d-321","lat":51.4493079,"lon":4.3528504},{"street":"Kooiweg","housenumber":"40d-336","lat":51.4579476,"lon":4.3486948},{"street":"Kooiweg","housenumber":"40d-455","lat":51.4565083,"lon":4.3472075},{"street":"Kooiweg","housenumber":"40d-608","lat":51.4568836,"lon":4.3477829},{"street":"Kooiweg","housenumber":"40d-647","lat":51.4572473,"lon":4.3523844},{"street":"Kooiweg","housenumber":"40d-648","lat":51.4572425,"lon":4.3525078},{"street":"Kooiweg","housenumber":"40d-649","lat":51.4573318,"lon":4.3524137},{"street":"Kooiweg","housenumber":"40d-662","lat":51.4565479,"lon":4.3473035},{"street":"Kooiweg","housenumber":"40d-698","lat":51.4572036,"lon":4.3476647},{"street":"Oude Steenstraat","housenumber":"5","lat":51.4386891,"lon":4.3152344},{"street":"Aviolandalaan","housenumber":"6","lat":51.437212,"lon":4.3364783},{"street":"Oude Steenstraat","housenumber":"6","lat":51.4393414,"lon":4.3152212},{"street":"Groeneweg","housenumber":"7","lat":51.4449494,"lon":4.3170313},{"street":"Aviolandalaan","housenumber":"8","lat":51.4372737,"lon":4.3364579},{"street":"Groeneweg","housenumber":"8","lat":51.4449481,"lon":4.3178657},{"street":"De Zonnebloem","housenumber":"20","lat":51.4299878,"lon":4.3141787},{"street":"dokter van de Karplein","housenumber":"20","lat":51.4305535,"lon":4.3225466},{"street":"in d' Hoef","housenumber":"20","lat":51.4294856,"lon":4.3219868},{"street":"op den Duyn","housenumber":"20","lat":51.4303211,"lon":4.3205981},{"street":"van Houtenstraat","housenumber":"20","lat":51.4201577,"lon":4.3250032},{"street":"Van Weerden Poelmanlaan","housenumber":"20","lat":51.4259232,"lon":4.3285434},{"street":"van der Dilftstraat","housenumber":"20","lat":51.4218531,"lon":4.3289069},{"street":"Van der Meulenplein","housenumber":"20","lat":51.421976,"lon":4.3242974},{"street":"KLM laan","housenumber":"200","lat":51.425336,"lon":4.329375},{"street":"KLM laan","housenumber":"202","lat":51.4253155,"lon":4.3294053},{"street":"Wouwbaan","housenumber":"203","lat":51.4335841,"lon":4.3335207},{"street":"KLM laan","housenumber":"204","lat":51.4252956,"lon":4.3294345},{"street":"KLM laan","housenumber":"206","lat":51.4252761,"lon":4.3294634},{"street":"KLM laan","housenumber":"208","lat":51.4252557,"lon":4.3294935},{"street":"Wouwbaan","housenumber":"209","lat":51.4338398,"lon":4.3339606},{"street":"KLM laan","housenumber":"20a","lat":51.4263507,"lon":4.3287629},{"street":"Antwerpsestraatweg","housenumber":"21","lat":51.4296531,"lon":4.3183971},{"street":"Bijentiende","housenumber":"21","lat":51.4305551,"lon":4.3266769},{"street":"Binnenweg","housenumber":"21","lat":51.4260382,"lon":4.324176},{"street":"Blériotlaan","housenumber":"21","lat":51.4272992,"lon":4.3345036},{"street":"Burg Moorsstraat","housenumber":"21","lat":51.4214962,"lon":4.3298462},{"street":"Canadalaan","housenumber":"21","lat":51.4261836,"lon":4.3145241},{"street":"Doelstraat","housenumber":"21","lat":51.4333178,"lon":4.3122133},{"street":"Duinhoefplein","housenumber":"21","lat":51.4294,"lon":4.324102},{"street":"Edward Jennerstraat","housenumber":"21","lat":51.4282344,"lon":4.3244843},{"street":"Fokkerlaan","housenumber":"21","lat":51.4282773,"lon":4.3301922},{"street":"Gemeynte","housenumber":"21","lat":51.4304574,"lon":4.3289701},{"street":"Geyssendorfferlaan","housenumber":"21","lat":51.4266993,"lon":4.333038},{"street":"Gravesandestraat","housenumber":"21","lat":51.4248846,"lon":4.3330656},{"street":"Heideduinstede","housenumber":"21","lat":51.42866,"lon":4.3270955},{"street":"Hugo de Grootstraat","housenumber":"21","lat":51.4255321,"lon":4.3369589},{"street":"Huijgensstraat","housenumber":"21","lat":51.4267075,"lon":4.3355346},{"street":"KLM laan","housenumber":"21","lat":51.4268842,"lon":4.3282401},{"street":"Kamerlingh Onnesstraat","housenumber":"21","lat":51.4252366,"lon":4.3344166},{"street":"Kloosterstraat","housenumber":"21","lat":51.4252023,"lon":4.3261654},{"street":"Lammertiende","housenumber":"21","lat":51.4299257,"lon":4.3260257},{"street":"Lindberghlaan","housenumber":"21","lat":51.4257616,"lon":4.3315703},{"street":"Maststraat","housenumber":"21","lat":51.420274,"lon":4.3308809},{"street":"Meulenblock","housenumber":"21","lat":51.4225239,"lon":4.3264912},{"street":"Mgr Ariensstraat","housenumber":"21","lat":51.4220711,"lon":4.3268278},{"street":"Mgr Frenckenstraat","housenumber":"21","lat":51.4213404,"lon":4.3275349},{"street":"Mgr Nolensstraat","housenumber":"21","lat":51.4192619,"lon":4.3253404},{"street":"Mgr Poelsstraat","housenumber":"21","lat":51.419882,"lon":4.3243339},{"street":"Minckelersweg","housenumber":"21","lat":51.4253221,"lon":4.3314398},{"street":"Molenstraat","housenumber":"21","lat":51.4217376,"lon":4.3287896},{"street":"Nieuweweg","housenumber":"21","lat":51.4283841,"lon":4.317262},{"street":"Norbartstraat","housenumber":"21","lat":51.4175717,"lon":4.3223607},{"street":"Oostlaan","housenumber":"21","lat":51.427153,"lon":4.3357852},{"street":"Ossendrechtseweg","housenumber":"21","lat":51.4212836,"lon":4.3229844},{"street":"Ouwe Raedthuysplein","housenumber":"21","lat":51.4254982,"lon":4.3223923},{"street":"Parmentierlaan","housenumber":"21","lat":51.4278312,"lon":4.3295698},{"street":"Past van Roesselstraat","housenumber":"21","lat":51.4219015,"lon":4.3314917},{"street":"Pasteurstraat","housenumber":"21","lat":51.4276915,"lon":4.321463},{"street":"Plesmanlaan","housenumber":"21","lat":51.4272202,"lon":4.3295984},{"street":"Pr Bernhardstraat","housenumber":"21","lat":51.426686,"lon":4.3242328},{"street":"Pr Hendrikstraat","housenumber":"21","lat":51.4249937,"lon":4.3289311},{"street":"Putseweg","housenumber":"21","lat":51.4214453,"lon":4.3262241},{"street":"Raadhuisstraat","housenumber":"21","lat":51.4276685,"lon":4.3205862},{"street":"Rubertstraat","housenumber":"21","lat":51.4199567,"lon":4.3305864},{"street":"Schapendreef","housenumber":"21","lat":51.4185549,"lon":4.3266796},{"street":"Smirnofflaan","housenumber":"21","lat":51.427333,"lon":4.32915},{"street":"Sondermanlaan","housenumber":"21","lat":51.4265502,"lon":4.332625},{"street":"St Lucasplein","housenumber":"21","lat":51.4281559,"lon":4.3227749},{"street":"Suijkerbuijkstraat","housenumber":"21","lat":51.4220294,"lon":4.3310098},{"street":"Trefpunt","housenumber":"21","lat":51.4223518,"lon":4.3276936},{"street":"Wouwbaan","housenumber":"21","lat":51.4250965,"lon":4.3244137},{"street":"De Acacia","housenumber":"21","lat":51.4315721,"lon":4.3124204},{"street":"De Anjer","housenumber":"21","lat":51.4329841,"lon":4.3177062},{"street":"Mgr Ariensstraat","housenumber":"18","lat":51.421549,"lon":4.3277139},{"street":"Mgr Nolensstraat","housenumber":"18","lat":51.4187755,"lon":4.3253167},{"street":"Minckelersweg","housenumber":"18","lat":51.4249527,"lon":4.3313477},{"street":"Nieuweweg","housenumber":"18","lat":51.4287484,"lon":4.3167933},{"street":"Nijverheidstraat","housenumber":"18","lat":51.432094,"lon":4.3294208},{"street":"Norbartstraat","housenumber":"18","lat":51.4182553,"lon":4.322644},{"street":"Onderstal","housenumber":"18","lat":51.4247833,"lon":4.3207034},{"street":"Oostlaan","housenumber":"18","lat":51.4259694,"lon":4.3364288},{"street":"Ossendrechtseweg","housenumber":"18","lat":51.4215744,"lon":4.3226266},{"street":"Parmentierlaan","housenumber":"18","lat":51.4276722,"lon":4.3292561},{"street":"Past van Roesselstraat","housenumber":"18","lat":51.4210072,"lon":4.3317031},{"street":"Paus Leo XIIIestraat","housenumber":"18","lat":51.4213374,"lon":4.3281964},{"street":"Plesmanlaan","housenumber":"18","lat":51.4273791,"lon":4.3312911},{"street":"Pr Bernhardstraat","housenumber":"18","lat":51.4263608,"lon":4.3230757},{"street":"Pr Hendrikstraat","housenumber":"18","lat":51.4250152,"lon":4.3293188},{"street":"Putseweg","housenumber":"18","lat":51.420507,"lon":4.3268354},{"street":"Robert Kochstraat","housenumber":"18","lat":51.4270534,"lon":4.3245148},{"street":"Rubertstraat","housenumber":"18","lat":51.4198368,"lon":4.3302441},{"street":"Schapendreef","housenumber":"18","lat":51.4189109,"lon":4.3262831},{"street":"Semmelweissstraat","housenumber":"18","lat":51.427228,"lon":4.3245222},{"street":"Sondermanlaan","housenumber":"18","lat":51.4260852,"lon":4.3319293},{"street":"Struikenlaan","housenumber":"18","lat":51.432396,"lon":4.3134064},{"street":"Suijkerbuijkstraat","housenumber":"18","lat":51.422124,"lon":4.3306799},{"street":"Torontolaan","housenumber":"18","lat":51.427983,"lon":4.3156753},{"street":"Aalbersestraat","housenumber":"1","lat":51.4216353,"lon":4.3237076},{"street":"Antwerpsestraatweg","housenumber":"1","lat":51.4287935,"lon":4.3184864},{"street":"Bijentiende","housenumber":"1","lat":51.4304186,"lon":4.3250532},{"street":"Binnenweg","housenumber":"1","lat":51.4258916,"lon":4.3228853},{"street":"Bloemenlaan","housenumber":"1","lat":51.4339682,"lon":4.3164694},{"street":"Blériotlaan","housenumber":"1","lat":51.4279404,"lon":4.3327021},{"street":"Burg Moorsstraat","housenumber":"1","lat":51.4230126,"lon":4.329848},{"street":"Putseweg","housenumber":"127","lat":51.4182935,"lon":4.3325514},{"street":"Raadhuisstraat","housenumber":"127","lat":51.4231826,"lon":4.3235237},{"street":"Wouwbaan","housenumber":"127","lat":51.4305174,"lon":4.3303847},{"street":"KLM laan","housenumber":"128","lat":51.4251316,"lon":4.329983},{"street":"St Lucasplein","housenumber":"128","lat":51.4275878,"lon":4.3237986},{"street":"Huijgensstraat","housenumber":"129","lat":51.4241624,"lon":4.3354064},{"street":"Putseweg","housenumber":"129","lat":51.4182671,"lon":4.3326095},{"street":"Raadhuisstraat","housenumber":"129","lat":51.4231286,"lon":4.3235106},{"street":"Wouwbaan","housenumber":"129","lat":51.4305991,"lon":4.3304691},{"street":"Flemingstraat","housenumber":"12a","lat":51.4269028,"lon":4.3223219},{"street":"Huijbergseweg","housenumber":"12a","lat":51.4226111,"lon":4.3254385},{"street":"Putseweg","housenumber":"12a","lat":51.4207723,"lon":4.3263548},{"street":"De Hazelaar","housenumber":"12a","lat":51.4320928,"lon":4.3160198},{"street":"Flemingstraat","housenumber":"12b","lat":51.4268741,"lon":4.3223331},{"street":"Putseweg","housenumber":"12b","lat":51.4207282,"lon":4.3264421},{"street":"De Hazelaar","housenumber":"12b","lat":51.432068,"lon":4.3160204},{"street":"Flemingstraat","housenumber":"12c","lat":51.4268484,"lon":4.3223431},{"street":"Flemingstraat","housenumber":"12d","lat":51.4268214,"lon":4.3223537},{"street":"Flemingstraat","housenumber":"12e","lat":51.4267949,"lon":4.3223641},{"street":"Flemingstraat","housenumber":"12f","lat":51.4267675,"lon":4.3223748},{"street":"Flemingstraat","housenumber":"12h","lat":51.4267401,"lon":4.3223855},{"street":"Flemingstraat","housenumber":"12j","lat":51.4267119,"lon":4.3223928},{"street":"Heistraat","housenumber":"12k-1","lat":51.428411,"lon":4.3264409},{"street":"Heistraat","housenumber":"12k-10","lat":51.4282472,"lon":4.3265049},{"street":"Heistraat","housenumber":"12k-11","lat":51.4282932,"lon":4.3265261},{"street":"Heistraat","housenumber":"12k-12","lat":51.4283422,"lon":4.326544},{"street":"Heistraat","housenumber":"12k-15","lat":51.4283663,"lon":4.3267615},{"street":"Heistraat","housenumber":"12k-17","lat":51.4283528,"lon":4.3268848},{"street":"Heistraat","housenumber":"12k-18","lat":51.4283389,"lon":4.3269592},{"street":"Heistraat","housenumber":"12k-19","lat":51.4283251,"lon":4.3270336},{"street":"Heistraat","housenumber":"12k-2","lat":51.4283594,"lon":4.3264396},{"street":"Heistraat","housenumber":"12k-20","lat":51.4283113,"lon":4.327108},{"street":"Heistraat","housenumber":"12k-21","lat":51.4283109,"lon":4.3271904},{"street":"Heistraat","housenumber":"12k-22","lat":51.4283594,"lon":4.3272128},{"street":"Heistraat","housenumber":"12k-23","lat":51.428379,"lon":4.3271187},{"street":"Aalbersestraat","housenumber":"11","lat":51.4216263,"lon":4.3240743},{"street":"Antwerpsestraatweg","housenumber":"11","lat":51.4291688,"lon":4.3185235},{"street":"Bijentiende","housenumber":"11","lat":51.4304725,"lon":4.3256957},{"street":"Binnenweg","housenumber":"11","lat":51.4260984,"lon":4.3238727},{"street":"Blériotlaan","housenumber":"11","lat":51.427444,"lon":4.3334757},{"street":"Burg Moorsstraat","housenumber":"11","lat":51.4220942,"lon":4.3298506},{"street":"Buys Ballotstraat","housenumber":"11","lat":51.4240891,"lon":4.3332657},{"street":"Cameronlaan","housenumber":"11","lat":51.4275219,"lon":4.3173398},{"street":"Canadalaan","housenumber":"11","lat":51.4259061,"lon":4.3166156},{"street":"Couwenberghstraat","housenumber":"11","lat":51.4188591,"lon":4.3324664},{"street":"Doelstraat","housenumber":"11","lat":51.4336497,"lon":4.3140895},{"street":"Doctor de Bruijnlaan","housenumber":"11","lat":51.41957,"lon":4.3315586},{"street":"Duinstraat","housenumber":"11","lat":51.4288671,"lon":4.3228877},{"street":"Edward Jennerstraat","housenumber":"11","lat":51.4282205,"lon":4.3239382},{"street":"Fokkerlaan","housenumber":"11","lat":51.4284356,"lon":4.3298002},{"street":"Geyssendorfferlaan","housenumber":"11","lat":51.4269055,"lon":4.3327665},{"street":"Gravesandestraat","housenumber":"11","lat":51.4254077,"lon":4.3329476},{"street":"Hamiltonlaan","housenumber":"11","lat":51.4269186,"lon":4.3153105},{"street":"Heideduinstede","housenumber":"11","lat":51.4288964,"lon":4.3262767},{"street":"Hugo de Grootstraat","housenumber":"11","lat":51.4259848,"lon":4.3369646},{"street":"Huijbergseweg","housenumber":"11","lat":51.4232046,"lon":4.3279086},{"street":"Huijgensstraat","housenumber":"11","lat":51.4265244,"lon":4.335165},{"street":"Jef Adriaansenstraat","housenumber":"11","lat":51.4209707,"lon":4.3284062},{"street":"KLM laan","housenumber":"11","lat":51.4270242,"lon":4.3278198},{"street":"Kamerlingh Onnesstraat","housenumber":"11","lat":51.4253832,"lon":4.3339358},{"street":"Keesomstraat","housenumber":"11","lat":51.4241965,"lon":4.3322135},{"street":"Kloosterstraat","housenumber":"11","lat":51.4249537,"lon":4.3265019},{"street":"Laan Olieslagers","housenumber":"11","lat":51.4271304,"lon":4.3315992},{"street":"Lammertiende","housenumber":"11","lat":51.4298538,"lon":4.3255211},{"street":"Lindberghlaan","housenumber":"11","lat":51.4259702,"lon":4.3312957},{"street":"Maststraat","housenumber":"11","lat":51.4205933,"lon":4.3303991},{"street":"Meulenblock","housenumber":"11","lat":51.4226929,"lon":4.326212},{"street":"Mgr Ariensstraat","housenumber":"11","lat":51.4219683,"lon":4.3263989},{"street":"Mgr Frenckenstraat","housenumber":"11","lat":51.4215877,"lon":4.3270547},{"street":"Mgr Nolensstraat","housenumber":"11","lat":51.4194825,"lon":4.3248896},{"street":"Mgr Poelsstraat","housenumber":"11","lat":51.4203621,"lon":4.3247397},{"street":"Minckelersweg","housenumber":"11","lat":51.4249749,"lon":4.3308151},{"street":"Molenstraat","housenumber":"11","lat":51.4220051,"lon":4.3284113},{"street":"Nieuweweg","housenumber":"11","lat":51.42841,"lon":4.3181242},{"street":"Norbartstraat","housenumber":"11","lat":51.4176341,"lon":4.3232937},{"street":"Onderstal","housenumber":"11","lat":51.4243167,"lon":4.3207221},{"street":"Oostlaan","housenumber":"11","lat":51.4271005,"lon":4.3357034},{"street":"Ossendrechtseweg","housenumber":"11","lat":51.4216687,"lon":4.3231133},{"street":"Ouwe Raedthuysplein","housenumber":"11","lat":51.4256097,"lon":4.3222355},{"street":"Parmentierlaan","housenumber":"11","lat":51.4279983,"lon":4.3291633},{"street":"Past van Roesselstraat","housenumber":"11","lat":51.4223108,"lon":4.3314822},{"street":"Pasteurstraat","housenumber":"11","lat":51.4274476,"lon":4.3215616},{"street":"Paus Leo XIIIestraat","housenumber":"11","lat":51.4216057,"lon":4.3280464},{"street":"Philomenahof","housenumber":"11","lat":51.423116,"lon":4.3245192},{"street":"Plantagelaan","housenumber":"11","lat":51.4183436,"lon":4.3341173},{"street":"Plesmanlaan","housenumber":"11","lat":51.4269263,"lon":4.328915},{"street":"Pr Clausstraat","housenumber":"11","lat":51.4243724,"lon":4.3298082},{"street":"Putseweg","housenumber":"11","lat":51.4217984,"lon":4.3255114},{"street":"Raadhuisstraat","housenumber":"11","lat":51.4280682,"lon":4.3200592},{"street":"Robert Kochstraat","housenumber":"11","lat":51.4270116,"lon":4.3234631},{"street":"Rubertstraat","housenumber":"11","lat":51.4201779,"lon":4.330193},{"street":"Schapendreef","housenumber":"11","lat":51.4193587,"lon":4.3270922},{"street":"Smirnofflaan","housenumber":"11","lat":51.4275091,"lon":4.3287433},{"street":"Sondermanlaan","housenumber":"11","lat":51.4267153,"lon":4.3321842},{"street":"Sportlaan","housenumber":"11","lat":51.4184943,"lon":4.3396104},{"street":"St Lucasplein","housenumber":"11","lat":51.4277848,"lon":4.322496},{"street":"Suijkerbuijkstraat","housenumber":"11","lat":51.4223158,"lon":4.3310062},{"street":"Torontolaan","housenumber":"11","lat":51.4276654,"lon":4.3147605},{"street":"Trefpunt","housenumber":"11","lat":51.4224637,"lon":4.3275583},{"street":"Wipstraat","housenumber":"11","lat":51.4340589,"lon":4.3263907},{"street":"Wouwbaan","housenumber":"11","lat":51.4247181,"lon":4.3243218},{"street":"Zandfort","housenumber":"11","lat":51.4347749,"lon":4.3201322},{"street":"De Acacia","housenumber":"11","lat":51.4311479,"lon":4.312685},{"street":"De Anjer","housenumber":"11","lat":51.4327725,"lon":4.3173591},{"street":"De Berk","housenumber":"11","lat":51.4312753,"lon":4.3149364},{"street":"De Eik","housenumber":"11","lat":51.4304264,"lon":4.3125547},{"street":"De Hazelaar","housenumber":"11","lat":51.4322104,"lon":4.3161275},{"street":"De Papaver","housenumber":"1","lat":51.4314924,"lon":4.3163849},{"street":"De Roos","housenumber":"1","lat":51.4309908,"lon":4.3172296},{"street":"De Sering","housenumber":"1","lat":51.4302519,"lon":4.3163224},{"street":"De Tulp","housenumber":"1","lat":51.4297856,"lon":4.3157344},{"street":"De Vuurdoorn","housenumber":"1","lat":51.4324287,"lon":4.3123062},{"street":"De Wilg","housenumber":"1","lat":51.4292073,"lon":4.3139065},{"street":"De Zonnebloem","housenumber":"1","lat":51.4303478,"lon":4.3151238},{"street":"dokter van de Karplein","housenumber":"1","lat":51.4295542,"lon":4.3229025},{"street":"op den Duyn","housenumber":"1","lat":51.4291886,"lon":4.3214847},{"street":"van Houtenstraat","housenumber":"1","lat":51.4206753,"lon":4.3255663},{"street":"Van Ostaayland","housenumber":"1","lat":51.43078,"lon":4.3270783},{"street":"Van Weerden Poelmanlaan","housenumber":"1","lat":51.4262132,"lon":4.3279034},{"street":"Van de Moerstraat","housenumber":"1","lat":51.4197106,"lon":4.3321879},{"street":"van der Dilftstraat","housenumber":"1","lat":51.4225333,"lon":4.3282261},{"street":"Aalbersestraat","housenumber":"10","lat":51.421372,"lon":4.324113},{"street":"Antwerpsestraatweg","housenumber":"10","lat":51.4290206,"lon":4.3190302},{"street":"Bijentiende","housenumber":"10","lat":51.4302086,"lon":4.3253441},{"street":"Binnenweg","housenumber":"10","lat":51.4254906,"lon":4.3242607},{"street":"Bloemenlaan","housenumber":"10","lat":51.4335786,"lon":4.3161334},{"street":"Blériotlaan","housenumber":"10","lat":51.427231,"lon":4.3332681},{"street":"Buys Ballotstraat","housenumber":"10","lat":51.4239747,"lon":4.3341073},{"street":"Cameronlaan","housenumber":"10","lat":51.4273027,"lon":4.3179489},{"street":"Canadalaan","housenumber":"10","lat":51.426335,"lon":4.3153545},{"street":"Couwenberghstraat","housenumber":"10","lat":51.4187213,"lon":4.3326415},{"street":"Doelstraat","housenumber":"10","lat":51.4343216,"lon":4.316228},{"street":"Duinstraat","housenumber":"10","lat":51.4285109,"lon":4.3212855},{"street":"Flemingstraat","housenumber":"10","lat":51.4272341,"lon":4.3222356},{"street":"Fokkerlaan","housenumber":"10","lat":51.4282893,"lon":4.3295349},{"street":"Gemeynte","housenumber":"10","lat":51.4303861,"lon":4.3285161},{"street":"Buys Ballotstraat","housenumber":"1","lat":51.4242186,"lon":4.3336653},{"street":"Cameronlaan","housenumber":"1","lat":51.4262565,"lon":4.3175708},{"street":"Couwenberghstraat","housenumber":"1","lat":51.418659,"lon":4.3322123},{"street":"Doelstraat","housenumber":"1","lat":51.4340724,"lon":4.3180202},{"street":"Doctor de Bruijnlaan","housenumber":"1","lat":51.4192238,"lon":4.331049},{"street":"Duinhoefplein","housenumber":"1","lat":51.4291731,"lon":4.3243093},{"street":"Duinstraat","housenumber":"1","lat":51.4286691,"lon":4.3199157},{"street":"Duintjesplein","housenumber":"1","lat":51.4214555,"lon":4.3283374},{"street":"Edward Jennerstraat","housenumber":"1","lat":51.4281892,"lon":4.3234644},{"street":"Flemingstraat","housenumber":"1","lat":51.4273926,"lon":4.3218724},{"street":"Fokkerlaan","housenumber":"1","lat":51.4286201,"lon":4.3293358},{"street":"Garry Horselaan","housenumber":"1","lat":51.4273601,"lon":4.3134323},{"street":"Gemeynte","housenumber":"1","lat":51.4312404,"lon":4.3277883},{"street":"Geyssendorfferlaan","housenumber":"1","lat":51.4271125,"lon":4.332494},{"street":"Gravesandestraat","housenumber":"1","lat":51.4256209,"lon":4.3326695},{"street":"Griblingstraat","housenumber":"1","lat":51.428407,"lon":4.3234432},{"street":"Hamiltonlaan","housenumber":"1","lat":51.4263324,"lon":4.3160448},{"street":"Heideduinstede","housenumber":"1","lat":51.4289276,"lon":4.3262708},{"street":"Heistraat","housenumber":"1","lat":51.4258697,"lon":4.3254166},{"street":"Hugo de Grootstraat","housenumber":"1","lat":51.4262402,"lon":4.3365519},{"street":"Huijbergseweg","housenumber":"1","lat":51.422732,"lon":4.3241317},{"street":"Huijgensstraat","housenumber":"1","lat":51.4263689,"lon":4.3348666},{"street":"Jef Adriaansenstraat","housenumber":"1","lat":51.4207432,"lon":4.3280952},{"street":"KLM laan","housenumber":"1","lat":51.4271641,"lon":4.3273852},{"street":"Kamerlingh Onnesstraat","housenumber":"1","lat":51.4257178,"lon":4.3342516},{"street":"Keesomstraat","housenumber":"1","lat":51.4242904,"lon":4.3346558},{"street":"Kloosterstraat","housenumber":"1","lat":51.4238717,"lon":4.327131},{"street":"Kooiweg","housenumber":"1","lat":51.4280199,"lon":4.3395307},{"street":"Kromstraat","housenumber":"1","lat":51.4248337,"lon":4.3251587},{"street":"Laan Olieslagers","housenumber":"1","lat":51.4265176,"lon":4.3304343},{"street":"Lammertiende","housenumber":"1","lat":51.4298198,"lon":4.3251152},{"street":"Lindberghlaan","housenumber":"1","lat":51.4261787,"lon":4.3310211},{"street":"Lorentzstraat","housenumber":"1","lat":51.4247752,"lon":4.3315962},{"street":"Maststraat","housenumber":"1","lat":51.4208505,"lon":4.3300193},{"street":"Matthias Wolffstraat","housenumber":"1","lat":51.4245236,"lon":4.3276479},{"street":"Meulenblock","housenumber":"1","lat":51.4226377,"lon":4.3256808},{"street":"Mgr Ariensstraat","housenumber":"1","lat":51.4217672,"lon":4.3260297},{"street":"Mgr Frenckenstraat","housenumber":"1","lat":51.4217643,"lon":4.3267056},{"street":"Mgr Nolensstraat","housenumber":"1","lat":51.419756,"lon":4.3243225},{"street":"Mgr Poelsstraat","housenumber":"1","lat":51.4209169,"lon":4.3254456},{"street":"Minckelersweg","housenumber":"1","lat":51.4245666,"lon":4.3300197},{"street":"Molenstraat","housenumber":"1","lat":51.422337,"lon":4.3282604},{"street":"Norbartstraat","housenumber":"1","lat":51.4178362,"lon":4.3237634},{"street":"Olympialaan","housenumber":"1","lat":51.4175887,"lon":4.3341347},{"street":"Oostlaan","housenumber":"1","lat":51.427026,"lon":4.3355831},{"street":"Ossendrechtseweg","housenumber":"1","lat":51.422084,"lon":4.3233049},{"street":"Parmentierlaan","housenumber":"1","lat":51.4281478,"lon":4.3288003},{"street":"Past van Roesselstraat","housenumber":"1","lat":51.4226282,"lon":4.33149},{"street":"Pasteurstraat","housenumber":"1","lat":51.4272897,"lon":4.3215919},{"street":"Plantagelaan","housenumber":"1","lat":51.4189574,"lon":4.3350468},{"street":"Platengastraat","housenumber":"1","lat":51.4284275,"lon":4.3247368},{"street":"Plesmanlaan","housenumber":"1","lat":51.4266903,"lon":4.3286885},{"street":"Pr Bernhardstraat","housenumber":"1","lat":51.4265046,"lon":4.3225294},{"street":"Pr Clausstraat","housenumber":"1","lat":51.4237252,"lon":4.3298088},{"street":"Putseweg","housenumber":"1","lat":51.4223299,"lon":4.3246507},{"street":"Raadhuisstraat","housenumber":"1","lat":51.4283795,"lon":4.3197668},{"street":"Rubertstraat","housenumber":"1","lat":51.4203902,"lon":4.3298143},{"street":"Schapendreef","housenumber":"1","lat":51.4196997,"lon":4.3280188},{"street":"Smirnofflaan","housenumber":"1","lat":51.427685,"lon":4.3283222},{"street":"Sondermanlaan","housenumber":"1","lat":51.4265437,"lon":4.331851},{"street":"Sportlaan","housenumber":"1","lat":51.4223797,"lon":4.3363078},{"street":"St Lucasplein","housenumber":"1","lat":51.4274887,"lon":4.3225604},{"street":"Suijkerbuijkstraat","housenumber":"1","lat":51.4226125,"lon":4.3310137},{"street":"Torontolaan","housenumber":"1","lat":51.4275984,"lon":4.3168635},{"street":"Trefpunt","housenumber":"1","lat":51.4224592,"lon":4.3272673},{"street":"Valkestraat","housenumber":"1","lat":51.4341428,"lon":4.3139484},{"street":"Verlengde Duinstraat","housenumber":"1","lat":51.4292189,"lon":4.3299403},{"street":"Vogelven","housenumber":"1","lat":51.4313195,"lon":4.3239172},{"street":"De Acacia","housenumber":"1","lat":51.4309777,"lon":4.3130354},{"street":"De Anjer","housenumber":"1","lat":51.4329975,"lon":4.3167974},{"street":"De Berk","housenumber":"1","lat":51.4310581,"lon":4.313791},{"street":"De Eik","housenumber":"1","lat":51.4300448,"lon":4.3130958},{"street":"De Hazelaar","housenumber":"1","lat":51.4325351,"lon":4.3157054},{"street":"De Hortensia","housenumber":"1","lat":51.4328966,"lon":4.3152865},{"street":"De Jasmijn","housenumber":"1","lat":51.4324091,"lon":4.3146387},{"street":"De Narcis","housenumber":"1","lat":51.4320948,"lon":4.3170455},{"street":"Gravesandestraat","housenumber":"10","lat":51.4247769,"lon":4.332395},{"street":"Griblingstraat","housenumber":"10","lat":51.4283973,"lon":4.3228296},{"street":"Hamiltonlaan","housenumber":"10","lat":51.426761,"lon":4.3167106},{"street":"Heideduinstede","housenumber":"10","lat":51.4288278,"lon":4.3264541},{"street":"Heistraat","housenumber":"10","lat":51.427881,"lon":4.3261462},{"street":"Hugo de Grootstraat","housenumber":"10","lat":51.4267739,"lon":4.3369135},{"street":"Huijbergseweg","housenumber":"10","lat":51.4225879,"lon":4.3251373},{"street":"Huijgensstraat","housenumber":"10","lat":51.4255396,"lon":4.3346125},{"street":"Jef Adriaansenstraat","housenumber":"10","lat":51.4207834,"lon":4.3285687},{"street":"KLM laan","housenumber":"10","lat":51.4267175,"lon":4.3276975},{"street":"Kamerlingh Onnesstraat","housenumber":"10","lat":51.4260151,"lon":4.3342925},{"street":"Keesomstraat","housenumber":"10","lat":51.4247712,"lon":4.3341414},{"street":"Kloosterstraat","housenumber":"10","lat":51.4239368,"lon":4.3273739},{"street":"Laan Olieslagers","housenumber":"10","lat":51.4260712,"lon":4.3303523},{"street":"Lammertiende","housenumber":"10","lat":51.4296414,"lon":4.3258755},{"street":"Lindberghlaan","housenumber":"10","lat":51.4258305,"lon":4.3309966},{"street":"Maststraat","housenumber":"10","lat":51.4208987,"lon":4.33041},{"street":"Matthias Wolffstraat","housenumber":"10","lat":51.4243042,"lon":4.3285269},{"street":"Meulenblock","housenumber":"10","lat":51.4225593,"lon":4.3258475},{"street":"Mgr Ariensstraat","housenumber":"10","lat":51.4217269,"lon":4.3273683},{"street":"Mgr Frenckenstraat","housenumber":"10","lat":51.4215571,"lon":4.3266529},{"street":"Mgr Nolensstraat","housenumber":"10","lat":51.4191275,"lon":4.3250042},{"street":"Minckelersweg","housenumber":"10","lat":51.4247142,"lon":4.3308212},{"street":"Molenstraat","housenumber":"10","lat":51.4223558,"lon":4.3279465},{"street":"Nieuweweg","housenumber":"10","lat":51.4286287,"lon":4.3174576},{"street":"Norbartstraat","housenumber":"10","lat":51.4178089,"lon":4.3227433},{"street":"Onderstal","housenumber":"10","lat":51.4247918,"lon":4.3215594},{"street":"Oostlaan","housenumber":"10","lat":51.4270582,"lon":4.3365475},{"street":"Parmentierlaan","housenumber":"10","lat":51.4277956,"lon":4.3289599},{"street":"Past van Roesselstraat","housenumber":"10","lat":51.421307,"lon":4.331836},{"street":"Pasteurstraat","housenumber":"10","lat":51.427869,"lon":4.3218757},{"street":"Paus Leo XIIIestraat","housenumber":"10","lat":51.4211371,"lon":4.3279135},{"street":"Plantagelaan","housenumber":"10","lat":51.4184745,"lon":4.333683},{"street":"Plesmanlaan","housenumber":"10","lat":51.426896,"lon":4.3305262},{"street":"Pr Bernhardstraat","housenumber":"10","lat":51.4263497,"lon":4.3225377},{"street":"Putseweg","housenumber":"10","lat":51.4208783,"lon":4.3261511},{"street":"Raadhuisstraat","housenumber":"10","lat":51.4279048,"lon":4.3198904},{"street":"Robert Kochstraat","housenumber":"10","lat":51.4270423,"lon":4.3243379},{"street":"Rubertstraat","housenumber":"10","lat":51.4200137,"lon":4.3299237},{"street":"Schapendreef","housenumber":"10","lat":51.419344,"lon":4.3264599},{"street":"Semmelweissstraat","housenumber":"10","lat":51.4272063,"lon":4.32412},{"street":"Smirnofflaan","housenumber":"10","lat":51.4272915,"lon":4.328547},{"street":"Sondermanlaan","housenumber":"10","lat":51.4262518,"lon":4.3317108},{"street":"St Lucasplein","housenumber":"10","lat":51.4273793,"lon":4.3232312},{"street":"Struikenlaan","housenumber":"10","lat":51.4324844,"lon":4.3137852},{"street":"Suijkerbuijkstraat","housenumber":"10","lat":51.4223668,"lon":4.3306887},{"street":"Torontolaan","housenumber":"10","lat":51.4279393,"lon":4.3167836},{"street":"Trefpunt","housenumber":"10","lat":51.4221906,"lon":4.3275066},{"street":"Valkestraat","housenumber":"10","lat":51.4353625,"lon":4.3155881},{"street":"Verlengde Duinstraat","housenumber":"10","lat":51.4287729,"lon":4.3303245},{"street":"Vogelven","housenumber":"10","lat":51.4310178,"lon":4.3247758},{"street":"Wouwbaan","housenumber":"10","lat":51.4245032,"lon":4.3244131},{"street":"Zandfort","housenumber":"10","lat":51.4344557,"lon":4.3206143},{"street":"De Acacia","housenumber":"10","lat":51.4311163,"lon":4.3127384},{"street":"De Anjer","housenumber":"10","lat":51.4328213,"lon":4.3173217},{"street":"De Berk","housenumber":"10","lat":51.4311469,"lon":4.3146518},{"street":"De Eik","housenumber":"10","lat":51.4303815,"lon":4.3125558},{"street":"De Hazelaar","housenumber":"10","lat":51.4322616,"lon":4.3161266},{"street":"De Hortensia","housenumber":"10","lat":51.4331787,"lon":4.3156034},{"street":"De Jasmijn","housenumber":"10","lat":51.4318704,"lon":4.3146408},{"street":"De Narcis","housenumber":"10","lat":51.4320237,"lon":4.3178149},{"street":"De Papaver","housenumber":"10","lat":51.4310036,"lon":4.3164236},{"street":"De Roos","housenumber":"10","lat":51.4314929,"lon":4.3170884},{"street":"De Sering","housenumber":"10","lat":51.4302957,"lon":4.3172432},{"street":"De Tulp","housenumber":"10","lat":51.4296158,"lon":4.316591},{"street":"De Vuurdoorn","housenumber":"10","lat":51.4327488,"lon":4.3132111},{"street":"de Wildert","housenumber":"10","lat":51.430832,"lon":4.3254337},{"street":"De Wilg","housenumber":"10","lat":51.4292101,"lon":4.3132305},{"street":"De Zonnebloem","housenumber":"10","lat":51.4298714,"lon":4.3150771},{"street":"dokter van de Karplein","housenumber":"10","lat":51.4300137,"lon":4.3221745},{"street":"op den Duyn","housenumber":"10","lat":51.4297136,"lon":4.3206705},{"street":"van 't Hoffstraat","housenumber":"10","lat":51.4240584,"lon":4.3308651},{"street":"van Houtenstraat","housenumber":"10","lat":51.4201914,"lon":4.3257357},{"street":"Van Weerden Poelmanlaan","housenumber":"10","lat":51.426017,"lon":4.3287053},{"street":"van der Dilftstraat","housenumber":"10","lat":51.4221294,"lon":4.328901},{"street":"Van der Meulenplein","housenumber":"10","lat":51.4220944,"lon":4.3239657},{"street":"Antwerpsestraatweg","housenumber":"100","lat":51.4342961,"lon":4.3190182},{"street":"KLM laan","housenumber":"100","lat":51.4253565,"lon":4.3297638},{"street":"Minckelersweg","housenumber":"100","lat":51.4266073,"lon":4.3345858},{"street":"St Lucasplein","housenumber":"100","lat":51.4275019,"lon":4.3236907},{"street":"Wouwbaan","housenumber":"100","lat":51.4290023,"lon":4.3292737},{"street":"in d' Hoef","housenumber":"100","lat":51.4296804,"lon":4.3243116},{"street":"Raadhuisstraat","housenumber":"100a","lat":51.4247226,"lon":4.3228407},{"street":"Raadhuisstraat","housenumber":"100","lat":51.4247399,"lon":4.323021},{"street":"Huijgensstraat","housenumber":"101","lat":51.4246892,"lon":4.3353963},{"street":"Oostlaan","housenumber":"101","lat":51.4250521,"lon":4.336378},{"street":"Raadhuisstraat","housenumber":"101","lat":51.4245565,"lon":4.3235299},{"street":"in d' Hoef","housenumber":"101","lat":51.4299454,"lon":4.3247504},{"street":"Raadhuisstraat","housenumber":"101a","lat":51.424487,"lon":4.3235693},{"street":"Raadhuisstraat","housenumber":"101b","lat":51.4244263,"lon":4.3236037},{"street":"Raadhuisstraat","housenumber":"101c","lat":51.4243646,"lon":4.3236386},{"street":"Raadhuisstraat","housenumber":"101d","lat":51.4244227,"lon":4.3238525},{"street":"KLM laan","housenumber":"102","lat":51.4253359,"lon":4.3297948},{"street":"Minckelersweg","housenumber":"102","lat":51.4266419,"lon":4.3346537},{"street":"St Lucasplein","housenumber":"102","lat":51.4274868,"lon":4.3238648},{"street":"Wouwbaan","housenumber":"102","lat":51.4293158,"lon":4.3296563},{"street":"in d' Hoef","housenumber":"102","lat":51.4296737,"lon":4.3242317},{"street":"Huijgensstraat","housenumber":"103","lat":51.4246922,"lon":4.3354903},{"street":"Oostlaan","housenumber":"103","lat":51.4250535,"lon":4.3365362},{"street":"Raadhuisstraat","housenumber":"103","lat":51.4245115,"lon":4.3235164},{"street":"in d' Hoef","housenumber":"103","lat":51.4298946,"lon":4.3247612},{"street":"KLM laan","housenumber":"104","lat":51.4253152,"lon":4.3298258},{"street":"Minckelersweg","housenumber":"104","lat":51.4266761,"lon":4.3347208},{"street":"Raadhuisstraat","housenumber":"104","lat":51.4245213,"lon":4.3231442},{"street":"St Lucasplein","housenumber":"104","lat":51.4275909,"lon":4.3238487},{"street":"in d' Hoef","housenumber":"104","lat":51.429667,"lon":4.3241519},{"street":"Raadhuisstraat","housenumber":"104a","lat":51.4244697,"lon":4.3231724},{"street":"Huijgensstraat","housenumber":"105","lat":51.4246947,"lon":4.3355698},{"street":"Oostlaan","housenumber":"105","lat":51.4250542,"lon":4.336608},{"street":"Raadhuisstraat","housenumber":"105","lat":51.4243839,"lon":4.3235887},{"street":"Wouwbaan","housenumber":"105","lat":51.4296098,"lon":4.3294279},{"street":"in d' Hoef","housenumber":"105","lat":51.4298448,"lon":4.3247719},{"street":"KLM laan","housenumber":"106","lat":51.4252946,"lon":4.3298568},{"street":"Minckelersweg","housenumber":"106","lat":51.4267101,"lon":4.3347874},{"street":"Raadhuisstraat","housenumber":"106","lat":51.4244069,"lon":4.3232063},{"street":"St Lucasplein","housenumber":"106","lat":51.4276419,"lon":4.3238408},{"street":"Wouwbaan","housenumber":"106","lat":51.4294285,"lon":4.3297621},{"street":"in d' Hoef","housenumber":"106","lat":51.42966,"lon":4.3240694},{"street":"Huijgensstraat","housenumber":"107","lat":51.4244745,"lon":4.3351283},{"street":"Oostlaan","housenumber":"107","lat":51.4250549,"lon":4.3366943},{"street":"Raadhuisstraat","housenumber":"107","lat":51.4241131,"lon":4.3237001},{"street":"Wouwbaan","housenumber":"107","lat":51.4296642,"lon":4.3294841},{"street":"in d' Hoef","housenumber":"107","lat":51.4297932,"lon":4.3247829},{"street":"Wouwbaan","housenumber":"107a","lat":51.4297553,"lon":4.3295854},{"street":"KLM laan","housenumber":"108","lat":51.425274,"lon":4.3298878},{"street":"Minckelersweg","housenumber":"108","lat":51.4267442,"lon":4.3348543},{"street":"Raadhuisstraat","housenumber":"108","lat":51.4242746,"lon":4.3232776},{"street":"St Lucasplein","housenumber":"108","lat":51.4277449,"lon":4.3238252},{"street":"Wouwbaan","housenumber":"108","lat":51.4295632,"lon":4.3299032},{"street":"in d' Hoef","housenumber":"108","lat":51.4296531,"lon":4.3239868},{"street":"Huijgensstraat","housenumber":"109","lat":51.4244767,"lon":4.3352005},{"street":"Oostlaan","housenumber":"109","lat":51.4250557,"lon":4.3367805},{"street":"Wouwbaan","housenumber":"109","lat":51.4298313,"lon":4.329681},{"street":"in d' Hoef","housenumber":"109","lat":51.4293476,"lon":4.3236437},{"street":"Huijbergseweg","housenumber":"10a","lat":51.4225937,"lon":4.3252413},{"street":"St Lucasplein","housenumber":"10a","lat":51.427348,"lon":4.3232375},{"street":"Flemingstraat","housenumber":"10b","lat":51.4270657,"lon":4.3222582},{"street":"Flemingstraat","housenumber":"10c","lat":51.4270384,"lon":4.3222689},{"street":"Flemingstraat","housenumber":"10d","lat":51.4270113,"lon":4.3222795},{"street":"Flemingstraat","housenumber":"10e","lat":51.4269842,"lon":4.3222901},{"street":"Flemingstraat","housenumber":"10f","lat":51.426957,"lon":4.3223007},{"street":"Flemingstraat","housenumber":"10h","lat":51.4269286,"lon":4.3223118},{"street":"De Hortensia","housenumber":"11","lat":51.4331303,"lon":4.315281},{"street":"De Jasmijn","housenumber":"11","lat":51.4318194,"lon":4.3146416},{"street":"De Narcis","housenumber":"11","lat":51.4320719,"lon":4.3178137},{"street":"De Papaver","housenumber":"11","lat":51.4308301,"lon":4.3164317},{"street":"De Roos","housenumber":"11","lat":51.4314935,"lon":4.3171603},{"street":"De Sering","housenumber":"11","lat":51.4302419,"lon":4.3172362},{"street":"De Tulp","housenumber":"11","lat":51.4296116,"lon":4.3166698},{"street":"De Vuurdoorn","housenumber":"11","lat":51.4328431,"lon":4.3123971},{"street":"De Wilg","housenumber":"11","lat":51.4292094,"lon":4.3131586},{"street":"De Zonnebloem","housenumber":"11","lat":51.4298706,"lon":4.3149949},{"street":"dokter van de Karplein","housenumber":"11","lat":51.4301703,"lon":4.3221663},{"street":"in d' Hoef","housenumber":"11","lat":51.4292718,"lon":4.3224504},{"street":"op den Duyn","housenumber":"11","lat":51.429137,"lon":4.3208691},{"street":"van Houtenstraat","housenumber":"11","lat":51.4202022,"lon":4.3260466},{"street":"Van Weerden Poelmanlaan","housenumber":"11","lat":51.4264807,"lon":4.3283501},{"street":"Meulenblock","housenumber":"12","lat":51.4227077,"lon":4.3263543},{"street":"Mgr Ariensstraat","housenumber":"12","lat":51.421691,"lon":4.3274382},{"street":"Mgr Frenckenstraat","housenumber":"12","lat":51.4215218,"lon":4.3267256},{"street":"Mgr Nolensstraat","housenumber":"12","lat":51.4190951,"lon":4.325071},{"street":"Minckelersweg","housenumber":"12","lat":51.424751,"lon":4.3309066},{"street":"Molenstraat","housenumber":"12","lat":51.422291,"lon":4.32797},{"street":"Nieuweweg","housenumber":"12","lat":51.4286363,"lon":4.3173136},{"street":"Norbartstraat","housenumber":"12","lat":51.4178082,"lon":4.3226714},{"street":"Onderstal","housenumber":"12","lat":51.4247843,"lon":4.3214881},{"street":"Oostlaan","housenumber":"12","lat":51.4270569,"lon":4.3364037},{"street":"Ossendrechtseweg","housenumber":"12","lat":51.4218729,"lon":4.3228353},{"street":"Parmentierlaan","housenumber":"12","lat":51.4277649,"lon":4.3290336},{"street":"Past van Roesselstraat","housenumber":"12","lat":51.4212554,"lon":4.3318149},{"street":"Pasteurstraat","housenumber":"12","lat":51.4278788,"lon":4.3219617},{"street":"Paus Leo XIIIestraat","housenumber":"12","lat":51.421219,"lon":4.3280266},{"street":"Plantagelaan","housenumber":"12","lat":51.4182654,"lon":4.3334147},{"street":"Plesmanlaan","housenumber":"12","lat":51.4270602,"lon":4.3307956},{"street":"Pr Bernhardstraat","housenumber":"12","lat":51.4262994,"lon":4.32225},{"street":"Pr Hendrikstraat","housenumber":"12","lat":51.4248025,"lon":4.3296544},{"street":"Putseweg","housenumber":"12","lat":51.420843,"lon":4.3262238},{"street":"Raadhuisstraat","housenumber":"12","lat":51.4278605,"lon":4.3199634},{"street":"Robert Kochstraat","housenumber":"12","lat":51.4270451,"lon":4.3243826},{"street":"Rubertstraat","housenumber":"12","lat":51.4199784,"lon":4.3299964},{"street":"Schapendreef","housenumber":"12","lat":51.4192176,"lon":4.3264054},{"street":"Semmelweissstraat","housenumber":"12","lat":51.4272161,"lon":4.3242061},{"street":"Smirnofflaan","housenumber":"12","lat":51.4272388,"lon":4.3286776},{"street":"Sondermanlaan","housenumber":"12","lat":51.4262102,"lon":4.3317654},{"street":"St Lucasplein","housenumber":"12","lat":51.4273793,"lon":4.3233682},{"street":"Steenstraat","housenumber":"12","lat":51.4385336,"lon":4.3133992},{"street":"Struikenlaan","housenumber":"12","lat":51.4324602,"lon":4.3137084},{"street":"Suijkerbuijkstraat","housenumber":"12","lat":51.4223128,"lon":4.3306755},{"street":"Torontolaan","housenumber":"12","lat":51.4279369,"lon":4.3165248},{"street":"Trefpunt","housenumber":"12","lat":51.4221733,"lon":4.3275402},{"street":"Vogelven","housenumber":"12","lat":51.4309432,"lon":4.3248597},{"street":"Wouwbaan","housenumber":"12","lat":51.4245487,"lon":4.3244696},{"street":"Zandfort","housenumber":"12","lat":51.4344937,"lon":4.3208435},{"street":"De Acacia","housenumber":"12","lat":51.4311794,"lon":4.3126319},{"street":"De Anjer","housenumber":"12","lat":51.4327236,"lon":4.3173602},{"street":"De Berk","housenumber":"12","lat":51.4312214,"lon":4.3149376},{"street":"De Eik","housenumber":"12","lat":51.4304803,"lon":4.3125535},{"street":"De Hazelaar","housenumber":"12","lat":51.4321587,"lon":4.3161285},{"street":"De Hortensia","housenumber":"12","lat":51.4332283,"lon":4.3155885},{"street":"De Jasmijn","housenumber":"12","lat":51.4317683,"lon":4.3146423},{"street":"De Narcis","housenumber":"12","lat":51.4321203,"lon":4.3178127},{"street":"De Papaver","housenumber":"12","lat":51.4308292,"lon":4.3163491},{"street":"De Roos","housenumber":"12","lat":51.4314942,"lon":4.3172322},{"street":"De Sering","housenumber":"12","lat":51.4301885,"lon":4.3172291},{"street":"De Tulp","housenumber":"12","lat":51.4298603,"lon":4.3172299},{"street":"De Vuurdoorn","housenumber":"12","lat":51.4327589,"lon":4.313288},{"street":"de Wildert","housenumber":"12","lat":51.4308567,"lon":4.3255086},{"street":"De Wilg","housenumber":"12","lat":51.4292254,"lon":4.312779},{"street":"De Zonnebloem","housenumber":"12","lat":51.4298701,"lon":4.3149117},{"street":"dokter van de Karplein","housenumber":"12","lat":51.4302192,"lon":4.3221729},{"street":"in d' Hoef","housenumber":"12","lat":51.4295128,"lon":4.3223118},{"street":"op den Duyn","housenumber":"12","lat":51.4298384,"lon":4.3206439},{"street":"van 't Hoffstraat","housenumber":"12","lat":51.4239326,"lon":4.3308681},{"street":"van Houtenstraat","housenumber":"12","lat":51.4200107,"lon":4.3256393},{"street":"Van Weerden Poelmanlaan","housenumber":"12","lat":51.4259985,"lon":4.3286735},{"street":"van der Dilftstraat","housenumber":"12","lat":51.4220694,"lon":4.3288986},{"street":"Van der Meulenplein","housenumber":"12","lat":51.4220943,"lon":4.3240401},{"street":"KLM laan","housenumber":"120","lat":51.4251458,"lon":4.3300804},{"street":"Minckelersweg","housenumber":"120","lat":51.4269713,"lon":4.3352997},{"street":"St Lucasplein","housenumber":"120","lat":51.4276267,"lon":4.3237066},{"street":"Wouwbaan","housenumber":"120","lat":51.4301646,"lon":4.3305378},{"street":"Huijgensstraat","housenumber":"121","lat":51.4242948,"lon":4.3351445},{"street":"Putseweg","housenumber":"121","lat":51.4183994,"lon":4.3323333},{"street":"Raadhuisstraat","housenumber":"121","lat":51.423417,"lon":4.3235901},{"street":"KLM laan","housenumber":"122","lat":51.4251231,"lon":4.3301145},{"street":"Minckelersweg","housenumber":"122","lat":51.427007,"lon":4.3353694},{"street":"St Lucasplein","housenumber":"122","lat":51.4275917,"lon":4.3237145},{"street":"Wouwbaan","housenumber":"122","lat":51.4302621,"lon":4.3306408},{"street":"Huijgensstraat","housenumber":"123","lat":51.4242409,"lon":4.3351458},{"street":"Putseweg","housenumber":"123","lat":51.4183641,"lon":4.332406},{"street":"KLM laan","housenumber":"110","lat":51.4252534,"lon":4.3299188},{"street":"Minckelersweg","housenumber":"110","lat":51.4267789,"lon":4.3349223},{"street":"St Lucasplein","housenumber":"110","lat":51.4279292,"lon":4.3237715},{"street":"Wouwbaan","housenumber":"110","lat":51.429698,"lon":4.3300445},{"street":"in d' Hoef","housenumber":"110","lat":51.4296463,"lon":4.3239069},{"street":"Huijgensstraat","housenumber":"111","lat":51.4244789,"lon":4.3352728},{"street":"Oostlaan","housenumber":"111","lat":51.4250661,"lon":4.3369385},{"street":"Putseweg","housenumber":"111","lat":51.4186466,"lon":4.3318388},{"street":"Raadhuisstraat","housenumber":"111","lat":51.4239125,"lon":4.323708},{"street":"in d' Hoef","housenumber":"111","lat":51.4293326,"lon":4.3235628},{"street":"Raadhuisstraat","housenumber":"111a","lat":51.4238648,"lon":4.32379},{"street":"Huijbergseweg","housenumber":"112","lat":51.4231191,"lon":4.3363507},{"street":"KLM laan","housenumber":"112","lat":51.4252328,"lon":4.3299497},{"street":"Minckelersweg","housenumber":"112","lat":51.4268361,"lon":4.3350355},{"street":"Raadhuisstraat","housenumber":"112;110","lat":51.4241912,"lon":4.3233219},{"street":"St Lucasplein","housenumber":"112","lat":51.4279208,"lon":4.3236341},{"street":"in d' Hoef","housenumber":"112","lat":51.4296396,"lon":4.3238272},{"street":"Huijgensstraat","housenumber":"113","lat":51.4244811,"lon":4.3353466},{"street":"Oostlaan","housenumber":"113","lat":51.4250669,"lon":4.3370247},{"street":"Putseweg","housenumber":"113","lat":51.4186114,"lon":4.3319115},{"street":"Raadhuisstraat","housenumber":"113","lat":51.4237683,"lon":4.3236682},{"street":"Wouwbaan","housenumber":"113","lat":51.4299543,"lon":4.3297506},{"street":"in d' Hoef","housenumber":"113","lat":51.4293259,"lon":4.3234829},{"street":"Huijbergseweg","housenumber":"114","lat":51.423327,"lon":4.3374674},{"street":"KLM laan","housenumber":"114","lat":51.4252121,"lon":4.3299807},{"street":"Minckelersweg","housenumber":"114","lat":51.4268708,"lon":4.3351033},{"street":"St Lucasplein","housenumber":"114","lat":51.4278362,"lon":4.3236749},{"street":"in d' Hoef","housenumber":"114","lat":51.4296326,"lon":4.3237445},{"street":"Huijgensstraat","housenumber":"115","lat":51.4244834,"lon":4.3354199},{"street":"Oostlaan","housenumber":"115","lat":51.4250334,"lon":4.3372987},{"street":"Putseweg","housenumber":"115","lat":51.4185761,"lon":4.3319842},{"street":"Raadhuisstraat","housenumber":"115","lat":51.4236961,"lon":4.3236411},{"street":"Wouwbaan","housenumber":"115","lat":51.4300814,"lon":4.3298915},{"street":"in d' Hoef","housenumber":"115","lat":51.4293193,"lon":4.3234031},{"street":"KLM laan","housenumber":"116","lat":51.4251908,"lon":4.3300128},{"street":"Minckelersweg","housenumber":"116","lat":51.426905,"lon":4.3351701},{"street":"St Lucasplein","housenumber":"116","lat":51.4277482,"lon":4.323687},{"street":"Huijgensstraat","housenumber":"117","lat":51.4244856,"lon":4.3354926},{"street":"Oostlaan","housenumber":"117","lat":51.4249525,"lon":4.3373006},{"street":"Putseweg","housenumber":"117","lat":51.4185408,"lon":4.3320569},{"street":"Raadhuisstraat","housenumber":"117","lat":51.423617,"lon":4.3236124},{"street":"Wouwbaan","housenumber":"117","lat":51.4302265,"lon":4.3300319},{"street":"in d' Hoef","housenumber":"117","lat":51.4293203,"lon":4.3233188},{"street":"Raadhuisstraat","housenumber":"117a","lat":51.4236139,"lon":4.3236625},{"street":"KLM laan","housenumber":"118","lat":51.4251685,"lon":4.3300463},{"street":"Minckelersweg","housenumber":"118","lat":51.4269377,"lon":4.3352339},{"street":"St Lucasplein","housenumber":"118","lat":51.4277133,"lon":4.3236949},{"street":"Wouwbaan","housenumber":"118","lat":51.4299725,"lon":4.3303717},{"street":"Huijgensstraat","housenumber":"119","lat":51.4244878,"lon":4.3355654},{"street":"Oostlaan","housenumber":"119","lat":51.4248718,"lon":4.3373168},{"street":"Putseweg","housenumber":"119","lat":51.4184349,"lon":4.332275},{"street":"Raadhuisstraat","housenumber":"119","lat":51.423507,"lon":4.3236024},{"street":"Binnenweg","housenumber":"11a","lat":51.4262858,"lon":4.3237245},{"street":"Zandfort","housenumber":"11a","lat":51.4348683,"lon":4.3205184},{"street":"De Tulp","housenumber":"11a","lat":51.4294629,"lon":4.316755},{"street":"Aalbersestraat","housenumber":"12","lat":51.4213116,"lon":4.3241085},{"street":"Antwerpsestraatweg","housenumber":"12","lat":51.4290925,"lon":4.3190286},{"street":"Bijentiende","housenumber":"12","lat":51.4302157,"lon":4.3254267},{"street":"Binnenweg","housenumber":"12","lat":51.4253834,"lon":4.3243351},{"street":"Bloemenlaan","housenumber":"12","lat":51.4334798,"lon":4.3161357},{"street":"Blériotlaan","housenumber":"12","lat":51.4271898,"lon":4.333322},{"street":"Buys Ballotstraat","housenumber":"12","lat":51.4239148,"lon":4.3341123},{"street":"Cameronlaan","housenumber":"12","lat":51.4275001,"lon":4.3179011},{"street":"Canadalaan","housenumber":"12","lat":51.4264039,"lon":4.3150222},{"street":"Couwenberghstraat","housenumber":"12","lat":51.4187623,"lon":4.332694},{"street":"Dennenlaan","housenumber":"12","lat":51.4177953,"lon":4.3301476},{"street":"Duinstraat","housenumber":"12","lat":51.4285311,"lon":4.3215295},{"street":"Flemingstraat","housenumber":"12","lat":51.4272627,"lon":4.3224219},{"street":"Fokkerlaan","housenumber":"12","lat":51.4282586,"lon":4.3296087},{"street":"Gemeynte","housenumber":"12","lat":51.4304488,"lon":4.3282546},{"street":"Gravesandestraat","housenumber":"12","lat":51.4247795,"lon":4.3324824},{"street":"Griblingstraat","housenumber":"12","lat":51.4284011,"lon":4.3228721},{"street":"Heideduinstede","housenumber":"12","lat":51.4289101,"lon":4.3264594},{"street":"Heistraat","housenumber":"12","lat":51.4285037,"lon":4.3264193},{"street":"Hugo de Grootstraat","housenumber":"12","lat":51.4267753,"lon":4.3370717},{"street":"Huijbergseweg","housenumber":"12","lat":51.422607,"lon":4.3253979},{"street":"Huijgensstraat","housenumber":"12","lat":51.4254768,"lon":4.3346284},{"street":"Jan van der Heijdenstraat","housenumber":"12","lat":51.425478,"lon":4.3209106},{"street":"Jef Adriaansenstraat","housenumber":"12","lat":51.4208198,"lon":4.328611},{"street":"KLM laan","housenumber":"12","lat":51.4266912,"lon":4.3277701},{"street":"Kamerlingh Onnesstraat","housenumber":"12","lat":51.4259794,"lon":4.3342221},{"street":"Keesomstraat","housenumber":"12","lat":51.4248341,"lon":4.3341399},{"street":"Kloosterstraat","housenumber":"12","lat":51.4240442,"lon":4.3273139},{"street":"Laan Olieslagers","housenumber":"12","lat":51.4261072,"lon":4.3304224},{"street":"Lammertiende","housenumber":"12","lat":51.4296481,"lon":4.3259552},{"street":"Lindberghlaan","housenumber":"12","lat":51.4257861,"lon":4.3310552},{"street":"Matthias Wolffstraat","housenumber":"12","lat":51.4243067,"lon":4.3287756},{"street":"De Narcis","housenumber":"14","lat":51.4322176,"lon":4.3178104},{"street":"De Papaver","housenumber":"14","lat":51.4308282,"lon":4.3161841},{"street":"De Roos","housenumber":"14","lat":51.4314687,"lon":4.317391},{"street":"De Sering","housenumber":"14","lat":51.4300788,"lon":4.3172439},{"street":"De Tulp","housenumber":"14","lat":51.4297536,"lon":4.3172162},{"street":"De Vuurdoorn","housenumber":"14","lat":51.4327873,"lon":4.3134368},{"street":"de Wildert","housenumber":"14","lat":51.4309145,"lon":4.3256846},{"street":"De Wilg","housenumber":"14","lat":51.429317,"lon":4.3127749},{"street":"De Zonnebloem","housenumber":"14","lat":51.4298455,"lon":4.3146601},{"street":"dokter van de Karplein","housenumber":"14","lat":51.4303121,"lon":4.3222121},{"street":"in d' Hoef","housenumber":"14","lat":51.4295059,"lon":4.3222291},{"street":"op den Duyn","housenumber":"14","lat":51.4300928,"lon":4.3205884},{"street":"van 't Hoffstraat","housenumber":"14","lat":51.4237976,"lon":4.3308568},{"street":"van Houtenstraat","housenumber":"14","lat":51.4199107,"lon":4.3255122},{"street":"Van Weerden Poelmanlaan","housenumber":"14","lat":51.4259789,"lon":4.3286396},{"street":"van der Dilftstraat","housenumber":"14","lat":51.4220094,"lon":4.3288961},{"street":"Van der Meulenplein","housenumber":"14","lat":51.4220642,"lon":4.3241195},{"street":"KLM laan","housenumber":"140","lat":51.425258,"lon":4.329795},{"street":"Wouwbaan","housenumber":"140","lat":51.4310487,"lon":4.3314797},{"street":"Huijgensstraat","housenumber":"141","lat":51.423957,"lon":4.3355549},{"street":"KLM laan","housenumber":"142","lat":51.4252787,"lon":4.3297642},{"street":"Wouwbaan","housenumber":"142","lat":51.4311214,"lon":4.3315643},{"street":"Huijgensstraat","housenumber":"143","lat":51.4237378,"lon":4.3351718},{"street":"Wouwbaan","housenumber":"143","lat":51.4312071,"lon":4.3311021},{"street":"KLM laan","housenumber":"144","lat":51.4252994,"lon":4.3297334},{"street":"Wouwbaan","housenumber":"144","lat":51.4311667,"lon":4.3316064},{"street":"Huijgensstraat","housenumber":"145","lat":51.423675,"lon":4.3351876},{"street":"Wouwbaan","housenumber":"145","lat":51.4312525,"lon":4.3311586},{"street":"KLM laan","housenumber":"146","lat":51.4253201,"lon":4.3297025},{"street":"Wouwbaan","housenumber":"146","lat":51.4313319,"lon":4.3317074},{"street":"Huijgensstraat","housenumber":"147","lat":51.4236597,"lon":4.3354899},{"street":"Putseweg","housenumber":"147","lat":51.4167467,"lon":4.3364095},{"street":"Wouwbaan","housenumber":"147","lat":51.4313161,"lon":4.331229},{"street":"KLM laan","housenumber":"148","lat":51.4253408,"lon":4.3296717},{"street":"Wouwbaan","housenumber":"148","lat":51.4314299,"lon":4.3318879},{"street":"Huijgensstraat","housenumber":"149","lat":51.4236609,"lon":4.3356193},{"street":"Wouwbaan","housenumber":"149","lat":51.4314069,"lon":4.3313276},{"street":"Aalbersestraat","housenumber":"15","lat":51.4216227,"lon":4.3242204},{"street":"Antwerpsestraatweg","housenumber":"15","lat":51.4292936,"lon":4.3184055},{"street":"Bijentiende","housenumber":"15","lat":51.430496,"lon":4.3259766},{"street":"Binnenweg","housenumber":"15","lat":51.426342,"lon":4.3239676},{"street":"Blériotlaan","housenumber":"15","lat":51.4272219,"lon":4.3337684},{"street":"Burg Moorsstraat","housenumber":"15","lat":51.4219339,"lon":4.3298461},{"street":"Buys Ballotstraat","housenumber":"15","lat":51.4241213,"lon":4.3328479},{"street":"Canadalaan","housenumber":"15","lat":51.4259453,"lon":4.315982},{"street":"Couwenberghstraat","housenumber":"15","lat":51.418941,"lon":4.3325795},{"street":"Doelstraat","housenumber":"15","lat":51.4335711,"lon":4.3133579},{"street":"Doctor de Bruijnlaan","housenumber":"15","lat":51.4196431,"lon":4.3316863},{"street":"Duinhoefplein","housenumber":"15","lat":51.4291209,"lon":4.3243261},{"street":"Duinstraat","housenumber":"15","lat":51.4289622,"lon":4.3234607},{"street":"Edward Jennerstraat","housenumber":"15","lat":51.4282227,"lon":4.3241826},{"street":"Fokkerlaan","housenumber":"15","lat":51.4283739,"lon":4.3299455},{"street":"Geyssendorfferlaan","housenumber":"15","lat":51.426823,"lon":4.3328751},{"street":"Gravesandestraat","housenumber":"15","lat":51.4252288,"lon":4.3330524},{"street":"Hamiltonlaan","housenumber":"15","lat":51.427166,"lon":4.3154361},{"street":"Heideduinstede","housenumber":"15","lat":51.4289456,"lon":4.3269343},{"street":"Hugo de Grootstraat","housenumber":"15","lat":51.4258136,"lon":4.3369626},{"street":"Huijbergseweg","housenumber":"15","lat":51.423244,"lon":4.3282959},{"street":"Huijgensstraat","housenumber":"15","lat":51.4265885,"lon":4.3352929},{"street":"Raadhuisstraat","housenumber":"123","lat":51.4233294,"lon":4.3235376},{"street":"Huijbergseweg","housenumber":"124","lat":51.423416,"lon":4.3393777},{"street":"KLM laan","housenumber":"124","lat":51.4250861,"lon":4.3300507},{"street":"Raadhuisstraat","housenumber":"124","lat":51.4236569,"lon":4.3232826},{"street":"St Lucasplein","housenumber":"124","lat":51.4275043,"lon":4.3237264},{"street":"Wouwbaan","housenumber":"124","lat":51.4303593,"lon":4.3307435},{"street":"Huijbergseweg","housenumber":"124a","lat":51.4225996,"lon":4.3399835},{"street":"Huijgensstraat","housenumber":"125","lat":51.424196,"lon":4.3351468},{"street":"Putseweg","housenumber":"125","lat":51.4183288,"lon":4.3324787},{"street":"Raadhuisstraat","housenumber":"125","lat":51.4232591,"lon":4.3235275},{"street":"Wouwbaan","housenumber":"125","lat":51.4303994,"lon":4.330258},{"street":"KLM laan","housenumber":"126","lat":51.4251088,"lon":4.3300169},{"street":"St Lucasplein","housenumber":"126","lat":51.4274837,"lon":4.3238148},{"street":"Wouwbaan","housenumber":"126","lat":51.4304696,"lon":4.3308598},{"street":"Huijgensstraat","housenumber":"127","lat":51.4241602,"lon":4.335162},{"street":"Hamiltonlaan","housenumber":"13","lat":51.4270425,"lon":4.315373},{"street":"Heideduinstede","housenumber":"13","lat":51.4289219,"lon":4.3266176},{"street":"Hugo de Grootstraat","housenumber":"13","lat":51.4258746,"lon":4.3369633},{"street":"Huijbergseweg","housenumber":"13","lat":51.4232239,"lon":4.3280519},{"street":"Huijgensstraat","housenumber":"13","lat":51.4265607,"lon":4.3352073},{"street":"Jef Adriaansenstraat","housenumber":"13","lat":51.4210162,"lon":4.3284627},{"street":"KLM laan","housenumber":"13","lat":51.4269979,"lon":4.3278923},{"street":"Kamerlingh Onnesstraat","housenumber":"13","lat":51.4253277,"lon":4.3339405},{"street":"Keesomstraat","housenumber":"13","lat":51.4241867,"lon":4.3321275},{"street":"Laan Olieslagers","housenumber":"13","lat":51.4272763,"lon":4.3318259},{"street":"Lammertiende","housenumber":"13","lat":51.4298984,"lon":4.3257006},{"street":"Lindberghlaan","housenumber":"13","lat":51.4259286,"lon":4.3313504},{"street":"Maststraat","housenumber":"13","lat":51.4204869,"lon":4.3305597},{"street":"Meulenblock","housenumber":"13","lat":51.4227226,"lon":4.3264963},{"street":"Mgr Ariensstraat","housenumber":"13","lat":51.4219871,"lon":4.3264847},{"street":"Mgr Frenckenstraat","housenumber":"13","lat":51.4215523,"lon":4.3271131},{"street":"Mgr Nolensstraat","housenumber":"13","lat":51.4194561,"lon":4.3249477},{"street":"Mgr Poelsstraat","housenumber":"13","lat":51.4203166,"lon":4.3246832},{"street":"Molenstraat","housenumber":"13","lat":51.4219544,"lon":4.3284658},{"street":"Nieuweweg","housenumber":"13","lat":51.4283631,"lon":4.3179096},{"street":"Norbartstraat","housenumber":"13","lat":51.4176234,"lon":4.3231071},{"street":"Oostlaan","housenumber":"13","lat":51.4271335,"lon":4.3358048},{"street":"Parmentierlaan","housenumber":"13","lat":51.4279544,"lon":4.3292793},{"street":"Past van Roesselstraat","housenumber":"13","lat":51.4222586,"lon":4.3314865},{"street":"Pasteurstraat","housenumber":"13","lat":51.4274784,"lon":4.3215491},{"street":"Paus Leo XIIIestraat","housenumber":"13","lat":51.4216603,"lon":4.328117},{"street":"Philomenahof","housenumber":"13","lat":51.4231743,"lon":4.3245287},{"street":"Plantagelaan","housenumber":"13","lat":51.4184891,"lon":4.3343009},{"street":"Plesmanlaan","housenumber":"13","lat":51.4269718,"lon":4.3289714},{"street":"Pr Bernhardstraat","housenumber":"13","lat":51.4266467,"lon":4.3238742},{"street":"Pr Hendrikstraat","housenumber":"13","lat":51.424568,"lon":4.3295592},{"street":"Putseweg","housenumber":"13","lat":51.4217188,"lon":4.325657},{"street":"Robert Kochstraat","housenumber":"13","lat":51.4270653,"lon":4.3234475},{"street":"Rubertstraat","housenumber":"13","lat":51.4201426,"lon":4.3302657},{"street":"Schapendreef","housenumber":"13","lat":51.4192247,"lon":4.3269244},{"street":"Smirnofflaan","housenumber":"13","lat":51.4274736,"lon":4.3288016},{"street":"Sondermanlaan","housenumber":"13","lat":51.4267495,"lon":4.3322506},{"street":"St Lucasplein","housenumber":"13","lat":51.4278387,"lon":4.3224947},{"street":"Suijkerbuijkstraat","housenumber":"13","lat":51.4222618,"lon":4.3310074},{"street":"Wipstraat","housenumber":"13","lat":51.4344528,"lon":4.326209},{"street":"Wouwbaan","housenumber":"13","lat":51.424845,"lon":4.3244339},{"street":"De Acacia","housenumber":"13","lat":51.4312099,"lon":4.3125804},{"street":"De Anjer","housenumber":"13","lat":51.432675,"lon":4.3173613},{"street":"De Berk","housenumber":"13","lat":51.4311675,"lon":4.3149389},{"street":"De Eik","housenumber":"13","lat":51.4305253,"lon":4.3125524},{"street":"Heistraat","housenumber":"12k-24","lat":51.4283924,"lon":4.3270441},{"street":"Heistraat","housenumber":"12k-25","lat":51.4284059,"lon":4.3269695},{"street":"Heistraat","housenumber":"12k-26","lat":51.4284194,"lon":4.3268949},{"street":"Heistraat","housenumber":"12k-27","lat":51.4284351,"lon":4.3268081},{"street":"Heistraat","housenumber":"12k-28","lat":51.4283264,"lon":4.3265423},{"street":"Heistraat","housenumber":"12k-3","lat":51.4283129,"lon":4.3264175},{"street":"Heistraat","housenumber":"12k-30","lat":51.4283888,"lon":4.3265656},{"street":"Heistraat","housenumber":"12k-31","lat":51.4283421,"lon":4.326544},{"street":"Heistraat","housenumber":"12k-32","lat":51.4282955,"lon":4.3265225},{"street":"Heistraat","housenumber":"12k-33","lat":51.4282489,"lon":4.3265009},{"street":"Heistraat","housenumber":"12k-34","lat":51.4282023,"lon":4.3264794},{"street":"Heistraat","housenumber":"12k-35","lat":51.4281182,"lon":4.3264695},{"street":"Heistraat","housenumber":"12k-36","lat":51.4281331,"lon":4.3263892},{"street":"Heistraat","housenumber":"12k-37","lat":51.4281707,"lon":4.32635},{"street":"Heistraat","housenumber":"12k-38","lat":51.4282173,"lon":4.3263721},{"street":"Heistraat","housenumber":"12k-39","lat":51.4282638,"lon":4.3263942},{"street":"Heistraat","housenumber":"12k-4","lat":51.4282655,"lon":4.3263844},{"street":"Heistraat","housenumber":"12k-40","lat":51.4283103,"lon":4.3264163},{"street":"Heistraat","housenumber":"12k-41","lat":51.4283569,"lon":4.3264384},{"street":"Heistraat","housenumber":"12k-42","lat":51.4284084,"lon":4.3264414},{"street":"Heistraat","housenumber":"12k-43","lat":51.4284566,"lon":4.3264323},{"street":"Heistraat","housenumber":"12k-44","lat":51.4285048,"lon":4.3264233},{"street":"Heistraat","housenumber":"12k-45","lat":51.428553,"lon":4.3264142},{"street":"Heistraat","housenumber":"12k-46","lat":51.4286154,"lon":4.3264008},{"street":"Heistraat","housenumber":"12k-47","lat":51.4286213,"lon":4.3264811},{"street":"Heistraat","housenumber":"12k-48","lat":51.4286324,"lon":4.3266461},{"street":"Heistraat","housenumber":"12k-49","lat":51.4286639,"lon":4.3267692},{"street":"Heistraat","housenumber":"12k-5","lat":51.4282198,"lon":4.3263663},{"street":"Heistraat","housenumber":"12k-50","lat":51.4286152,"lon":4.3267786},{"street":"Heistraat","housenumber":"12k-51","lat":51.4285675,"lon":4.3267878},{"street":"Heistraat","housenumber":"12k-52","lat":51.4285193,"lon":4.3267971},{"street":"Heistraat","housenumber":"12k-53","lat":51.4284351,"lon":4.3268079},{"street":"Heistraat","housenumber":"12k-54","lat":51.4284194,"lon":4.3268947},{"street":"Heistraat","housenumber":"12k-55","lat":51.4284059,"lon":4.3269693},{"street":"Heistraat","housenumber":"12k-56","lat":51.4283924,"lon":4.3270439},{"street":"Heistraat","housenumber":"12k-57","lat":51.428379,"lon":4.3271185},{"street":"Heistraat","housenumber":"12k-58","lat":51.4283594,"lon":4.3272126},{"street":"Heistraat","housenumber":"12k-59","lat":51.4283109,"lon":4.3271902},{"street":"Heistraat","housenumber":"12k-6","lat":51.4281745,"lon":4.326345},{"street":"Heistraat","housenumber":"12k-60","lat":51.4283113,"lon":4.3271078},{"street":"Heistraat","housenumber":"12k-61","lat":51.4283252,"lon":4.3270334},{"street":"Heistraat","housenumber":"12k-62","lat":51.428339,"lon":4.326959},{"street":"Heistraat","housenumber":"12k-63","lat":51.4283529,"lon":4.3268846},{"street":"Heistraat","housenumber":"12k-64","lat":51.4283666,"lon":4.3268103},{"street":"Heistraat","housenumber":"12k-65","lat":51.4283671,"lon":4.3267172},{"street":"Heistraat","housenumber":"12k-9","lat":51.4282008,"lon":4.3264857},{"street":"Aalbersestraat","housenumber":"13","lat":51.4216245,"lon":4.3241473},{"street":"Bijentiende","housenumber":"13","lat":51.4304892,"lon":4.325896},{"street":"Binnenweg","housenumber":"13","lat":51.4264468,"lon":4.3236345},{"street":"Blériotlaan","housenumber":"13","lat":51.4273375,"lon":4.333622},{"street":"Burg Moorsstraat","housenumber":"13","lat":51.4219833,"lon":4.3298458},{"street":"Buys Ballotstraat","housenumber":"13","lat":51.4241842,"lon":4.3328465},{"street":"Canadalaan","housenumber":"13","lat":51.4259208,"lon":4.3162558},{"street":"Couwenberghstraat","housenumber":"13","lat":51.4189045,"lon":4.3325229},{"street":"Doelstraat","housenumber":"13","lat":51.4336192,"lon":4.3137019},{"street":"Doctor de Bruijnlaan","housenumber":"13","lat":51.4196066,"lon":4.3316296},{"street":"Edward Jennerstraat","housenumber":"13","lat":51.4282129,"lon":4.3240966},{"street":"Fokkerlaan","housenumber":"13","lat":51.4284004,"lon":4.3298873},{"street":"Geyssendorfferlaan","housenumber":"13","lat":51.4268643,"lon":4.3328208},{"street":"Gravesandestraat","housenumber":"13","lat":51.4252828,"lon":4.3330511},{"street":"Wouwbaan","housenumber":"135","lat":51.4308441,"lon":4.3307223},{"street":"KLM laan","housenumber":"136","lat":51.4252166,"lon":4.3298566},{"street":"Raadhuisstraat","housenumber":"136","lat":51.4227205,"lon":4.3231175},{"street":"Wouwbaan","housenumber":"136","lat":51.4309851,"lon":4.3314093},{"street":"Huijgensstraat","housenumber":"137","lat":51.4239546,"lon":4.3352962},{"street":"Wouwbaan","housenumber":"137","lat":51.4310588,"lon":4.3306166},{"street":"KLM laan","housenumber":"138","lat":51.4252373,"lon":4.3298258},{"street":"Huijgensstraat","housenumber":"139","lat":51.423956,"lon":4.3354543},{"street":"Raadhuisstraat","housenumber":"139","lat":51.4227321,"lon":4.3234048},{"street":"Wouwbaan","housenumber":"139","lat":51.4310892,"lon":4.3309898},{"street":"Huijbergseweg","housenumber":"13a","lat":51.4232338,"lon":4.3281523},{"street":"Aalbersestraat","housenumber":"14","lat":51.4212512,"lon":4.324104},{"street":"Antwerpsestraatweg","housenumber":"14","lat":51.4292279,"lon":4.3190829},{"street":"KLM laan","housenumber":"212","lat":51.4252149,"lon":4.3295536},{"street":"KLM laan","housenumber":"214","lat":51.4251939,"lon":4.3295845},{"street":"Wouwbaan","housenumber":"215","lat":51.4341931,"lon":4.3342545},{"street":"KLM laan","housenumber":"216","lat":51.4251733,"lon":4.3296147},{"street":"KLM laan","housenumber":"218","lat":51.4251527,"lon":4.329645},{"street":"Huijgensstraat","housenumber":"21a","lat":51.426735,"lon":4.3355915},{"street":"Mgr Nolensstraat","housenumber":"21a","lat":51.4191619,"lon":4.3255103},{"street":"Minckelersweg","housenumber":"21a","lat":51.4253586,"lon":4.3314964},{"street":"Pasteurstraat","housenumber":"21a","lat":51.4277221,"lon":4.32145},{"street":"Schapendreef","housenumber":"21a","lat":51.4184055,"lon":4.3266004},{"street":"De Jasmijn","housenumber":"21a","lat":51.4316115,"lon":4.314197},{"street":"De Jasmijn","housenumber":"21b","lat":51.4316112,"lon":4.3141568},{"street":"De Jasmijn","housenumber":"21c","lat":51.4316109,"lon":4.3141165},{"street":"Aalbersestraat","housenumber":"22","lat":51.42101,"lon":4.324086},{"street":"Bijentiende","housenumber":"22","lat":51.4302799,"lon":4.3260124},{"street":"Bloemenlaan","housenumber":"22","lat":51.4329675,"lon":4.3161477},{"street":"Blériotlaan","housenumber":"22","lat":51.4269838,"lon":4.3335918},{"street":"Burg Moorsstraat","housenumber":"22","lat":51.421802,"lon":4.3301166},{"street":"Buys Ballotstraat","housenumber":"22","lat":51.4238413,"lon":4.3335101},{"street":"Canadalaan","housenumber":"22","lat":51.4274138,"lon":4.3143058},{"street":"Couwenberghstraat","housenumber":"22","lat":51.4189663,"lon":4.3329545},{"street":"Dennenlaan","housenumber":"22","lat":51.418072,"lon":4.3289336},{"street":"Doelstraat","housenumber":"22","lat":51.4338468,"lon":4.313035},{"street":"Duinhoefplein","housenumber":"22","lat":51.4294117,"lon":4.3242589},{"street":"Duinstraat","housenumber":"22","lat":51.4286021,"lon":4.3224194},{"street":"Fokkerlaan","housenumber":"22","lat":51.4280711,"lon":4.3300604},{"street":"De Hazelaar","housenumber":"13","lat":51.4320613,"lon":4.3162036},{"street":"De Hortensia","housenumber":"13","lat":51.4333294,"lon":4.3152909},{"street":"De Jasmijn","housenumber":"13","lat":51.4317166,"lon":4.3146432},{"street":"De Narcis","housenumber":"13","lat":51.4321685,"lon":4.3178115},{"street":"De Papaver","housenumber":"13","lat":51.4308285,"lon":4.3162668},{"street":"De Roos","housenumber":"13","lat":51.4314679,"lon":4.3173047},{"street":"De Sering","housenumber":"13","lat":51.4301318,"lon":4.3172506},{"street":"De Tulp","housenumber":"13","lat":51.4298292,"lon":4.317226},{"street":"De Vuurdoorn","housenumber":"13","lat":51.4329486,"lon":4.3123983},{"street":"De Wilg","housenumber":"13","lat":51.4292712,"lon":4.3127769},{"street":"De Zonnebloem","housenumber":"13","lat":51.4298463,"lon":4.3147442},{"street":"dokter van de Karplein","housenumber":"13","lat":51.430267,"lon":4.3221889},{"street":"in d' Hoef","housenumber":"13","lat":51.4292546,"lon":4.3222756},{"street":"op den Duyn","housenumber":"13","lat":51.4291114,"lon":4.3206747},{"street":"van Houtenstraat","housenumber":"13","lat":51.4201568,"lon":4.3260556},{"street":"KLM laan","housenumber":"130","lat":51.4251539,"lon":4.3299499},{"street":"Raadhuisstraat","housenumber":"130","lat":51.4233614,"lon":4.3232568},{"street":"St Lucasplein","housenumber":"130","lat":51.4276388,"lon":4.3237907},{"street":"Raadhuisstraat","housenumber":"130c","lat":51.4233769,"lon":4.3222487},{"street":"Huijgensstraat","housenumber":"131","lat":51.424172,"lon":4.3354781},{"street":"Wouwbaan","housenumber":"131","lat":51.4306445,"lon":4.3305256},{"street":"KLM laan","housenumber":"132","lat":51.4251751,"lon":4.3299182},{"street":"Raadhuisstraat","housenumber":"132","lat":51.4230978,"lon":4.3230943},{"street":"St Lucasplein","housenumber":"132","lat":51.4277419,"lon":4.3237751},{"street":"Wouwbaan","housenumber":"132","lat":51.4307039,"lon":4.3311282},{"street":"Huijgensstraat","housenumber":"133","lat":51.4241727,"lon":4.3355499},{"street":"Putseweg","housenumber":"133","lat":51.4180361,"lon":4.3329168},{"street":"Wouwbaan","housenumber":"133","lat":51.4307897,"lon":4.3306804},{"street":"Huijgensstraat","housenumber":"133a","lat":51.4241733,"lon":4.3356218},{"street":"Raadhuisstraat","housenumber":"133a","lat":51.4230276,"lon":4.3235273},{"street":"Putseweg","housenumber":"133b","lat":51.4183612,"lon":4.3328593},{"street":"Putseweg","housenumber":"133c","lat":51.418388,"lon":4.3328649},{"street":"Putseweg","housenumber":"133d","lat":51.4184147,"lon":4.3328706},{"street":"Putseweg","housenumber":"133e","lat":51.4184414,"lon":4.3328761},{"street":"Putseweg","housenumber":"133f","lat":51.4184683,"lon":4.3328818},{"street":"Putseweg","housenumber":"133h","lat":51.4184948,"lon":4.3328873},{"street":"Putseweg","housenumber":"133j","lat":51.4185217,"lon":4.3328928},{"street":"Putseweg","housenumber":"133k","lat":51.4185484,"lon":4.3328983},{"street":"Putseweg","housenumber":"133m","lat":51.4185752,"lon":4.3329039},{"street":"KLM laan","housenumber":"134","lat":51.4251958,"lon":4.3298874},{"street":"Wouwbaan","housenumber":"134","lat":51.4308812,"lon":4.3313074},{"street":"Huijgensstraat","housenumber":"135","lat":51.4239537,"lon":4.3351955},{"street":"Putseweg","housenumber":"135","lat":51.418011,"lon":4.3331186},{"street":"Bijentiende","housenumber":"14","lat":51.4302286,"lon":4.3255779},{"street":"Binnenweg","housenumber":"14","lat":51.4252938,"lon":4.3243659},{"street":"Bloemenlaan","housenumber":"14","lat":51.4333,"lon":4.3161399},{"street":"Blériotlaan","housenumber":"14","lat":51.4271486,"lon":4.333376},{"street":"Buys Ballotstraat","housenumber":"14","lat":51.4238532,"lon":4.3338566},{"street":"Canadalaan","housenumber":"14","lat":51.4266088,"lon":4.314816},{"street":"Couwenberghstraat","housenumber":"14","lat":51.4188026,"lon":4.3327455},{"street":"Duinhoefplein","housenumber":"14","lat":51.4291115,"lon":4.3241996},{"street":"Duinstraat","housenumber":"14","lat":51.4285409,"lon":4.3216155},{"street":"Flemingstraat","housenumber":"14","lat":51.4272831,"lon":4.3226803},{"street":"Fokkerlaan","housenumber":"14","lat":51.4282279,"lon":4.3296825},{"street":"Gemeynte","housenumber":"14","lat":51.4304964,"lon":4.3279435},{"street":"Gravesandestraat","housenumber":"14","lat":51.4247821,"lon":4.3325684},{"street":"Griblingstraat","housenumber":"14","lat":51.4284049,"lon":4.3229147},{"street":"Hamiltonlaan","housenumber":"14","lat":51.4271116,"lon":4.3167167},{"street":"Heideduinstede","housenumber":"14","lat":51.4289356,"lon":4.3267998},{"street":"Hugo de Grootstraat","housenumber":"14","lat":51.4263906,"lon":4.3372818},{"street":"Huijgensstraat","housenumber":"14","lat":51.425423,"lon":4.334644},{"street":"Jan van der Heijdenstraat","housenumber":"14","lat":51.4253335,"lon":4.3206067},{"street":"Jef Adriaansenstraat","housenumber":"14","lat":51.4208563,"lon":4.3286677},{"street":"KLM laan","housenumber":"14","lat":51.426665,"lon":4.3278569},{"street":"Kamerlingh Onnesstraat","housenumber":"14","lat":51.4258899,"lon":4.3341019},{"street":"Keesomstraat","housenumber":"14","lat":51.4248881,"lon":4.3341387},{"street":"Kloosterstraat","housenumber":"14","lat":51.4241519,"lon":4.3272971},{"street":"Laan Olieslagers","housenumber":"14","lat":51.4261415,"lon":4.3304891},{"street":"Lammertiende","housenumber":"14","lat":51.4296601,"lon":4.3260978},{"street":"Lindberghlaan","housenumber":"14","lat":51.4257515,"lon":4.331121},{"street":"Maststraat","housenumber":"14","lat":51.4208505,"lon":4.3304824},{"street":"Matthias Wolffstraat","housenumber":"14","lat":51.4243031,"lon":4.3291053},{"street":"Meulenblock","housenumber":"14","lat":51.4226619,"lon":4.3262204},{"street":"Mgr Ariensstraat","housenumber":"14","lat":51.4216202,"lon":4.3275752},{"street":"Mgr Frenckenstraat","housenumber":"14","lat":51.4214865,"lon":4.3267983},{"street":"Mgr Nolensstraat","housenumber":"14","lat":51.4190282,"lon":4.3252088},{"street":"Minckelersweg","housenumber":"14","lat":51.4247965,"lon":4.3309774},{"street":"Molenstraat","housenumber":"14","lat":51.4222128,"lon":4.3280078},{"street":"Nieuweweg","housenumber":"14","lat":51.4287333,"lon":4.31711},{"street":"Norbartstraat","housenumber":"14","lat":51.4180722,"lon":4.3226353},{"street":"Oostlaan","housenumber":"14","lat":51.4261224,"lon":4.3364396},{"street":"Ossendrechtseweg","housenumber":"14","lat":51.4217918,"lon":4.3228085},{"street":"Parmentierlaan","housenumber":"14","lat":51.4277342,"lon":4.3291073},{"street":"Past van Roesselstraat","housenumber":"14","lat":51.4212045,"lon":4.3317941},{"street":"Pasteurstraat","housenumber":"14","lat":51.4278796,"lon":4.322048},{"street":"Paus Leo XIIIestraat","housenumber":"14","lat":51.4212645,"lon":4.3280831},{"street":"Pr Bernhardstraat","housenumber":"14","lat":51.4263124,"lon":4.3223853},{"street":"Pr Hendrikstraat","housenumber":"14","lat":51.4248468,"lon":4.3295815},{"street":"Putseweg","housenumber":"14","lat":51.4206306,"lon":4.3265881},{"street":"Raadhuisstraat","housenumber":"14","lat":51.4278073,"lon":4.3200365},{"street":"Robert Kochstraat","housenumber":"14","lat":51.4270479,"lon":4.3244265},{"street":"Rubertstraat","housenumber":"14","lat":51.4199429,"lon":4.3300547},{"street":"Schapendreef","housenumber":"14","lat":51.4191703,"lon":4.3263864},{"street":"Semmelweissstraat","housenumber":"14","lat":51.4272167,"lon":4.324278},{"street":"Smirnofflaan","housenumber":"14","lat":51.4272125,"lon":4.3287501},{"street":"Sondermanlaan","housenumber":"14","lat":51.4261685,"lon":4.3318201},{"street":"Steenstraat","housenumber":"14","lat":51.4383947,"lon":4.3129566},{"street":"Struikenlaan","housenumber":"14","lat":51.4324356,"lon":4.3136303},{"street":"Suijkerbuijkstraat","housenumber":"14","lat":51.4222498,"lon":4.330677},{"street":"Torontolaan","housenumber":"14","lat":51.4279791,"lon":4.3162218},{"street":"Trefpunt","housenumber":"14","lat":51.4221561,"lon":4.3275737},{"street":"Verlengde Duinstraat","housenumber":"14","lat":51.4286952,"lon":4.3305879},{"street":"Vogelven","housenumber":"14","lat":51.4310508,"lon":4.325175},{"street":"Zandfort","housenumber":"14","lat":51.4345134,"lon":4.32103},{"street":"De Acacia","housenumber":"14","lat":51.4312394,"lon":4.3125305},{"street":"De Anjer","housenumber":"14","lat":51.4326255,"lon":4.3173626},{"street":"De Berk","housenumber":"14","lat":51.4311136,"lon":4.3149402},{"street":"De Eik","housenumber":"14","lat":51.4305792,"lon":4.3125511},{"street":"De Hazelaar","housenumber":"14","lat":51.4320075,"lon":4.3162045},{"street":"De Hortensia","housenumber":"14","lat":51.4332799,"lon":4.3155879},{"street":"De Jasmijn","housenumber":"14","lat":51.4315537,"lon":4.314901},{"street":"Suijkerbuijkstraat","housenumber":"15","lat":51.4221989,"lon":4.3310089},{"street":"Trefpunt","housenumber":"15","lat":51.4224333,"lon":4.327662},{"street":"Valkestraat","housenumber":"15","lat":51.43564,"lon":4.313765},{"street":"Wouwbaan","housenumber":"15","lat":51.4249079,"lon":4.3244324},{"street":"Zandfort","housenumber":"15","lat":51.4348891,"lon":4.3208199},{"street":"De Acacia","housenumber":"15","lat":51.4312984,"lon":4.3124199},{"street":"De Anjer","housenumber":"15","lat":51.4327409,"lon":4.3176297},{"street":"De Berk","housenumber":"15","lat":51.4310419,"lon":4.3149706},{"street":"De Eik","housenumber":"15","lat":51.4306241,"lon":4.3125501},{"street":"De Hazelaar","housenumber":"15","lat":51.4319548,"lon":4.3162054},{"street":"De Hortensia","housenumber":"15","lat":51.433338,"lon":4.3152091},{"street":"De Jasmijn","housenumber":"15","lat":51.4315617,"lon":4.3148002},{"street":"De Narcis","housenumber":"15","lat":51.4322945,"lon":4.3177582},{"street":"De Papaver","housenumber":"15","lat":51.4308047,"lon":4.3160305},{"street":"De Roos","housenumber":"15","lat":51.4316945,"lon":4.3175151},{"street":"De Sering","housenumber":"15","lat":51.4300278,"lon":4.3172084},{"street":"De Tulp","housenumber":"15","lat":51.429724,"lon":4.3171834},{"street":"De Vuurdoorn","housenumber":"15","lat":51.4330265,"lon":4.3125012},{"street":"De Wilg","housenumber":"15","lat":51.4293628,"lon":4.3127729},{"street":"De Zonnebloem","housenumber":"15","lat":51.4298448,"lon":4.3145782},{"street":"dokter van de Karplein","housenumber":"15","lat":51.4303568,"lon":4.3222435},{"street":"in d' Hoef","housenumber":"15","lat":51.4292472,"lon":4.3221872},{"street":"op den Duyn","housenumber":"15","lat":51.4291715,"lon":4.3204874},{"street":"van Houtenstraat","housenumber":"15","lat":51.420006,"lon":4.3261138},{"street":"KLM laan","housenumber":"150","lat":51.4253615,"lon":4.3296409},{"street":"Wouwbaan","housenumber":"150","lat":51.4316026,"lon":4.3320996},{"street":"Wouwbaan","housenumber":"151","lat":51.4314613,"lon":4.3313839},{"street":"KLM laan","housenumber":"152","lat":51.425383,"lon":4.3296093},{"street":"Wouwbaan","housenumber":"152","lat":51.431811,"lon":4.3322818},{"street":"Wouwbaan","housenumber":"153","lat":51.4315158,"lon":4.3314401},{"street":"KLM laan","housenumber":"154","lat":51.4254063,"lon":4.3295752},{"street":"Wouwbaan","housenumber":"154","lat":51.4319135,"lon":4.3323851},{"street":"Wouwbaan","housenumber":"155","lat":51.4316155,"lon":4.3315385},{"street":"KLM laan","housenumber":"156","lat":51.4254313,"lon":4.3295386},{"street":"Wouwbaan","housenumber":"157","lat":51.43167,"lon":4.3315947},{"street":"KLM laan","housenumber":"158","lat":51.4254551,"lon":4.3295038},{"street":"Wouwbaan","housenumber":"158","lat":51.4320304,"lon":4.3326794},{"street":"Wouwbaan","housenumber":"159","lat":51.4317154,"lon":4.3316512},{"street":"Pasteurstraat","housenumber":"15a","lat":51.4275394,"lon":4.3215242},{"street":"Aalbersestraat","housenumber":"16","lat":51.4211909,"lon":4.3240995},{"street":"Bijentiende","housenumber":"16","lat":51.4302356,"lon":4.3256603},{"street":"Bloemenlaan","housenumber":"16","lat":51.4332371,"lon":4.3161414},{"street":"Blériotlaan","housenumber":"16","lat":51.4271074,"lon":4.33343},{"street":"Buys Ballotstraat","housenumber":"16","lat":51.4238502,"lon":4.3337693},{"street":"Canadalaan","housenumber":"16","lat":51.4267597,"lon":4.3146112},{"street":"Couwenberghstraat","housenumber":"16","lat":51.4188426,"lon":4.3327965},{"street":"Dennenlaan","housenumber":"16","lat":51.4181081,"lon":4.3296217},{"street":"Doelstraat","housenumber":"16","lat":51.434126,"lon":4.3148634},{"street":"Duinhoefplein","housenumber":"16","lat":51.4293721,"lon":4.323955},{"street":"Duinstraat","housenumber":"16","lat":51.4286051,"lon":4.3217578},{"street":"Flemingstraat","housenumber":"16","lat":51.4272929,"lon":4.3227663},{"street":"Fokkerlaan","housenumber":"16","lat":51.4281972,"lon":4.3297564},{"street":"Gemeynte","housenumber":"16","lat":51.4305717,"lon":4.3277114},{"street":"Gravesandestraat","housenumber":"16","lat":51.4247848,"lon":4.3326544},{"street":"Griblingstraat","housenumber":"16","lat":51.4284086,"lon":4.3229573},{"street":"Hamiltonlaan","housenumber":"16","lat":51.4271287,"lon":4.3166157},{"street":"Heideduinstede","housenumber":"16","lat":51.4289593,"lon":4.3271166},{"street":"Hugo de Grootstraat","housenumber":"16","lat":51.4262287,"lon":4.3372712},{"street":"Jan van der Heijdenstraat","housenumber":"16","lat":51.4250805,"lon":4.3206899},{"street":"Jef Adriaansenstraat","housenumber":"16","lat":51.4209018,"lon":4.3287385},{"street":"KLM laan","housenumber":"16","lat":51.4266478,"lon":4.3279436},{"street":"Kamerlingh Onnesstraat","housenumber":"16","lat":51.4258542,"lon":4.3340316},{"street":"Keesomstraat","housenumber":"16","lat":51.4249419,"lon":4.3341231},{"street":"Kloosterstraat","housenumber":"16","lat":51.424287,"lon":4.3273227},{"street":"Laan Olieslagers","housenumber":"16","lat":51.4261755,"lon":4.3305552},{"street":"Lammertiende","housenumber":"16","lat":51.4296667,"lon":4.3261775},{"street":"Lindberghlaan","housenumber":"16","lat":51.4257061,"lon":4.3311577},{"street":"Meulenblock","housenumber":"16","lat":51.4226916,"lon":4.3265046},{"street":"Mgr Ariensstraat","housenumber":"16","lat":51.4215844,"lon":4.3276451},{"street":"Mgr Frenckenstraat","housenumber":"16","lat":51.4214422,"lon":4.3268712},{"street":"Mgr Nolensstraat","housenumber":"16","lat":51.4189956,"lon":4.325276},{"street":"Minckelersweg","housenumber":"16","lat":51.4248331,"lon":4.3310485},{"street":"Jef Adriaansenstraat","housenumber":"15","lat":51.4210561,"lon":4.3285289},{"street":"KLM laan","housenumber":"15","lat":51.4269626,"lon":4.3279651},{"street":"Kamerlingh Onnesstraat","housenumber":"15","lat":51.4252712,"lon":4.3339452},{"street":"Keesomstraat","housenumber":"15","lat":51.4241847,"lon":4.3319119},{"street":"Laan Olieslagers","housenumber":"15","lat":51.4274493,"lon":4.3320664},{"street":"Lammertiende","housenumber":"15","lat":51.4299053,"lon":4.3257835},{"street":"Lindberghlaan","housenumber":"15","lat":51.425887,"lon":4.3314052},{"street":"Maststraat","housenumber":"15","lat":51.4204514,"lon":4.330618},{"street":"Meulenblock","housenumber":"15","lat":51.4226767,"lon":4.3263627},{"street":"Mgr Ariensstraat","housenumber":"15","lat":51.4220058,"lon":4.3265705},{"street":"Mgr Frenckenstraat","housenumber":"15","lat":51.4214727,"lon":4.3272587},{"street":"Mgr Nolensstraat","housenumber":"15","lat":51.4193853,"lon":4.3250787},{"street":"Mgr Poelsstraat","housenumber":"15","lat":51.4201076,"lon":4.3244293},{"street":"Molenstraat","housenumber":"15","lat":51.4219036,"lon":4.3285202},{"street":"Nieuweweg","housenumber":"15","lat":51.4283712,"lon":4.3178088},{"street":"Norbartstraat","housenumber":"15","lat":51.4176228,"lon":4.3230352},{"street":"Oostlaan","housenumber":"15","lat":51.4270683,"lon":4.3359925},{"street":"Ouwe Raedthuysplein","housenumber":"15","lat":51.4257266,"lon":4.3221315},{"street":"Parmentierlaan","housenumber":"15","lat":51.4279191,"lon":4.3293521},{"street":"Past van Roesselstraat","housenumber":"15","lat":51.4222086,"lon":4.3314817},{"street":"Pasteurstraat","housenumber":"15","lat":51.4275089,"lon":4.3215366},{"street":"Philomenahof","housenumber":"15","lat":51.4232325,"lon":4.3245327},{"street":"Plesmanlaan","housenumber":"15","lat":51.4270172,"lon":4.3290279},{"street":"Pr Bernhardstraat","housenumber":"15","lat":51.4266566,"lon":4.3239747},{"street":"Pr Hendrikstraat","housenumber":"15","lat":51.4246655,"lon":4.3294132},{"street":"Putseweg","housenumber":"15","lat":51.4216395,"lon":4.3258314},{"street":"Raadhuisstraat","housenumber":"15","lat":51.4279616,"lon":4.3202055},{"street":"Robert Kochstraat","housenumber":"15","lat":51.4271191,"lon":4.3234318},{"street":"Rubertstraat","housenumber":"15","lat":51.4200983,"lon":4.3303387},{"street":"Schapendreef","housenumber":"15","lat":51.4190581,"lon":4.3268255},{"street":"Smirnofflaan","housenumber":"15","lat":51.4274299,"lon":4.328932},{"street":"Sondermanlaan","housenumber":"15","lat":51.4267838,"lon":4.332317},{"street":"St Lucasplein","housenumber":"15","lat":51.4279015,"lon":4.3224789},{"street":"Molenstraat","housenumber":"17","lat":51.4218115,"lon":4.3286599},{"street":"Nieuweweg","housenumber":"17","lat":51.4283782,"lon":4.3175929},{"street":"Norbartstraat","housenumber":"17","lat":51.417612,"lon":4.3228342},{"street":"Oostlaan","housenumber":"17","lat":51.4269795,"lon":4.3359931},{"street":"Ossendrechtseweg","housenumber":"17","lat":51.4214432,"lon":4.3230323},{"street":"Ouwe Raedthuysplein","housenumber":"17","lat":51.4256358,"lon":4.3220815},{"street":"Parmentierlaan","housenumber":"17","lat":51.4278927,"lon":4.3294102},{"street":"Past van Roesselstraat","housenumber":"17","lat":51.422162,"lon":4.3314897},{"street":"Pasteurstraat","housenumber":"17","lat":51.4275698,"lon":4.3215119},{"street":"Plesmanlaan","housenumber":"17","lat":51.4270626,"lon":4.32907},{"street":"Pr Bernhardstraat","housenumber":"17","lat":51.4266664,"lon":4.3240607},{"street":"Pr Hendrikstraat","housenumber":"17","lat":51.4248163,"lon":4.329194},{"street":"Raadhuisstraat","housenumber":"17","lat":51.4278905,"lon":4.3202934},{"street":"Robert Kochstraat","housenumber":"17","lat":51.4271729,"lon":4.3234162},{"street":"Rubertstraat","housenumber":"17","lat":51.4200365,"lon":4.3304551},{"street":"Schapendreef","housenumber":"17","lat":51.4188886,"lon":4.3268012},{"street":"Smirnofflaan","housenumber":"17","lat":51.4273946,"lon":4.3290047},{"street":"Sondermanlaan","housenumber":"17","lat":51.4268186,"lon":4.3323845},{"street":"St Lucasplein","housenumber":"17","lat":51.4281454,"lon":4.3226026},{"street":"Suijkerbuijkstraat","housenumber":"17","lat":51.4221404,"lon":4.3310142},{"street":"Trefpunt","housenumber":"17","lat":51.4224061,"lon":4.3276725},{"street":"Verlengde Duinstraat","housenumber":"17","lat":51.4290467,"lon":4.3306254},{"street":"Wipstraat","housenumber":"17","lat":51.4348003,"lon":4.3268625},{"street":"Wouwbaan","housenumber":"17","lat":51.4249708,"lon":4.324431},{"street":"Zandfort","housenumber":"17","lat":51.4348647,"lon":4.3211081},{"street":"De Acacia","housenumber":"17","lat":51.4313524,"lon":4.3124681},{"street":"De Anjer","housenumber":"17","lat":51.4327425,"lon":4.3177862},{"street":"De Berk","housenumber":"17","lat":51.4309341,"lon":4.3149731},{"street":"De Eik","housenumber":"17","lat":51.4307322,"lon":4.3125763},{"street":"De Hazelaar","housenumber":"17","lat":51.4318491,"lon":4.3162073},{"street":"De Hortensia","housenumber":"17","lat":51.4333376,"lon":4.3151312},{"street":"De Jasmijn","housenumber":"17","lat":51.4315513,"lon":4.3146422},{"street":"De Narcis","housenumber":"17","lat":51.4323921,"lon":4.3177563},{"street":"De Papaver","housenumber":"17","lat":51.4308035,"lon":4.315865},{"street":"De Roos","housenumber":"17","lat":51.431723,"lon":4.3176726},{"street":"De Sering","housenumber":"17","lat":51.4297912,"lon":4.3167976},{"street":"De Tulp","housenumber":"17","lat":51.4295924,"lon":4.3172526},{"street":"De Vuurdoorn","housenumber":"17","lat":51.4330599,"lon":4.3125584},{"street":"De Wilg","housenumber":"17","lat":51.4294544,"lon":4.3127688},{"street":"De Zonnebloem","housenumber":"17","lat":51.4298434,"lon":4.3144136},{"street":"dokter van de Karplein","housenumber":"17","lat":51.430464,"lon":4.3223648},{"street":"in d' Hoef","housenumber":"17","lat":51.4292326,"lon":4.3220118},{"street":"op den Duyn","housenumber":"17","lat":51.4292733,"lon":4.3203771},{"street":"van Houtenstraat","housenumber":"17","lat":51.4199235,"lon":4.3259554},{"street":"KLM laan","housenumber":"170","lat":51.4255942,"lon":4.3293003},{"street":"KLM laan","housenumber":"172","lat":51.4256178,"lon":4.3292658},{"street":"Wouwbaan","housenumber":"172","lat":51.4318011,"lon":4.3386545},{"street":"Wouwbaan","housenumber":"173","lat":51.4322781,"lon":4.3322422},{"street":"KLM laan","housenumber":"174","lat":51.4256405,"lon":4.3292327},{"street":"Wouwbaan","housenumber":"176","lat":51.4329456,"lon":4.3334923},{"street":"Wouwbaan","housenumber":"177","lat":51.4324234,"lon":4.332397},{"street":"Pasteurstraat","housenumber":"17a","lat":51.4276003,"lon":4.3214995},{"street":"Raadhuisstraat","housenumber":"17a","lat":51.4279148,"lon":4.3205582},{"street":"De Berk","housenumber":"17a","lat":51.4308741,"lon":4.3148167},{"street":"De Zonnebloem","housenumber":"17a","lat":51.4297683,"lon":4.3143096},{"street":"Robert Kochstraat","housenumber":"16","lat":51.4270506,"lon":4.3244701},{"street":"Rubertstraat","housenumber":"16","lat":51.4199076,"lon":4.3301274},{"street":"Schapendreef","housenumber":"16","lat":51.4190191,"lon":4.3263237},{"street":"Semmelweissstraat","housenumber":"16","lat":51.4272175,"lon":4.3243642},{"street":"Smirnofflaan","housenumber":"16","lat":51.4271772,"lon":4.3288229},{"street":"Sondermanlaan","housenumber":"16","lat":51.4261268,"lon":4.3318747},{"street":"Steenstraat","housenumber":"16","lat":51.4381219,"lon":4.3126178},{"street":"Struikenlaan","housenumber":"16","lat":51.4324072,"lon":4.3134898},{"street":"Suijkerbuijkstraat","housenumber":"16","lat":51.4222049,"lon":4.330678},{"street":"Torontolaan","housenumber":"16","lat":51.4279674,"lon":4.3159345},{"street":"Trefpunt","housenumber":"16","lat":51.4220465,"lon":4.3276304},{"street":"Valkestraat","housenumber":"16","lat":51.4343965,"lon":4.3141582},{"street":"Verlengde Duinstraat","housenumber":"16","lat":51.4286503,"lon":4.3308646},{"street":"Vogelven","housenumber":"16","lat":51.4311753,"lon":4.3250348},{"street":"Wipstraat","housenumber":"16","lat":51.4347229,"lon":4.326542},{"street":"Zandfort","housenumber":"16","lat":51.4345331,"lon":4.3212166},{"street":"De Acacia","housenumber":"16","lat":51.4312992,"lon":4.3124703},{"street":"De Anjer","housenumber":"16","lat":51.4327418,"lon":4.3177084},{"street":"De Berk","housenumber":"16","lat":51.430988,"lon":4.3149719},{"street":"De Eik","housenumber":"16","lat":51.4306691,"lon":4.312549},{"street":"De Hazelaar","housenumber":"16","lat":51.4319019,"lon":4.3162064},{"street":"De Hortensia","housenumber":"16","lat":51.4333297,"lon":4.3156015},{"street":"De Jasmijn","housenumber":"16","lat":51.4315608,"lon":4.3146995},{"street":"De Narcis","housenumber":"16","lat":51.4323437,"lon":4.3177573},{"street":"De Papaver","housenumber":"16","lat":51.430804,"lon":4.3159476},{"street":"De Roos","housenumber":"16","lat":51.4316953,"lon":4.3176014},{"street":"De Sering","housenumber":"16","lat":51.4299731,"lon":4.3172012},{"street":"De Tulp","housenumber":"16","lat":51.4296464,"lon":4.3171733},{"street":"De Vuurdoorn","housenumber":"16","lat":51.4328055,"lon":4.3135103},{"street":"de Wildert","housenumber":"16","lat":51.4309393,"lon":4.3257596},{"street":"De Wilg","housenumber":"16","lat":51.4294086,"lon":4.3127709},{"street":"De Zonnebloem","housenumber":"16","lat":51.4298441,"lon":4.3144964},{"street":"dokter van de Karplein","housenumber":"16","lat":51.4303989,"lon":4.3222837},{"street":"in d' Hoef","housenumber":"16","lat":51.4294992,"lon":4.3221494},{"street":"op den Duyn","housenumber":"16","lat":51.4301492,"lon":4.3205856},{"street":"van 't Hoffstraat","housenumber":"16","lat":51.4236808,"lon":4.3308595},{"street":"van Houtenstraat","housenumber":"16","lat":51.4200518,"lon":4.3252214},{"street":"Van Weerden Poelmanlaan","housenumber":"16","lat":51.4259609,"lon":4.3286084},{"street":"van der Dilftstraat","housenumber":"16","lat":51.4219484,"lon":4.3288936},{"street":"Van der Meulenplein","housenumber":"16","lat":51.4220396,"lon":4.3241891},{"street":"KLM laan","housenumber":"160","lat":51.4254778,"lon":4.3294707},{"street":"Wouwbaan","housenumber":"160","lat":51.4322195,"lon":4.3327181},{"street":"Wouwbaan","housenumber":"161","lat":51.4318243,"lon":4.3317637},{"street":"KLM laan","housenumber":"162","lat":51.4255006,"lon":4.3294373},{"street":"Wouwbaan","housenumber":"162","lat":51.4323103,"lon":4.3328167},{"street":"Wouwbaan","housenumber":"163","lat":51.4318788,"lon":4.33182},{"street":"KLM laan","housenumber":"164","lat":51.4255235,"lon":4.3294037},{"street":"Wouwbaan","housenumber":"165","lat":51.4319242,"lon":4.3318765},{"street":"KLM laan","housenumber":"166","lat":51.4255471,"lon":4.3293692},{"street":"Wouwbaan","housenumber":"167","lat":51.4320512,"lon":4.332003},{"street":"KLM laan","housenumber":"168","lat":51.4255705,"lon":4.329335},{"street":"Wouwbaan","housenumber":"169","lat":51.4321057,"lon":4.3320592},{"street":"Aalbersestraat","housenumber":"17","lat":51.4216209,"lon":4.3242948},{"street":"Bijentiende","housenumber":"17","lat":51.4305314,"lon":4.3263945},{"street":"Binnenweg","housenumber":"17","lat":51.4262793,"lon":4.3239979},{"street":"Blériotlaan","housenumber":"17","lat":51.4275919,"lon":4.3339181},{"street":"Burg Moorsstraat","housenumber":"17","lat":51.4218248,"lon":4.3298374},{"street":"Buys Ballotstraat","housenumber":"17","lat":51.4240674,"lon":4.3328492},{"street":"Canadalaan","housenumber":"17","lat":51.4260096,"lon":4.3151609},{"street":"Couwenberghstraat","housenumber":"17","lat":51.4189863,"lon":4.3326216},{"street":"Doelstraat","housenumber":"17","lat":51.4334938,"lon":4.3127701},{"street":"Doctor de Bruijnlaan","housenumber":"17","lat":51.4196706,"lon":4.3317432},{"street":"Duinhoefplein","housenumber":"17","lat":51.4293833,"lon":4.3241052},{"street":"Duinstraat","housenumber":"17","lat":51.4289721,"lon":4.3235612},{"street":"Edward Jennerstraat","housenumber":"17","lat":51.4282236,"lon":4.3242832},{"street":"Fokkerlaan","housenumber":"17","lat":51.4283388,"lon":4.3300326},{"street":"Gemeynte","housenumber":"17","lat":51.4307303,"lon":4.3290687},{"street":"Geyssendorfferlaan","housenumber":"17","lat":51.4267818,"lon":4.3329294},{"street":"Gravesandestraat","housenumber":"17","lat":51.4251749,"lon":4.3330536},{"street":"Hamiltonlaan","housenumber":"17","lat":51.4272901,"lon":4.3154979},{"street":"Heideduinstede","housenumber":"17","lat":51.428835,"lon":4.3269761},{"street":"Heistraat","housenumber":"17","lat":51.4269922,"lon":4.3252898},{"street":"Hugo de Grootstraat","housenumber":"17","lat":51.4257033,"lon":4.3369612},{"street":"Huijbergseweg","housenumber":"17","lat":51.4232538,"lon":4.3283819},{"street":"Huijgensstraat","housenumber":"17","lat":51.4266436,"lon":4.335421},{"street":"Jef Adriaansenstraat","housenumber":"17","lat":51.4211073,"lon":4.3285899},{"street":"KLM laan","housenumber":"17","lat":51.4269363,"lon":4.3280376},{"street":"Kamerlingh Onnesstraat","housenumber":"17","lat":51.4252316,"lon":4.3342595},{"street":"Keesomstraat","housenumber":"17","lat":51.424175,"lon":4.3318258},{"street":"Laan Olieslagers","housenumber":"17","lat":51.4275955,"lon":4.3323362},{"street":"Lammertiende","housenumber":"17","lat":51.4299121,"lon":4.3258634},{"street":"Lindberghlaan","housenumber":"17","lat":51.4258455,"lon":4.3314599},{"street":"Maststraat","housenumber":"17","lat":51.4204159,"lon":4.330662},{"street":"Meulenblock","housenumber":"17","lat":51.4226308,"lon":4.3262284},{"street":"Mgr Ariensstraat","housenumber":"17","lat":51.4220244,"lon":4.326642},{"street":"Mgr Frenckenstraat","housenumber":"17","lat":51.4214374,"lon":4.3273314},{"street":"Mgr Nolensstraat","housenumber":"17","lat":51.4193589,"lon":4.3251369},{"street":"Mgr Poelsstraat","housenumber":"17","lat":51.4200712,"lon":4.324387},{"street":"Molenstraat","housenumber":"16","lat":51.4221538,"lon":4.3280282},{"street":"Nieuweweg","housenumber":"16","lat":51.4287403,"lon":4.3168942},{"street":"Norbartstraat","housenumber":"16","lat":51.4181225,"lon":4.3226377},{"street":"Oostlaan","housenumber":"16","lat":51.4260595,"lon":4.3364411},{"street":"Ossendrechtseweg","housenumber":"16","lat":51.4216744,"lon":4.3227537},{"street":"Parmentierlaan","housenumber":"16","lat":51.4277034,"lon":4.3291811},{"street":"Past van Roesselstraat","housenumber":"16","lat":51.421153,"lon":4.3317731},{"street":"Pasteurstraat","housenumber":"16","lat":51.4278895,"lon":4.3221484},{"street":"Paus Leo XIIIestraat","housenumber":"16","lat":51.4213009,"lon":4.3281397},{"street":"Plesmanlaan","housenumber":"16","lat":51.427288,"lon":4.3311354},{"street":"Pr Bernhardstraat","housenumber":"16","lat":51.4263274,"lon":4.3225431},{"street":"Pr Hendrikstraat","housenumber":"16","lat":51.4249265,"lon":4.3294503},{"street":"Putseweg","housenumber":"16","lat":51.4205953,"lon":4.3266609},{"street":"Minckelersweg","housenumber":"17","lat":51.4252213,"lon":4.3312264},{"street":"Hugo de Grootstraat","housenumber":"19","lat":51.4256423,"lon":4.3369604},{"street":"Huijbergseweg","housenumber":"19","lat":51.4233186,"lon":4.3285817},{"street":"Huijgensstraat","housenumber":"19","lat":51.426671,"lon":4.3354779},{"street":"KLM laan","housenumber":"19","lat":51.4269105,"lon":4.3281676},{"street":"Kamerlingh Onnesstraat","housenumber":"19","lat":51.4252341,"lon":4.3343386},{"street":"Kloosterstraat","housenumber":"19","lat":51.4250957,"lon":4.3262973},{"street":"Lammertiende","housenumber":"19","lat":51.4299189,"lon":4.3259447},{"street":"Lindberghlaan","housenumber":"19","lat":51.4258039,"lon":4.3315147},{"street":"Maststraat","housenumber":"19","lat":51.4203716,"lon":4.3307349},{"street":"Meulenblock","housenumber":"19","lat":51.4226606,"lon":4.3265127},{"street":"Mgr Ariensstraat","housenumber":"19","lat":51.4220432,"lon":4.3267278},{"street":"Mgr Frenckenstraat","housenumber":"19","lat":51.4214021,"lon":4.3274041},{"street":"Mgr Nolensstraat","housenumber":"19","lat":51.4192972,"lon":4.3252677},{"street":"Mgr Poelsstraat","housenumber":"19","lat":51.4199183,"lon":4.3243762},{"street":"Minckelersweg","housenumber":"19","lat":51.4252579,"lon":4.3312975},{"street":"Molenstraat","housenumber":"19","lat":51.4217746,"lon":4.3287248},{"street":"Nieuweweg","housenumber":"19","lat":51.4283861,"lon":4.3174777},{"street":"Norbartstraat","housenumber":"19","lat":51.4176114,"lon":4.3227767},{"street":"Oostlaan","housenumber":"19","lat":51.4271137,"lon":4.3356895},{"street":"Ossendrechtseweg","housenumber":"19","lat":51.4213712,"lon":4.3230196},{"street":"Ouwe Raedthuysplein","housenumber":"19","lat":51.4256076,"lon":4.3220004},{"street":"Parmentierlaan","housenumber":"19","lat":51.4278575,"lon":4.3294973},{"street":"Past van Roesselstraat","housenumber":"19","lat":51.4221143,"lon":4.3314847},{"street":"Pasteurstraat","housenumber":"19","lat":51.4276303,"lon":4.3214876},{"street":"Plesmanlaan","housenumber":"19","lat":51.4271657,"lon":4.3295421},{"street":"Pr Bernhardstraat","housenumber":"19","lat":51.4266762,"lon":4.3241468},{"street":"Pr Hendrikstraat","housenumber":"19","lat":51.4249049,"lon":4.3290482},{"street":"Putseweg","housenumber":"19","lat":51.4215071,"lon":4.3260933},{"street":"Raadhuisstraat","housenumber":"19","lat":51.4277715,"lon":4.3204714},{"street":"Rubertstraat","housenumber":"19","lat":51.4199922,"lon":4.330528},{"street":"Schapendreef","housenumber":"19","lat":51.4187258,"lon":4.32669},{"street":"Smirnofflaan","housenumber":"19","lat":51.4273593,"lon":4.3290775},{"street":"Sondermanlaan","housenumber":"19","lat":51.4265849,"lon":4.3326926},{"street":"St Lucasplein","housenumber":"19","lat":51.4281463,"lon":4.3227032},{"street":"Suijkerbuijkstraat","housenumber":"19","lat":51.4220859,"lon":4.3310121},{"street":"De Berk","housenumber":"17b","lat":51.4308494,"lon":4.3148172},{"street":"De Zonnebloem","housenumber":"17b","lat":51.429768,"lon":4.3142687},{"street":"De Zonnebloem","housenumber":"17c","lat":51.4297677,"lon":4.314228},{"street":"Aalbersestraat","housenumber":"18","lat":51.4211305,"lon":4.324095},{"street":"Antwerpsestraatweg","housenumber":"18","lat":51.4293627,"lon":4.3190798},{"street":"Bijentiende","housenumber":"18","lat":51.4302424,"lon":4.3257413},{"street":"Bloemenlaan","housenumber":"18","lat":51.4331382,"lon":4.3161437},{"street":"Blériotlaan","housenumber":"18","lat":51.4270662,"lon":4.3334839},{"street":"Buys Ballotstraat","housenumber":"18","lat":51.4238472,"lon":4.3336834},{"street":"Canadalaan","housenumber":"18","lat":51.4269656,"lon":4.3144223},{"street":"Couwenberghstraat","housenumber":"18","lat":51.4188835,"lon":4.3328487},{"street":"Duinhoefplein","housenumber":"18","lat":51.4293951,"lon":4.3242621},{"street":"Duinstraat","housenumber":"18","lat":51.4285715,"lon":4.3220175},{"street":"Fokkerlaan","housenumber":"18","lat":51.4281661,"lon":4.3298314},{"street":"Gemeynte","housenumber":"18","lat":51.4305882,"lon":4.3274709},{"street":"Gravesandestraat","housenumber":"18","lat":51.4247874,"lon":4.3327417},{"street":"Griblingstraat","housenumber":"18","lat":51.4284124,"lon":4.3229998},{"street":"Hamiltonlaan","housenumber":"18","lat":51.4271538,"lon":4.3164137},{"street":"Heideduinstede","housenumber":"18","lat":51.4288219,"lon":4.3268006},{"street":"Hugo de Grootstraat","housenumber":"18","lat":51.4260759,"lon":4.3372747},{"street":"Huijgensstraat","housenumber":"18","lat":51.4250466,"lon":4.3346962},{"street":"Jan van der Heijdenstraat","housenumber":"18","lat":51.4250176,"lon":4.3206914},{"street":"KLM laan","housenumber":"18","lat":51.4266215,"lon":4.3280161},{"street":"Kamerlingh Onnesstraat","housenumber":"18","lat":51.4258191,"lon":4.3339624},{"street":"Keesomstraat","housenumber":"18","lat":51.4249958,"lon":4.3341218},{"street":"Kloosterstraat","housenumber":"18","lat":51.4244933,"lon":4.3272747},{"street":"Laan Olieslagers","housenumber":"18","lat":51.4263474,"lon":4.3307931},{"street":"Lammertiende","housenumber":"18","lat":51.4296787,"lon":4.3263201},{"street":"Lindberghlaan","housenumber":"18","lat":51.4256618,"lon":4.3312306},{"street":"Maststraat","housenumber":"18","lat":51.4207542,"lon":4.3306129},{"street":"Meulenblock","housenumber":"18","lat":51.4226456,"lon":4.3263707},{"street":"Trefpunt","housenumber":"18","lat":51.4220547,"lon":4.3276714},{"street":"Valkestraat","housenumber":"18","lat":51.4344593,"lon":4.3141423},{"street":"Verlengde Duinstraat","housenumber":"18","lat":51.4286085,"lon":4.3310329},{"street":"Wouwbaan","housenumber":"18","lat":51.4247754,"lon":4.3246944},{"street":"Zandfort","housenumber":"18","lat":51.4345536,"lon":4.3214893},{"street":"De Acacia","housenumber":"18","lat":51.4313988,"lon":4.3124662},{"street":"De Anjer","housenumber":"18","lat":51.4327434,"lon":4.3178653},{"street":"De Berk","housenumber":"18","lat":51.4308447,"lon":4.3150328},{"street":"De Eik","housenumber":"18","lat":51.4307687,"lon":4.312633},{"street":"De Hazelaar","housenumber":"18","lat":51.4317952,"lon":4.3162082},{"street":"De Hortensia","housenumber":"18","lat":51.4334804,"lon":4.315627},{"street":"De Jasmijn","housenumber":"18","lat":51.4315501,"lon":4.3145128},{"street":"De Narcis","housenumber":"18","lat":51.4324414,"lon":4.3177553},{"street":"De Papaver","housenumber":"18","lat":51.4308029,"lon":4.3157835},{"street":"De Roos","housenumber":"18","lat":51.4317238,"lon":4.3177589},{"street":"De Sering","housenumber":"18","lat":51.4298449,"lon":4.3167676},{"street":"De Tulp","housenumber":"18","lat":51.4295153,"lon":4.3172429},{"street":"De Vuurdoorn","housenumber":"18","lat":51.4328236,"lon":4.3135833},{"street":"de Wildert","housenumber":"18","lat":51.4307425,"lon":4.3259404},{"street":"De Wilg","housenumber":"18","lat":51.4295002,"lon":4.3127668},{"street":"De Zonnebloem","housenumber":"18","lat":51.4298852,"lon":4.3141804},{"street":"dokter van de Karplein","housenumber":"18","lat":51.4304985,"lon":4.3224205},{"street":"in d' Hoef","housenumber":"18","lat":51.4294925,"lon":4.3220695},{"street":"op den Duyn","housenumber":"18","lat":51.4302658,"lon":4.3205904},{"street":"van Houtenstraat","housenumber":"18","lat":51.4200783,"lon":4.3251632},{"street":"Van Weerden Poelmanlaan","housenumber":"18","lat":51.4259415,"lon":4.3285756},{"street":"van der Dilftstraat","housenumber":"18","lat":51.4218844,"lon":4.3289087},{"street":"Van der Meulenplein","housenumber":"18","lat":51.4220071,"lon":4.3242444},{"street":"KLM laan","housenumber":"180","lat":51.4255583,"lon":4.3290471},{"street":"KLM laan","housenumber":"182","lat":51.4255337,"lon":4.3290834},{"street":"KLM laan","housenumber":"184","lat":51.4255098,"lon":4.3291187},{"street":"KLM laan","housenumber":"186","lat":51.4254859,"lon":4.329154},{"street":"Wouwbaan","housenumber":"187","lat":51.4329427,"lon":4.332975},{"street":"KLM laan","housenumber":"188","lat":51.4254619,"lon":4.3291893},{"street":"Canadalaan","housenumber":"18a","lat":51.4269217,"lon":4.3145027},{"street":"Huijgensstraat","housenumber":"18a","lat":51.4250199,"lon":4.3346986},{"street":"KLM laan","housenumber":"18a","lat":51.426459,"lon":4.3278604},{"street":"Huijgensstraat","housenumber":"18b","lat":51.4249936,"lon":4.3347009},{"street":"KLM laan","housenumber":"18b","lat":51.4264383,"lon":4.3277823},{"street":"Huijgensstraat","housenumber":"18c","lat":51.4249666,"lon":4.3347033},{"street":"KLM laan","housenumber":"18c","lat":51.42646,"lon":4.3277328},{"street":"Huijgensstraat","housenumber":"18d","lat":51.4249398,"lon":4.3347056},{"street":"KLM laan","housenumber":"18d","lat":51.4264798,"lon":4.3277036},{"street":"Huijgensstraat","housenumber":"18e","lat":51.4249135,"lon":4.334708},{"street":"KLM laan","housenumber":"18e","lat":51.4264996,"lon":4.3276745},{"street":"KLM laan","housenumber":"18f","lat":51.4265205,"lon":4.3276437},{"street":"KLM laan","housenumber":"18h","lat":51.4265422,"lon":4.3276118},{"street":"Bijentiende","housenumber":"19","lat":51.4305432,"lon":4.3265358},{"street":"Binnenweg","housenumber":"19","lat":51.4261539,"lon":4.3240439},{"street":"Burg Moorsstraat","housenumber":"19","lat":51.4217702,"lon":4.3298314},{"street":"Canadalaan","housenumber":"19","lat":51.425987,"lon":4.3146581},{"street":"Couwenberghstraat","housenumber":"19","lat":51.4190228,"lon":4.3326783},{"street":"Doelstraat","housenumber":"19","lat":51.4334282,"lon":4.312484},{"street":"Duinhoefplein","housenumber":"19","lat":51.4291653,"lon":4.3242347},{"street":"Edward Jennerstraat","housenumber":"19","lat":51.4282335,"lon":4.3243837},{"street":"Fokkerlaan","housenumber":"19","lat":51.4283125,"lon":4.3301051},{"street":"Gemeynte","housenumber":"19","lat":51.4305989,"lon":4.3290022},{"street":"Geyssendorfferlaan","housenumber":"19","lat":51.4267405,"lon":4.3329837},{"street":"Gravesandestraat","housenumber":"19","lat":51.4249392,"lon":4.3330613},{"street":"Hamiltonlaan","housenumber":"19","lat":51.4275686,"lon":4.31557},{"street":"Heideduinstede","housenumber":"19","lat":51.4288114,"lon":4.3266596},{"street":"Trefpunt","housenumber":"19","lat":51.4223789,"lon":4.3276831},{"street":"Wouwbaan","housenumber":"19","lat":51.4250336,"lon":4.3244151},{"street":"Zandfort","housenumber":"19","lat":51.4349146,"lon":4.3216535},{"street":"De Acacia","housenumber":"19","lat":51.4314808,"lon":4.3124235},{"street":"De Anjer","housenumber":"19","lat":51.4328874,"lon":4.3177079},{"street":"De Berk","housenumber":"19","lat":51.4307909,"lon":4.3150484},{"street":"De Eik","housenumber":"19","lat":51.4307743,"lon":4.3131073},{"street":"De Hazelaar","housenumber":"19","lat":51.4318869,"lon":4.315943},{"street":"De Hortensia","housenumber":"19","lat":51.4333282,"lon":4.3150497},{"street":"De Jasmijn","housenumber":"19","lat":51.4315492,"lon":4.3144122},{"street":"De Narcis","housenumber":"19","lat":51.432306,"lon":4.3175295},{"street":"De Papaver","housenumber":"19","lat":51.4308025,"lon":4.3157014},{"street":"De Roos","housenumber":"19","lat":51.4317244,"lon":4.3178308},{"street":"De Sering","housenumber":"19","lat":51.4298899,"lon":4.3167809},{"street":"De Tulp","housenumber":"19","lat":51.4294844,"lon":4.3172386},{"street":"De Vuurdoorn","housenumber":"19","lat":51.433117,"lon":4.3126886},{"street":"De Wilg","housenumber":"19","lat":51.4295461,"lon":4.3127648},{"street":"De Zonnebloem","housenumber":"19","lat":51.4299366,"lon":4.3141796},{"street":"dokter van de Karplein","housenumber":"19","lat":51.4305285,"lon":4.3224822},{"street":"in d' Hoef","housenumber":"19","lat":51.4292252,"lon":4.3219236},{"street":"van Houtenstraat","housenumber":"19","lat":51.4198873,"lon":4.3259105},{"street":"KLM laan","housenumber":"190","lat":51.425438,"lon":4.3292246},{"street":"Wouwbaan","housenumber":"190","lat":51.433636,"lon":4.3342817},{"street":"Wouwbaan","housenumber":"191","lat":51.433104,"lon":4.3331147},{"street":"KLM laan","housenumber":"192","lat":51.425416,"lon":4.3292571},{"street":"KLM laan","housenumber":"194","lat":51.4253956,"lon":4.329287},{"street":"KLM laan","housenumber":"196","lat":51.4253755,"lon":4.3293168},{"street":"Wouwbaan","housenumber":"197","lat":51.4333315,"lon":4.3333799},{"street":"KLM laan","housenumber":"198","lat":51.4253557,"lon":4.3293459},{"street":"Pasteurstraat","housenumber":"19a","lat":51.4276614,"lon":4.3214752},{"street":"Binnenweg","housenumber":"1a","lat":51.4257951,"lon":4.3231464},{"street":"Burg Moorsstraat","housenumber":"1a","lat":51.4229075,"lon":4.3298422},{"street":"Duinstraat","housenumber":"1a","lat":51.4290363,"lon":4.3198506},{"street":"Flemingstraat","housenumber":"1a","lat":51.4272444,"lon":4.321462},{"street":"Fokkerlaan","housenumber":"1a","lat":51.4286803,"lon":4.3291948},{"street":"Keesomstraat","housenumber":"1a","lat":51.4242658,"lon":4.3347647},{"street":"Kloosterstraat","housenumber":"1a","lat":51.4232117,"lon":4.3272927},{"street":"Kromstraat","housenumber":"1a","lat":51.4247897,"lon":4.3254443},{"street":"Putseweg","housenumber":"1a","lat":51.4223664,"lon":4.3247039},{"street":"Sportlaan","housenumber":"1a","lat":51.422488,"lon":4.3368385},{"street":"Suijkerbuijkstraat","housenumber":"1a","lat":51.4228723,"lon":4.3309832},{"street":"Wouwbaan","housenumber":"1a","lat":51.4251547,"lon":4.3236053},{"street":"Van Weerden Poelmanlaan","housenumber":"1a","lat":51.426289,"lon":4.3280239},{"street":"Burg Moorsstraat","housenumber":"1b","lat":51.4228537,"lon":4.3298578},{"street":"Kloosterstraat","housenumber":"1b","lat":51.4231488,"lon":4.3273119},{"street":"Putseweg","housenumber":"1b","lat":51.4222323,"lon":4.3247824},{"street":"Suijkerbuijkstraat","housenumber":"1b","lat":51.4228735,"lon":4.331027},{"street":"Burg Moorsstraat","housenumber":"1c","lat":51.4227999,"lon":4.3298734},{"street":"Suijkerbuijkstraat","housenumber":"1c","lat":51.4228747,"lon":4.3310709},{"street":"Burg Moorsstraat","housenumber":"1d","lat":51.422602,"lon":4.3298637},{"street":"Huijbergseweg","housenumber":"1d","lat":51.4227516,"lon":4.3243488},{"street":"Suijkerbuijkstraat","housenumber":"1d","lat":51.4228758,"lon":4.3311148},{"street":"Burg Moorsstraat","housenumber":"1e","lat":51.4224694,"lon":4.3298659},{"street":"Huijbergseweg","housenumber":"1e","lat":51.4227666,"lon":4.3244395},{"street":"Suijkerbuijkstraat","housenumber":"1e","lat":51.422877,"lon":4.3311587},{"street":"Huijbergseweg","housenumber":"1f","lat":51.4227792,"lon":4.3245373},{"street":"Suijkerbuijkstraat","housenumber":"1f","lat":51.4228782,"lon":4.3312026},{"street":"Suijkerbuijkstraat","housenumber":"1h","lat":51.4228794,"lon":4.3312464},{"street":"Suijkerbuijkstraat","housenumber":"1j","lat":51.4228806,"lon":4.3312903},{"street":"Suijkerbuijkstraat","housenumber":"1k","lat":51.4228817,"lon":4.3313342},{"street":"Suijkerbuijkstraat","housenumber":"1m","lat":51.4228829,"lon":4.3313781},{"street":"Suijkerbuijkstraat","housenumber":"1n","lat":51.4228841,"lon":4.331422},{"street":"Aalbersestraat","housenumber":"2","lat":51.4213643,"lon":4.3238006},{"street":"Antwerpsestraatweg","housenumber":"2","lat":51.4286153,"lon":4.3193907},{"street":"Bijentiende","housenumber":"2","lat":51.4301812,"lon":4.3250205},{"street":"Binnenweg","housenumber":"2","lat":51.4256697,"lon":4.3231925},{"street":"Bloemenlaan","housenumber":"2","lat":51.4339104,"lon":4.3160393},{"street":"Blériotlaan","housenumber":"2","lat":51.4273965,"lon":4.3330513},{"street":"Buys Ballotstraat","housenumber":"2","lat":51.4242118,"lon":4.3340877},{"street":"Couwenberghstraat","housenumber":"2","lat":51.4185556,"lon":4.33243},{"street":"Doelstraat","housenumber":"2","lat":51.4346324,"lon":4.3173311},{"street":"Duinhoefplein","housenumber":"2","lat":51.4292377,"lon":4.3240019},{"street":"Duinstraat","housenumber":"2","lat":51.428429,"lon":4.3201945},{"street":"Duintjesplein","housenumber":"2","lat":51.4214205,"lon":4.3284389},{"street":"Fokkerlaan","housenumber":"2","lat":51.4284557,"lon":4.3291355},{"street":"Gemeynte","housenumber":"2","lat":51.4310426,"lon":4.3276518},{"street":"Gravesandestraat","housenumber":"2","lat":51.4250221,"lon":4.332065},{"street":"Griblingstraat","housenumber":"2","lat":51.4283823,"lon":4.3226599},{"street":"Heideduinstede","housenumber":"2","lat":51.4289413,"lon":4.3264535},{"street":"Heistraat","housenumber":"2","lat":51.4271344,"lon":4.3257215},{"street":"Hugo de Grootstraat","housenumber":"2","lat":51.4267692,"lon":4.336396},{"street":"Huijgensstraat","housenumber":"2","lat":51.4257731,"lon":4.3345928},{"street":"Jef Adriaansenstraat","housenumber":"2","lat":51.4206106,"lon":4.3283427},{"street":"KLM laan","housenumber":"2","lat":51.4268042,"lon":4.3273504},{"street":"Kamerlingh Onnesstraat","housenumber":"2","lat":51.426156,"lon":4.3345703},{"street":"Keesomstraat","housenumber":"2","lat":51.4245125,"lon":4.334363},{"street":"Kloosterstraat","housenumber":"2","lat":51.4235153,"lon":4.3274844},{"street":"Laan Olieslagers","housenumber":"2","lat":51.4259175,"lon":4.3301045},{"street":"Lammertiende","housenumber":"2","lat":51.4296042,"lon":4.3254307},{"street":"Lindberghlaan","housenumber":"2","lat":51.4259994,"lon":4.3307914},{"street":"Lorentzstraat","housenumber":"2","lat":51.4246277,"lon":4.331197},{"street":"Meulenblock","housenumber":"2","lat":51.4226524,"lon":4.3258229},{"street":"Mgr Ariensstraat","housenumber":"2","lat":51.4218687,"lon":4.3270921},{"street":"Mgr Frenckenstraat","housenumber":"2","lat":51.4217073,"lon":4.3263618},{"street":"Mgr Nolensstraat","housenumber":"2","lat":51.4193272,"lon":4.32462},{"street":"Molenstraat","housenumber":"2","lat":51.422653,"lon":4.3278375},{"street":"Nieuwe Stee","housenumber":"2","lat":51.4359528,"lon":4.3250954},{"street":"Nieuweweg","housenumber":"2","lat":51.4286894,"lon":4.318204},{"street":"Norbartstraat","housenumber":"2","lat":51.4178234,"lon":4.3233468},{"street":"Olympialaan","housenumber":"2","lat":51.4176974,"lon":4.3342329},{"street":"Onderstal","housenumber":"2","lat":51.4247427,"lon":4.322451},{"street":"Oostlaan","housenumber":"2","lat":51.4270631,"lon":4.3370938},{"street":"Parmentierlaan","housenumber":"2","lat":51.4280538,"lon":4.3283423},{"street":"Past van Roesselstraat","housenumber":"2","lat":51.4216226,"lon":4.3318565},{"street":"Pasteurstraat","housenumber":"2","lat":51.4275985,"lon":4.3217814},{"street":"Paus Leo XIIIestraat","housenumber":"2","lat":51.4209551,"lon":4.3276733},{"street":"Platengastraat","housenumber":"2","lat":51.4287133,"lon":4.3243913},{"street":"Plesmanlaan","housenumber":"2","lat":51.4264953,"lon":4.3293929},{"street":"Pr Clausstraat","housenumber":"2","lat":51.4236439,"lon":4.3302163},{"street":"Putseweg","housenumber":"2","lat":51.4210897,"lon":4.3256717},{"street":"Raadhuisstraat","housenumber":"2","lat":51.4281581,"lon":4.3190792},{"street":"Robert Kochstraat","housenumber":"2","lat":51.4269756,"lon":4.3241481},{"street":"Rubertstraat","housenumber":"2","lat":51.4201995,"lon":4.3296031},{"street":"Schapendreef","housenumber":"2","lat":51.4197777,"lon":4.3277007},{"street":"Semmelweissstraat","housenumber":"2","lat":51.4271849,"lon":4.3237467},{"street":"Smirnofflaan","housenumber":"2","lat":51.4274411,"lon":4.328184},{"street":"Sondermanlaan","housenumber":"2","lat":51.4264192,"lon":4.3314914},{"street":"Sportlaan","housenumber":"2","lat":51.420787,"lon":4.3353906},{"street":"St Lucasplein","housenumber":"2","lat":51.4268015,"lon":4.323156},{"street":"Struikenlaan","housenumber":"2","lat":51.4325825,"lon":4.314096},{"street":"Suijkerbuijkstraat","housenumber":"2","lat":51.4226006,"lon":4.3306976},{"street":"Torontolaan","housenumber":"2","lat":51.4278662,"lon":4.3179316},{"street":"Trefpunt","housenumber":"2","lat":51.4222597,"lon":4.327372},{"street":"Verlengde Duinstraat","housenumber":"2","lat":51.4289377,"lon":4.3296592},{"street":"Vogelven","housenumber":"2","lat":51.4312972,"lon":4.3243344},{"street":"Wouwbaan","housenumber":"2","lat":51.4241696,"lon":4.3236995},{"street":"Zandfort","housenumber":"2","lat":51.4343388,"lon":4.3196247},{"street":"De Acacia","housenumber":"2","lat":51.4310099,"lon":4.3129808},{"street":"De Anjer","housenumber":"2","lat":51.4329483,"lon":4.3167985},{"street":"De Berk","housenumber":"2","lat":51.4310588,"lon":4.3138773},{"street":"De Eik","housenumber":"2","lat":51.4300803,"lon":4.3130375},{"street":"De Hazelaar","housenumber":"2","lat":51.4325356,"lon":4.315791},{"street":"De Hortensia","housenumber":"2","lat":51.4329356,"lon":4.3156164},{"street":"De Jasmijn","housenumber":"2","lat":51.4323568,"lon":4.3146396},{"street":"De Narcis","housenumber":"2","lat":51.4320408,"lon":4.3170468},{"street":"De Papaver","housenumber":"2","lat":51.4314407,"lon":4.3163862},{"street":"De Roos","housenumber":"2","lat":51.4310447,"lon":4.3172283},{"street":"De Sering","housenumber":"2","lat":51.4302747,"lon":4.3164016},{"street":"De Tulp","housenumber":"2","lat":51.4297815,"lon":4.3158134},{"street":"De Vuurdoorn","housenumber":"2","lat":51.4327251,"lon":4.3128217},{"street":"de Wildert","housenumber":"2","lat":51.430667,"lon":4.3249319},{"street":"De Wilg","housenumber":"2","lat":51.4292066,"lon":4.3138346},{"street":"De Zonnebloem","housenumber":"2","lat":51.4302959,"lon":4.3151249},{"street":"dokter van de Karplein","housenumber":"2","lat":51.4295294,"lon":4.3226068},{"street":"op den Duyn","housenumber":"2","lat":51.4293616,"lon":4.3207462},{"street":"van 't Hoffstraat","housenumber":"2","lat":51.4244578,"lon":4.3312872},{"street":"van Houtenstraat","housenumber":"2","lat":51.4204812,"lon":4.3253439},{"street":"Van Weerden Poelmanlaan","housenumber":"2","lat":51.426085,"lon":4.3283306},{"street":"van der Dilftstraat","housenumber":"2","lat":51.4223704,"lon":4.3289109},{"street":"Van der Meulenplein","housenumber":"2","lat":51.4220952,"lon":4.3236714},{"street":"Aalbersestraat","housenumber":"20","lat":51.4210703,"lon":4.3240905},{"street":"Antwerpsestraatweg","housenumber":"20","lat":51.4294256,"lon":4.3190783},{"street":"Bijentiende","housenumber":"20","lat":51.4302492,"lon":4.3258225},{"street":"Bloemenlaan","housenumber":"20","lat":51.4330753,"lon":4.3161452},{"street":"Blériotlaan","housenumber":"20","lat":51.427025,"lon":4.3335379},{"street":"Buys Ballotstraat","housenumber":"20","lat":51.4238443,"lon":4.3335975},{"street":"Canadalaan","housenumber":"20","lat":51.4272013,"lon":4.3142652},{"street":"Couwenberghstraat","housenumber":"20","lat":51.4189252,"lon":4.332902},{"street":"Doelstraat","housenumber":"20","lat":51.4338847,"lon":4.3132498},{"street":"Duinhoefplein","housenumber":"20","lat":51.4293888,"lon":4.3239518},{"street":"Duinstraat","housenumber":"20","lat":51.4285823,"lon":4.3222185},{"street":"Fokkerlaan","housenumber":"20","lat":51.4281023,"lon":4.3299854},{"street":"Griblingstraat","housenumber":"20","lat":51.4284162,"lon":4.3230424},{"street":"Hamiltonlaan","housenumber":"20","lat":51.4271707,"lon":4.3162983},{"street":"Heideduinstede","housenumber":"20","lat":51.4287966,"lon":4.3264601},{"street":"Hugo de Grootstraat","housenumber":"20","lat":51.4259232,"lon":4.3372782},{"street":"Huijgensstraat","housenumber":"20","lat":51.4248211,"lon":4.3346866},{"street":"Jef Adriaansenstraat","housenumber":"20","lat":51.4209814,"lon":4.3288494},{"street":"Kamerlingh Onnesstraat","housenumber":"20","lat":51.425784,"lon":4.3338932},{"street":"Keesomstraat","housenumber":"20","lat":51.4247935,"lon":4.3336232},{"street":"Kloosterstraat","housenumber":"20","lat":51.4245644,"lon":4.3271868},{"street":"Laan Olieslagers","housenumber":"20","lat":51.4263813,"lon":4.33086},{"street":"Lammertiende","housenumber":"20","lat":51.4296854,"lon":4.3263999},{"street":"Lindberghlaan","housenumber":"20","lat":51.4256174,"lon":4.3312891},{"street":"Meulenblock","housenumber":"20","lat":51.4226146,"lon":4.3263789},{"street":"Mgr Ariensstraat","housenumber":"20","lat":51.4215137,"lon":4.3277827},{"street":"Mgr Nolensstraat","housenumber":"20","lat":51.4187244,"lon":4.3252949},{"street":"Minckelersweg","housenumber":"20","lat":51.4249893,"lon":4.3314187},{"street":"Nieuweweg","housenumber":"20","lat":51.4287554,"lon":4.3165774},{"street":"Nijverheidstraat","housenumber":"20","lat":51.4320388,"lon":4.3293288},{"street":"Norbartstraat","housenumber":"20","lat":51.4183054,"lon":4.3226463},{"street":"Onderstal","housenumber":"20","lat":51.4247832,"lon":4.3206097},{"street":"Oostlaan","housenumber":"20","lat":51.4259155,"lon":4.33643},{"street":"Ossendrechtseweg","housenumber":"20","lat":51.4214398,"lon":4.3226585},{"street":"Parmentierlaan","housenumber":"20","lat":51.4276283,"lon":4.329362},{"street":"Past van Roesselstraat","housenumber":"20","lat":51.4209555,"lon":4.331682},{"street":"Pr Bernhardstraat","housenumber":"20","lat":51.4263807,"lon":4.3232909},{"street":"Pr Hendrikstraat","housenumber":"20","lat":51.4251039,"lon":4.3291873},{"street":"Robert Kochstraat","housenumber":"20","lat":51.4270562,"lon":4.3245601},{"street":"Rubertstraat","housenumber":"20","lat":51.4198015,"lon":4.3303168},{"street":"Schapendreef","housenumber":"20","lat":51.4188567,"lon":4.3262556},{"street":"Semmelweissstraat","housenumber":"20","lat":51.4272377,"lon":4.3246082},{"street":"Smirnofflaan","housenumber":"20","lat":51.4272928,"lon":4.3280874},{"street":"Sondermanlaan","housenumber":"20","lat":51.4260435,"lon":4.3319839},{"street":"St Lucasplein","housenumber":"20","lat":51.427836,"lon":4.3238087},{"street":"Steenstraat","housenumber":"20","lat":51.4378365,"lon":4.311891},{"street":"Struikenlaan","housenumber":"20","lat":51.4323845,"lon":4.3133201},{"street":"Suijkerbuijkstraat","housenumber":"20","lat":51.4220674,"lon":4.3306809},{"street":"Torontolaan","housenumber":"20","lat":51.4279981,"lon":4.3153586},{"street":"Trefpunt","housenumber":"20","lat":51.4220632,"lon":4.3277144},{"street":"Valkestraat","housenumber":"20","lat":51.4350134,"lon":4.3140995},{"street":"Wouwbaan","housenumber":"20","lat":51.424948,"lon":4.3248916},{"street":"Zandfort","housenumber":"20","lat":51.4345833,"lon":4.3217907},{"street":"De Acacia","housenumber":"20","lat":51.4315265,"lon":4.312422},{"street":"De Anjer","housenumber":"20","lat":51.4329367,"lon":4.317707},{"street":"De Berk","housenumber":"20","lat":51.4307278,"lon":4.3150211},{"street":"De Eik","housenumber":"20","lat":51.4307441,"lon":4.313158},{"street":"De Hazelaar","housenumber":"20","lat":51.4318862,"lon":4.3158711},{"street":"De Hortensia","housenumber":"20","lat":51.4335309,"lon":4.3155971},{"street":"De Jasmijn","housenumber":"20","lat":51.4315394,"lon":4.3143261},{"street":"De Narcis","housenumber":"20","lat":51.4323053,"lon":4.3174576},{"street":"De Papaver","housenumber":"20","lat":51.4308018,"lon":4.3156196},{"street":"De Roos","housenumber":"20","lat":51.4317251,"lon":4.3179027},{"street":"De Sering","housenumber":"20","lat":51.4299444,"lon":4.3168371},{"street":"De Tulp","housenumber":"20","lat":51.4294082,"lon":4.3172286},{"street":"De Vuurdoorn","housenumber":"20","lat":51.4328646,"lon":4.3137312},{"street":"de Wildert","housenumber":"20","lat":51.4307597,"lon":4.326295},{"street":"De Wilg","housenumber":"20","lat":51.4296052,"lon":4.3127337},{"street":"Minckelersweg","housenumber":"26","lat":51.4250901,"lon":4.3316321},{"street":"Nieuweweg","housenumber":"26","lat":51.4287866,"lon":4.316059},{"street":"Nijverheidstraat","housenumber":"26","lat":51.4318849,"lon":4.3291084},{"street":"Onderstal","housenumber":"26","lat":51.425245,"lon":4.3180403},{"street":"Oostlaan","housenumber":"26","lat":51.4257088,"lon":4.3364348},{"street":"Ossendrechtseweg","housenumber":"26","lat":51.421124,"lon":4.3224941},{"street":"Parmentierlaan","housenumber":"26","lat":51.4275357,"lon":4.3295866},{"street":"Past van Roesselstraat","housenumber":"26","lat":51.4207043,"lon":4.3315904},{"street":"Plesmanlaan","housenumber":"26","lat":51.4275162,"lon":4.3315184},{"street":"Pr Bernhardstraat","housenumber":"26","lat":51.4264699,"lon":4.3241947},{"street":"Pr Hendrikstraat","housenumber":"26","lat":51.4253967,"lon":4.3287635},{"street":"Putseweg","housenumber":"26","lat":51.4202411,"lon":4.3273567},{"street":"Robert Kochstraat","housenumber":"26","lat":51.4270647,"lon":4.324696},{"street":"Rubertstraat","housenumber":"26","lat":51.4196402,"lon":4.3305779},{"street":"Schapendreef","housenumber":"26","lat":51.4185228,"lon":4.3261196},{"street":"Semmelweissstraat","housenumber":"26","lat":51.4272583,"lon":4.3248953},{"street":"Smirnofflaan","housenumber":"26","lat":51.4272484,"lon":4.3281959},{"street":"St Lucasplein","housenumber":"26","lat":51.4277086,"lon":4.3236234},{"street":"Steenstraat","housenumber":"26","lat":51.4372193,"lon":4.3112439},{"street":"Struikenlaan","housenumber":"26","lat":51.4323573,"lon":4.3129926},{"street":"Suijkerbuijkstraat","housenumber":"26","lat":51.4219011,"lon":4.3306746},{"street":"Torontolaan","housenumber":"26","lat":51.4280976,"lon":4.3144503},{"street":"Vogelven","housenumber":"26","lat":51.4317264,"lon":4.3248396},{"street":"Wouwbaan","housenumber":"26","lat":51.4251852,"lon":4.3252743},{"street":"Zandfort","housenumber":"26","lat":51.4346427,"lon":4.3223933},{"street":"De Acacia","housenumber":"26","lat":51.4317515,"lon":4.3125705},{"street":"De Anjer","housenumber":"26","lat":51.4332724,"lon":4.3177355},{"street":"De Berk","housenumber":"26","lat":51.4307053,"lon":4.3145327},{"street":"De Eik","housenumber":"26","lat":51.4304952,"lon":4.3132248},{"street":"De Hazelaar","housenumber":"26","lat":51.4319078,"lon":4.315281},{"street":"De Hortensia","housenumber":"26","lat":51.4336602,"lon":4.3152254},{"street":"De Jasmijn","housenumber":"26","lat":51.4316073,"lon":4.3138686},{"street":"De Narcis","housenumber":"26","lat":51.4323722,"lon":4.3169096},{"street":"De Papaver","housenumber":"26","lat":51.4312231,"lon":4.3156526},{"street":"De Roos","housenumber":"26","lat":51.4313202,"lon":4.317869},{"street":"De Tulp","housenumber":"26","lat":51.4291452,"lon":4.3171074},{"street":"de Wildert","housenumber":"26","lat":51.4311858,"lon":4.3264992},{"street":"De Wilg","housenumber":"26","lat":51.4298166,"lon":4.3130508},{"street":"De Berk","housenumber":"21","lat":51.4307008,"lon":4.3150218},{"street":"De Eik","housenumber":"21","lat":51.43071,"lon":4.3132154},{"street":"De Hazelaar","housenumber":"21","lat":51.4318854,"lon":4.3157849},{"street":"De Jasmijn","housenumber":"21","lat":51.4315387,"lon":4.3142542},{"street":"De Narcis","housenumber":"21","lat":51.4323045,"lon":4.3173713},{"street":"De Papaver","housenumber":"21","lat":51.4308013,"lon":4.3155366},{"street":"De Roos","housenumber":"21","lat":51.4315625,"lon":4.3178202},{"street":"De Sering","housenumber":"21","lat":51.4299895,"lon":4.3168505},{"street":"De Tulp","housenumber":"21","lat":51.4293747,"lon":4.3172534},{"street":"De Vuurdoorn","housenumber":"21","lat":51.4331392,"lon":4.312758},{"street":"De Wilg","housenumber":"21","lat":51.4296527,"lon":4.3127628},{"street":"De Zonnebloem","housenumber":"21","lat":51.43004,"lon":4.3141777},{"street":"dokter van de Karplein","housenumber":"21","lat":51.4305748,"lon":4.3226168},{"street":"in d' Hoef","housenumber":"21","lat":51.4292134,"lon":4.3217473},{"street":"op den Duyn","housenumber":"21","lat":51.4295836,"lon":4.3203198},{"street":"van Houtenstraat","housenumber":"21","lat":51.419813,"lon":4.3258597},{"street":"van der Dilftstraat","housenumber":"21","lat":51.422453,"lon":4.3292286},{"street":"KLM laan","housenumber":"210","lat":51.4252356,"lon":4.3295231},{"street":"op den Duyn","housenumber":"22","lat":51.4304366,"lon":4.3206258},{"street":"van Houtenstraat","housenumber":"22","lat":51.4201842,"lon":4.3249451},{"street":"Van Weerden Poelmanlaan","housenumber":"22","lat":51.4259053,"lon":4.3285124},{"street":"Van der Meulenplein","housenumber":"22","lat":51.4219448,"lon":4.3243504},{"street":"KLM laan","housenumber":"220","lat":51.4251322,"lon":4.3296752},{"street":"Wouwbaan","housenumber":"221","lat":51.4342732,"lon":4.3334711},{"street":"KLM laan","housenumber":"222","lat":51.4251116,"lon":4.3297055},{"street":"Wouwbaan","housenumber":"223","lat":51.4344753,"lon":4.3346507},{"street":"KLM laan","housenumber":"224","lat":51.425091,"lon":4.3297357},{"street":"KLM laan","housenumber":"226","lat":51.4250704,"lon":4.329766},{"street":"Wouwbaan","housenumber":"227","lat":51.4346751,"lon":4.3348762},{"street":"KLM laan","housenumber":"228","lat":51.4250496,"lon":4.3297964},{"street":"KLM laan","housenumber":"22a","lat":51.4263115,"lon":4.328821},{"street":"Ossendrechtseweg","housenumber":"22a","lat":51.4213046,"lon":4.3226186},{"street":"Wouwbaan","housenumber":"22a","lat":51.4249966,"lon":4.3251365},{"street":"Antwerpsestraatweg","housenumber":"23","lat":51.4299134,"lon":4.3183622},{"street":"Bijentiende","housenumber":"23","lat":51.430567,"lon":4.3268179},{"street":"Binnenweg","housenumber":"23","lat":51.4258767,"lon":4.3242086},{"street":"Blériotlaan","housenumber":"23","lat":51.4272815,"lon":4.3344689},{"street":"Burg Moorsstraat","housenumber":"23","lat":51.4214423,"lon":4.3298474},{"street":"Canadalaan","housenumber":"23","lat":51.4263887,"lon":4.3143467},{"street":"Dennenlaan","housenumber":"23","lat":51.4172647,"lon":4.3328576},{"street":"Doelstraat","housenumber":"23","lat":51.4332081,"lon":4.3120146},{"street":"Duinhoefplein","housenumber":"23","lat":51.4294048,"lon":4.3239488},{"street":"Edward Jennerstraat","housenumber":"23","lat":51.4282549,"lon":4.3247571},{"street":"Fokkerlaan","housenumber":"23","lat":51.4282331,"lon":4.3302795},{"street":"Gemeynte","housenumber":"23","lat":51.4303279,"lon":4.3289451},{"street":"Geyssendorfferlaan","housenumber":"23","lat":51.4266573,"lon":4.3330932},{"street":"Gravesandestraat","housenumber":"23","lat":51.4248308,"lon":4.3330698},{"street":"Hugo de Grootstraat","housenumber":"23","lat":51.425471,"lon":4.3369581},{"street":"Huijbergseweg","housenumber":"23","lat":51.4234107,"lon":4.3288407},{"street":"Huijgensstraat","housenumber":"23","lat":51.4260376,"lon":4.335018},{"street":"KLM laan","housenumber":"23","lat":51.4268489,"lon":4.3283128},{"street":"Kamerlingh Onnesstraat","housenumber":"23","lat":51.425239,"lon":4.3344941},{"street":"Lammertiende","housenumber":"23","lat":51.4299324,"lon":4.326106},{"street":"Maststraat","housenumber":"23","lat":51.4202296,"lon":4.3309395},{"street":"Meulenblock","housenumber":"23","lat":51.4224224,"lon":4.3265181},{"street":"Mgr Ariensstraat","housenumber":"23","lat":51.4220897,"lon":4.3268993},{"street":"Mgr Frenckenstraat","housenumber":"23","lat":51.421305,"lon":4.3275933},{"street":"Mgr Nolensstraat","housenumber":"23","lat":51.4180641,"lon":4.3250952},{"street":"Minckelersweg","housenumber":"23","lat":51.4253952,"lon":4.3315675},{"street":"Molenstraat","housenumber":"23","lat":51.4215766,"lon":4.3290731},{"street":"Nieuweweg","housenumber":"23","lat":51.4283921,"lon":4.3171468},{"street":"Norbartstraat","housenumber":"23","lat":51.4176256,"lon":4.3223594},{"street":"Onderstal","housenumber":"23","lat":51.4254017,"lon":4.3135647},{"street":"Oostlaan","housenumber":"23","lat":51.4270917,"lon":4.3359919},{"street":"Ossendrechtseweg","housenumber":"23","lat":51.4211546,"lon":4.322924},{"street":"Hamiltonlaan","housenumber":"22","lat":51.4272129,"lon":4.3159953},{"street":"Hugo de Grootstraat","housenumber":"22","lat":51.4257702,"lon":4.3372674},{"street":"Huijbergseweg","housenumber":"22","lat":51.4227003,"lon":4.3268276},{"street":"Huijgensstraat","housenumber":"22","lat":51.4247582,"lon":4.3346881},{"street":"Jef Adriaansenstraat","housenumber":"22","lat":51.4210458,"lon":4.3289193},{"street":"Kamerlingh Onnesstraat","housenumber":"22","lat":51.4257489,"lon":4.3338241},{"street":"Keesomstraat","housenumber":"22","lat":51.4247307,"lon":4.3336391},{"street":"Kloosterstraat","housenumber":"22","lat":51.4247157,"lon":4.3270251},{"street":"Laan Olieslagers","housenumber":"22","lat":51.4264153,"lon":4.3309269},{"street":"Lammertiende","housenumber":"22","lat":51.4296973,"lon":4.3265424},{"street":"Lindberghlaan","housenumber":"22","lat":51.4255818,"lon":4.3313331},{"street":"Maststraat","housenumber":"22","lat":51.420706,"lon":4.3306852},{"street":"Meulenblock","housenumber":"22","lat":51.4224729,"lon":4.3265047},{"street":"Mgr Ariensstraat","housenumber":"22","lat":51.4214784,"lon":4.3278515},{"street":"Mgr Nolensstraat","housenumber":"22","lat":51.4186203,"lon":4.3252503},{"street":"Minckelersweg","housenumber":"22","lat":51.4250225,"lon":4.3314799},{"street":"Molenstraat","housenumber":"22","lat":51.4220197,"lon":4.3280943},{"street":"Nieuweweg","housenumber":"22","lat":51.4287714,"lon":4.3163614},{"street":"Nijverheidstraat","housenumber":"22","lat":51.432001,"lon":4.3292099},{"street":"Onderstal","housenumber":"22","lat":51.4247912,"lon":4.3205097},{"street":"Oostlaan","housenumber":"22","lat":51.4258706,"lon":4.3364311},{"street":"Ossendrechtseweg","housenumber":"22","lat":51.4213587,"lon":4.3226317},{"street":"Parmentierlaan","housenumber":"22","lat":51.4275973,"lon":4.3294373},{"street":"Past van Roesselstraat","housenumber":"22","lat":51.4209048,"lon":4.3316614},{"street":"Pr Hendrikstraat","housenumber":"22","lat":51.4251928,"lon":4.3290702},{"street":"Putseweg","housenumber":"22","lat":51.4203923,"lon":4.3270681},{"street":"Robert Kochstraat","housenumber":"22","lat":51.4270591,"lon":4.3246054},{"street":"Rubertstraat","housenumber":"22","lat":51.4197571,"lon":4.3303753},{"street":"Schapendreef","housenumber":"22","lat":51.4186853,"lon":4.3261877},{"street":"Semmelweissstraat","housenumber":"22","lat":51.4272475,"lon":4.3246943},{"street":"Smirnofflaan","housenumber":"22","lat":51.4272778,"lon":4.3281239},{"street":"Sondermanlaan","housenumber":"22","lat":51.4260011,"lon":4.3320395},{"street":"St Lucasplein","housenumber":"22","lat":51.4278315,"lon":4.3236034},{"street":"Steenstraat","housenumber":"22","lat":51.4387982,"lon":4.3118683},{"street":"Struikenlaan","housenumber":"22","lat":51.4323731,"lon":4.3132341},{"street":"Suijkerbuijkstraat","housenumber":"22","lat":51.422012,"lon":4.3306788},{"street":"Torontolaan","housenumber":"22","lat":51.4280132,"lon":4.3150418},{"street":"Trefpunt","housenumber":"22","lat":51.4220714,"lon":4.3277554},{"street":"Vogelven","housenumber":"22","lat":51.431489,"lon":4.3245409},{"street":"Wipstraat","housenumber":"22","lat":51.434912,"lon":4.3282693},{"street":"Wouwbaan","housenumber":"22","lat":51.4250661,"lon":4.3250183},{"street":"De Acacia","housenumber":"22","lat":51.4316258,"lon":4.3124186},{"street":"De Anjer","housenumber":"22","lat":51.4330341,"lon":4.3177047},{"street":"De Berk","housenumber":"22","lat":51.4306199,"lon":4.3150237},{"street":"De Eik","housenumber":"22","lat":51.4307328,"lon":4.3132501},{"street":"De Hazelaar","housenumber":"22","lat":51.4318846,"lon":4.3156986},{"street":"De Hortensia","housenumber":"22","lat":51.4336155,"lon":4.3154819},{"street":"De Jasmijn","housenumber":"22","lat":51.4313472,"lon":4.3139024},{"street":"De Narcis","housenumber":"22","lat":51.4323127,"lon":4.3172849},{"street":"De Papaver","housenumber":"22","lat":51.4310036,"lon":4.3156567},{"street":"De Roos","housenumber":"22","lat":51.4315176,"lon":4.3178212},{"street":"De Tulp","housenumber":"22","lat":51.4292985,"lon":4.3172434},{"street":"De Vuurdoorn","housenumber":"22","lat":51.4328865,"lon":4.3138021},{"street":"de Wildert","housenumber":"22","lat":51.4310653,"lon":4.3261331},{"street":"De Wilg","housenumber":"22","lat":51.4296835,"lon":4.3128495},{"street":"De Zonnebloem","housenumber":"22","lat":51.4302285,"lon":4.3138953},{"street":"dokter van de Karplein","housenumber":"22","lat":51.4305907,"lon":4.3226911},{"street":"in d' Hoef","housenumber":"22","lat":51.4294786,"lon":4.3219043},{"street":"Ouwe Raedthuysplein","housenumber":"23","lat":51.4255638,"lon":4.3223339},{"street":"Parmentierlaan","housenumber":"23","lat":51.4277959,"lon":4.3296425},{"street":"Past van Roesselstraat","housenumber":"23","lat":51.4218549,"lon":4.3314962},{"street":"Plesmanlaan","housenumber":"23","lat":51.4272927,"lon":4.3296686},{"street":"Pr Bernhardstraat","housenumber":"23","lat":51.4266959,"lon":4.3243332},{"street":"Pr Hendrikstraat","housenumber":"23","lat":51.425171,"lon":4.3286537},{"street":"Putseweg","housenumber":"23","lat":51.421357,"lon":4.3263987},{"street":"Raadhuisstraat","housenumber":"23","lat":51.4275696,"lon":4.3207771},{"street":"Rubertstraat","housenumber":"23","lat":51.4199214,"lon":4.3306591},{"street":"Schapendreef","housenumber":"23","lat":51.4182398,"lon":4.3266294},{"street":"Smirnofflaan","housenumber":"23","lat":51.4273066,"lon":4.3292225},{"street":"Sondermanlaan","housenumber":"23","lat":51.4265161,"lon":4.3325585},{"street":"St Lucasplein","housenumber":"23","lat":51.4281568,"lon":4.3228756},{"street":"Suijkerbuijkstraat","housenumber":"23","lat":51.4219721,"lon":4.3310076},{"street":"Trefpunt","housenumber":"23","lat":51.4223246,"lon":4.3277042},{"street":"Zandfort","housenumber":"23","lat":51.4349917,"lon":4.3222126},{"street":"De Acacia","housenumber":"23","lat":51.4316253,"lon":4.3123683},{"street":"De Anjer","housenumber":"23","lat":51.4331261,"lon":4.3177756},{"street":"De Berk","housenumber":"23","lat":51.4307074,"lon":4.3147628},{"street":"De Eik","housenumber":"23","lat":51.4306312,"lon":4.3132188},{"street":"De Hazelaar","housenumber":"23","lat":51.431901,"lon":4.3155256},{"street":"De Jasmijn","housenumber":"23","lat":51.4314016,"lon":4.3139014},{"street":"De Narcis","housenumber":"23","lat":51.432321,"lon":4.3172128},{"street":"De Papaver","housenumber":"23","lat":51.431059,"lon":4.3156556},{"street":"De Roos","housenumber":"23","lat":51.4314726,"lon":4.3178223},{"street":"De Tulp","housenumber":"23","lat":51.4291517,"lon":4.3173425},{"street":"De Vuurdoorn","housenumber":"23","lat":51.4331717,"lon":4.3129085},{"street":"De Wilg","housenumber":"23","lat":51.4297168,"lon":4.3128998},{"street":"De Zonnebloem","housenumber":"23","lat":51.4302292,"lon":4.3139872},{"street":"dokter van de Karplein","housenumber":"23","lat":51.4305815,"lon":4.3231619},{"street":"in d' Hoef","housenumber":"23","lat":51.4292069,"lon":4.3216581},{"street":"op den Duyn","housenumber":"23","lat":51.429785,"lon":4.3202956},{"street":"van Houtenstraat","housenumber":"23","lat":51.4197766,"lon":4.3258147},{"street":"van der Dilftstraat","housenumber":"23","lat":51.4223921,"lon":4.3292262},{"street":"KLM laan","housenumber":"230","lat":51.4250292,"lon":4.3298265},{"street":"KLM laan","housenumber":"232","lat":51.4250086,"lon":4.3298567},{"street":"KLM laan","housenumber":"234","lat":51.4249879,"lon":4.329887},{"street":"KLM laan","housenumber":"236","lat":51.4249672,"lon":4.3299174},{"street":"KLM laan","housenumber":"238","lat":51.4249466,"lon":4.3299477},{"street":"Pr Hendrikstraat","housenumber":"23a","lat":51.425248,"lon":4.328525},{"street":"Aalbersestraat","housenumber":"24","lat":51.4209497,"lon":4.3240817},{"street":"Antwerpsestraatweg","housenumber":"24","lat":51.4295702,"lon":4.3191612},{"street":"Bijentiende","housenumber":"24","lat":51.4302868,"lon":4.3260935},{"street":"Blériotlaan","housenumber":"24","lat":51.4269424,"lon":4.3336461},{"street":"Burg Moorsstraat","housenumber":"24","lat":51.4217293,"lon":4.3301138},{"street":"Buys Ballotstraat","housenumber":"24","lat":51.4238191,"lon":4.3333803},{"street":"Canadalaan","housenumber":"24","lat":51.4276993,"lon":4.3143159},{"street":"Couwenberghstraat","housenumber":"24","lat":51.4190079,"lon":4.3330077},{"street":"Dennenlaan","housenumber":"24","lat":51.4186328,"lon":4.3293231},{"street":"Duinhoefplein","housenumber":"24","lat":51.4294277,"lon":4.3242558},{"street":"Duinstraat","housenumber":"24","lat":51.4286669,"lon":4.3226192},{"street":"Fokkerlaan","housenumber":"24","lat":51.4280404,"lon":4.3301342},{"street":"Hugo de Grootstraat","housenumber":"24","lat":51.4256175,"lon":4.3372709},{"street":"Huijbergseweg","housenumber":"24","lat":51.4227203,"lon":4.3270428},{"street":"Huijgensstraat","housenumber":"24","lat":51.4246953,"lon":4.3346895},{"street":"Jef Adriaansenstraat","housenumber":"24","lat":51.4211146,"lon":4.3290046},{"street":"KLM laan","housenumber":"24","lat":51.4262937,"lon":4.3289161},{"street":"Kamerlingh Onnesstraat","housenumber":"24","lat":51.4257138,"lon":4.3337549},{"street":"Keesomstraat","housenumber":"24","lat":51.4246678,"lon":4.3336405},{"street":"Kloosterstraat","housenumber":"24","lat":51.4248227,"lon":4.326922},{"street":"Laan Olieslagers","housenumber":"24","lat":51.4264699,"lon":4.3309888},{"street":"Lammertiende","housenumber":"24","lat":51.429704,"lon":4.3266222},{"street":"Lindberghlaan","housenumber":"24","lat":51.4255374,"lon":4.3313917},{"street":"Meulenblock","housenumber":"24","lat":51.4223727,"lon":4.3265313},{"street":"Mgr Ariensstraat","housenumber":"24","lat":51.4214425,"lon":4.3279215},{"street":"Mgr Nolensstraat","housenumber":"24","lat":51.4185691,"lon":4.3252285},{"street":"Minckelersweg","housenumber":"24","lat":51.4250581,"lon":4.33155},{"street":"Molenstraat","housenumber":"24","lat":51.4218136,"lon":4.328171},{"street":"Nieuweweg","housenumber":"24","lat":51.4287793,"lon":4.3162461},{"street":"Nijverheidstraat","housenumber":"24","lat":51.4319841,"lon":4.3291363},{"street":"Onderstal","housenumber":"24","lat":51.4247904,"lon":4.3204235},{"street":"Oostlaan","housenumber":"24","lat":51.4257627,"lon":4.3364335},{"street":"Ossendrechtseweg","housenumber":"24","lat":51.4212298,"lon":4.3226046},{"street":"Parmentierlaan","housenumber":"24","lat":51.4275667,"lon":4.3295113},{"street":"Past van Roesselstraat","housenumber":"24","lat":51.4208531,"lon":4.3316404},{"street":"Plesmanlaan","housenumber":"24","lat":51.4274706,"lon":4.3314475},{"street":"Pr Hendrikstraat","housenumber":"24","lat":51.4252992,"lon":4.3289096},{"street":"Putseweg","housenumber":"24","lat":51.4203217,"lon":4.3272136},{"street":"Robert Kochstraat","housenumber":"24","lat":51.4270619,"lon":4.3246507},{"street":"Rubertstraat","housenumber":"24","lat":51.4197218,"lon":4.330448},{"street":"Schapendreef","housenumber":"24","lat":51.4185769,"lon":4.3261327},{"street":"Semmelweissstraat","housenumber":"24","lat":51.4272484,"lon":4.3247949},{"street":"Smirnofflaan","housenumber":"24","lat":51.4272631,"lon":4.3281599},{"street":"St Lucasplein","housenumber":"24","lat":51.4277435,"lon":4.3236155},{"street":"Steenstraat","housenumber":"24","lat":51.4376187,"lon":4.311666},{"street":"Struikenlaan","housenumber":"24","lat":51.4323621,"lon":4.3131509},{"street":"Suijkerbuijkstraat","housenumber":"24","lat":51.4219565,"lon":4.3306767},{"street":"Torontolaan","housenumber":"24","lat":51.4280376,"lon":4.3147681},{"street":"Wouwbaan","housenumber":"24","lat":51.4251036,"lon":4.32519},{"street":"Zandfort","housenumber":"24","lat":51.4346228,"lon":4.322178},{"street":"De Acacia","housenumber":"24","lat":51.431687,"lon":4.3124713},{"street":"De Anjer","housenumber":"24","lat":51.4331744,"lon":4.3177745},{"street":"De Berk","housenumber":"24","lat":51.4307068,"lon":4.3146909},{"street":"De Eik","housenumber":"24","lat":51.4305859,"lon":4.3132208},{"street":"De Hazelaar","housenumber":"24","lat":51.4319004,"lon":4.3154538},{"street":"De Hortensia","housenumber":"24","lat":51.4336421,"lon":4.315407},{"street":"De Jasmijn","housenumber":"24","lat":51.4314555,"lon":4.3139005},{"street":"De Narcis","housenumber":"24","lat":51.4323202,"lon":4.3171265},{"street":"De Papaver","housenumber":"24","lat":51.4311138,"lon":4.3156545},{"street":"De Roos","housenumber":"24","lat":51.4314187,"lon":4.3178236},{"street":"De Tulp","housenumber":"24","lat":51.4291556,"lon":4.3172638},{"street":"De Vuurdoorn","housenumber":"24","lat":51.4329083,"lon":4.3138725},{"street":"de Wildert","housenumber":"24","lat":51.4311256,"lon":4.3263161},{"street":"De Wilg","housenumber":"24","lat":51.4297501,"lon":4.3129501},{"street":"De Zonnebloem","housenumber":"24","lat":51.4302297,"lon":4.3140694},{"street":"dokter van de Karplein","housenumber":"24","lat":51.4305627,"lon":4.3232344},{"street":"in d' Hoef","housenumber":"24","lat":51.4294719,"lon":4.3218244},{"street":"op den Duyn","housenumber":"24","lat":51.4304908,"lon":4.3206439},{"street":"Van der Meulenplein","housenumber":"24","lat":51.4219137,"lon":4.3244034},{"street":"KLM laan","housenumber":"240","lat":51.4249258,"lon":4.3299783},{"street":"Wouwbaan","housenumber":"245","lat":51.4352991,"lon":4.3352932},{"street":"Duinstraat","housenumber":"24a","lat":51.4286867,"lon":4.32282},{"street":"KLM laan","housenumber":"24a","lat":51.4262723,"lon":4.3288791},{"street":"Onderstal","housenumber":"24a","lat":51.4248516,"lon":4.3202351},{"street":"Duinstraat","housenumber":"24b","lat":51.4286875,"lon":4.3229063},{"street":"Onderstal","housenumber":"24b","lat":51.4248507,"lon":4.3201345},{"street":"Onderstal","housenumber":"24d","lat":51.4249922,"lon":4.32015},{"street":"Onderstal","housenumber":"24e","lat":51.4250175,"lon":4.3201364},{"street":"Bijentiende","housenumber":"25","lat":51.4305788,"lon":4.3269591},{"street":"Blériotlaan","housenumber":"25","lat":51.4272638,"lon":4.3344342},{"street":"Burg Moorsstraat","housenumber":"25","lat":51.4213884,"lon":4.3298487},{"street":"Canadalaan","housenumber":"25","lat":51.4266113,"lon":4.3141114},{"street":"Dennenlaan","housenumber":"25","lat":51.4173218,"lon":4.3324589},{"street":"Doelstraat","housenumber":"25","lat":51.4330269,"lon":4.3118606},{"street":"Duinstraat","housenumber":"25","lat":51.429134,"lon":4.3245496},{"street":"Edward Jennerstraat","housenumber":"25","lat":51.4282558,"lon":4.3248577},{"street":"Fokkerlaan","housenumber":"25","lat":51.4282068,"lon":4.330352},{"street":"Gemeynte","housenumber":"25","lat":51.4302092,"lon":4.3288178},{"street":"Geyssendorfferlaan","housenumber":"25","lat":51.4266054,"lon":4.3331623},{"street":"Gravesandestraat","housenumber":"25","lat":51.4247771,"lon":4.3330741},{"street":"Hugo de Grootstraat","housenumber":"25","lat":51.4253609,"lon":4.3369568},{"street":"Huijgensstraat","housenumber":"25","lat":51.4260383,"lon":4.3350899},{"street":"KLM laan","housenumber":"25","lat":51.4268226,"lon":4.3283853},{"street":"Kamerlingh Onnesstraat","housenumber":"25","lat":51.4252415,"lon":4.3345719},{"street":"Lammertiende","housenumber":"25","lat":51.4299392,"lon":4.3261867},{"street":"Maststraat","housenumber":"25","lat":51.4201942,"lon":4.3309978},{"street":"Meulenblock","housenumber":"25","lat":51.4223194,"lon":4.3264873},{"street":"Mgr Ariensstraat","housenumber":"25","lat":51.4221086,"lon":4.3269995},{"street":"Mgr Frenckenstraat","housenumber":"25","lat":51.4212697,"lon":4.327666},{"street":"Mgr Nolensstraat","housenumber":"25","lat":51.4180448,"lon":4.3249518},{"street":"Mgr Poelsstraat","housenumber":"25","lat":51.4194581,"lon":4.3241857},{"street":"Molenstraat","housenumber":"25","lat":51.4215425,"lon":4.3291415},{"street":"Nieuweweg","housenumber":"25","lat":51.4284082,"lon":4.3169451},{"street":"Norbartstraat","housenumber":"25","lat":51.4177333,"lon":4.3223425},{"street":"Onderstal","housenumber":"25","lat":51.4261377,"lon":4.3124689},{"street":"Oostlaan","housenumber":"25","lat":51.4270029,"lon":4.3359925},{"street":"Ossendrechtseweg","housenumber":"25","lat":51.4210914,"lon":4.3228967},{"street":"Ouwe Raedthuysplein","housenumber":"25","lat":51.425625,"lon":4.3222795},{"street":"Parmentierlaan","housenumber":"25","lat":51.4277519,"lon":4.3297442},{"street":"Past van Roesselstraat","housenumber":"25","lat":51.4218059,"lon":4.3314963},{"street":"Pasteurstraat","housenumber":"25","lat":51.4279091,"lon":4.3213427},{"street":"Philomenahof","housenumber":"25","lat":51.4241603,"lon":4.326269},{"street":"Plesmanlaan","housenumber":"25","lat":51.4273382,"lon":4.329725},{"street":"Pr Bernhardstraat","housenumber":"25","lat":51.4266967,"lon":4.3244195},{"street":"Pr Hendrikstraat","housenumber":"25","lat":51.4253402,"lon":4.3284773},{"street":"Putseweg","housenumber":"25","lat":51.4212776,"lon":4.3265587},{"street":"Raadhuisstraat","housenumber":"25","lat":51.4275266,"lon":4.3208305},{"street":"Rubertstraat","housenumber":"25","lat":51.4198506,"lon":4.3307757},{"street":"Smirnofflaan","housenumber":"25","lat":51.4272713,"lon":4.3292952},{"street":"Sondermanlaan","housenumber":"25","lat":51.426482,"lon":4.3324919},{"street":"St Lucasplein","housenumber":"25","lat":51.4281666,"lon":4.3229616},{"street":"Suijkerbuijkstraat","housenumber":"25","lat":51.4218971,"lon":4.3310032},{"street":"Trefpunt","housenumber":"25","lat":51.4222974,"lon":4.3277147},{"street":"Verlengde Duinstraat","housenumber":"25","lat":51.4288888,"lon":4.3312134},{"street":"Zandfort","housenumber":"25","lat":51.4350848,"lon":4.32257},{"street":"De Acacia","housenumber":"25","lat":51.4317182,"lon":4.3125192},{"street":"De Anjer","housenumber":"25","lat":51.4332231,"lon":4.3177368},{"street":"De Berk","housenumber":"25","lat":51.430706,"lon":4.3146046},{"street":"De Eik","housenumber":"25","lat":51.4305405,"lon":4.3132228},{"street":"De Hazelaar","housenumber":"25","lat":51.4319086,"lon":4.3153673},{"street":"De Jasmijn","housenumber":"25","lat":51.4315099,"lon":4.3138995},{"street":"De Narcis","housenumber":"25","lat":51.4323728,"lon":4.3169814},{"street":"De Papaver","housenumber":"25","lat":51.4311683,"lon":4.3156536},{"street":"De Roos","housenumber":"25","lat":51.4313832,"lon":4.3178675},{"street":"De Tulp","housenumber":"25","lat":51.4291415,"lon":4.317184},{"street":"De Vuurdoorn","housenumber":"25","lat":51.433181,"lon":4.3129851},{"street":"De Wilg","housenumber":"25","lat":51.4297833,"lon":4.3130005},{"street":"De Zonnebloem","housenumber":"25","lat":51.4302302,"lon":4.3141514},{"street":"dokter van de Karplein","housenumber":"25","lat":51.4305387,"lon":4.3233024},{"street":"in d' Hoef","housenumber":"25","lat":51.4294045,"lon":4.3212605},{"street":"op den Duyn","housenumber":"25","lat":51.429909,"lon":4.3202793},{"street":"van Houtenstraat","housenumber":"25","lat":51.419685,"lon":4.3256572},{"street":"van der Dilftstraat","housenumber":"25","lat":51.4223321,"lon":4.3292239},{"street":"Wouwbaan","housenumber":"250","lat":51.4354807,"lon":4.3365388},{"street":"Wouwbaan","housenumber":"252","lat":51.4357471,"lon":4.3368498},{"street":"Zandfort","housenumber":"25b","lat":51.4350361,"lon":4.3231464},{"street":"Aalbersestraat","housenumber":"26","lat":51.4213705,"lon":4.3241633},{"street":"Bijentiende","housenumber":"26","lat":51.4302936,"lon":4.3261747},{"street":"Blériotlaan","housenumber":"26","lat":51.4268885,"lon":4.3337165},{"street":"Burg Moorsstraat","housenumber":"26","lat":51.4216037,"lon":4.3301089},{"street":"Buys Ballotstraat","housenumber":"26","lat":51.4238161,"lon":4.3332928},{"street":"Canadalaan","housenumber":"26","lat":51.428376,"lon":4.314415},{"street":"Couwenberghstraat","housenumber":"26","lat":51.4190483,"lon":4.3330592},{"street":"Duinstraat","housenumber":"26","lat":51.428698,"lon":4.3230786},{"street":"Fokkerlaan","housenumber":"26","lat":51.4280097,"lon":4.330208},{"street":"Hugo de Grootstraat","housenumber":"26","lat":51.4254645,"lon":4.33726},{"street":"Huijbergseweg","housenumber":"26","lat":51.4227582,"lon":4.3272576},{"street":"Huijgensstraat","housenumber":"26","lat":51.4246413,"lon":4.3346908},{"street":"Jef Adriaansenstraat","housenumber":"26","lat":51.421202,"lon":4.3291197},{"street":"KLM laan","housenumber":"26","lat":51.4262594,"lon":4.3289762},{"street":"Kamerlingh Onnesstraat","housenumber":"26","lat":51.4256782,"lon":4.3336847},{"street":"Keesomstraat","housenumber":"26","lat":51.4246048,"lon":4.3336276},{"street":"Kloosterstraat","housenumber":"26","lat":51.4249475,"lon":4.3268041},{"street":"Laan Olieslagers","housenumber":"26","lat":51.4265042,"lon":4.3310558},{"street":"Meulenblock","housenumber":"26","lat":51.4223303,"lon":4.3264202},{"street":"Mgr Nolensstraat","housenumber":"26","lat":51.4184636,"lon":4.3251836},{"street":"Ouwe Raedthuysplein","housenumber":"27","lat":51.4256829,"lon":4.322228},{"street":"Parmentierlaan","housenumber":"27","lat":51.4277255,"lon":4.3298167},{"street":"Past van Roesselstraat","housenumber":"27","lat":51.4217559,"lon":4.3314967},{"street":"Philomenahof","housenumber":"27","lat":51.4242467,"lon":4.3260052},{"street":"Plesmanlaan","housenumber":"27","lat":51.4273828,"lon":4.329776},{"street":"Pr Bernhardstraat","housenumber":"27","lat":51.4267066,"lon":4.3245199},{"street":"Pr Hendrikstraat","housenumber":"27","lat":51.4254017,"lon":4.3283177},{"street":"Putseweg","housenumber":"27","lat":51.4211984,"lon":4.3267475},{"street":"Raadhuisstraat","housenumber":"27","lat":51.4274554,"lon":4.3208788},{"street":"Rubertstraat","housenumber":"27","lat":51.4198063,"lon":4.3308486},{"street":"Sondermanlaan","housenumber":"27","lat":51.4264479,"lon":4.3324254},{"street":"St Lucasplein","housenumber":"27","lat":51.4281765,"lon":4.323062},{"street":"Suijkerbuijkstraat","housenumber":"27","lat":51.4218406,"lon":4.3310009},{"street":"Trefpunt","housenumber":"27","lat":51.4222703,"lon":4.3277253},{"street":"Verlengde Duinstraat","housenumber":"27","lat":51.4288453,"lon":4.3313726},{"street":"Wouwbaan","housenumber":"27","lat":51.4255195,"lon":4.3252198},{"street":"Zandfort","housenumber":"27","lat":51.4351512,"lon":4.3239347},{"street":"De Acacia","housenumber":"27","lat":51.4317851,"lon":4.3126221},{"street":"De Anjer","housenumber":"27","lat":51.433321,"lon":4.3177343},{"street":"De Berk","housenumber":"27","lat":51.4307045,"lon":4.3144465},{"street":"De Eik","housenumber":"27","lat":51.4304499,"lon":4.3132268},{"street":"De Hazelaar","housenumber":"27","lat":51.4321063,"lon":4.3153626},{"street":"De Jasmijn","housenumber":"27","lat":51.4316591,"lon":4.3138676},{"street":"De Narcis","housenumber":"27","lat":51.4323713,"lon":4.3168089},{"street":"De Papaver","housenumber":"27","lat":51.4312789,"lon":4.3156519},{"street":"De Roos","housenumber":"27","lat":51.4312753,"lon":4.3178701},{"street":"De Tulp","housenumber":"27","lat":51.429149,"lon":4.3170303},{"street":"De Vuurdoorn","housenumber":"27","lat":51.4332044,"lon":4.3132168},{"street":"De Wilg","housenumber":"27","lat":51.4297749,"lon":4.3120612},{"street":"De Zonnebloem","housenumber":"27","lat":51.4302314,"lon":4.3143138},{"street":"dokter van de Karplein","housenumber":"27","lat":51.4304271,"lon":4.3234941},{"street":"in d' Hoef","housenumber":"27","lat":51.4295298,"lon":4.3212337},{"street":"op den Duyn","housenumber":"27","lat":51.4300683,"lon":4.3202379},{"street":"van Houtenstraat","housenumber":"27","lat":51.4196656,"lon":4.3254031},{"street":"van der Dilftstraat","housenumber":"27","lat":51.422272,"lon":4.3292215},{"street":"Burg Moorsstraat","housenumber":"27a","lat":51.4211803,"lon":4.3298329},{"street":"Raadhuisstraat","housenumber":"27a","lat":51.4274915,"lon":4.3209961},{"street":"Aalbersestraat","housenumber":"28","lat":51.4213101,"lon":4.3241588},{"street":"Antwerpsestraatweg","housenumber":"28","lat":51.4297582,"lon":4.3190849},{"street":"Bijentiende","housenumber":"28","lat":51.4303004,"lon":4.326256},{"street":"Blériotlaan","housenumber":"28","lat":51.4268471,"lon":4.3337706},{"street":"Burg Moorsstraat","housenumber":"28","lat":51.4215311,"lon":4.3301061},{"street":"Buys Ballotstraat","housenumber":"28","lat":51.4238132,"lon":4.3332068},{"street":"Canadalaan","housenumber":"28","lat":51.4285292,"lon":4.3144545},{"street":"Couwenberghstraat","housenumber":"28","lat":51.4191598,"lon":4.3331795},{"street":"De Zonnebloem","housenumber":"26","lat":51.4302307,"lon":4.3142332},{"street":"dokter van de Karplein","housenumber":"26","lat":51.4305096,"lon":4.3233655},{"street":"in d' Hoef","housenumber":"26","lat":51.4294653,"lon":4.3217447},{"street":"op den Duyn","housenumber":"26","lat":51.4306033,"lon":4.3206931},{"street":"Van der Meulenplein","housenumber":"26","lat":51.4218825,"lon":4.3244564},{"street":"KLM laan","housenumber":"26a","lat":51.4262332,"lon":4.3289373},{"street":"Kamerlingh Onnesstraat","housenumber":"26a","lat":51.4257395,"lon":4.3334888},{"street":"Onderstal","housenumber":"26a","lat":51.4252679,"lon":4.317594},{"street":"Ossendrechtseweg","housenumber":"26a","lat":51.4210408,"lon":4.322465},{"street":"De Hazelaar","housenumber":"26a","lat":51.4318771,"lon":4.3151836},{"street":"Kamerlingh Onnesstraat","housenumber":"26b","lat":51.4257225,"lon":4.3334555},{"street":"Ossendrechtseweg","housenumber":"26b","lat":51.4209574,"lon":4.322436},{"street":"Kamerlingh Onnesstraat","housenumber":"26c","lat":51.4257055,"lon":4.3334221},{"street":"Onderstal","housenumber":"26c","lat":51.4253039,"lon":4.3166154},{"street":"Ossendrechtseweg","housenumber":"26c","lat":51.4209789,"lon":4.3220759},{"street":"Kamerlingh Onnesstraat","housenumber":"26d","lat":51.4256885,"lon":4.3333886},{"street":"Kamerlingh Onnesstraat","housenumber":"26e","lat":51.4256715,"lon":4.3333551},{"street":"Kamerlingh Onnesstraat","housenumber":"26f","lat":51.4256545,"lon":4.3333217},{"street":"Binnenweg","housenumber":"27","lat":51.4257071,"lon":4.3243419},{"street":"Blériotlaan","housenumber":"27","lat":51.427246,"lon":4.3343995},{"street":"Burg Moorsstraat","housenumber":"27","lat":51.4211902,"lon":4.3298101},{"street":"Canadalaan","housenumber":"27","lat":51.4267716,"lon":4.3139494},{"street":"Dennenlaan","housenumber":"27","lat":51.4173002,"lon":4.3320568},{"street":"Doelstraat","housenumber":"27","lat":51.4327921,"lon":4.3117367},{"street":"Duinstraat","housenumber":"27","lat":51.4291439,"lon":4.3246501},{"street":"Edward Jennerstraat","housenumber":"27","lat":51.4282656,"lon":4.3249437},{"street":"Fokkerlaan","housenumber":"27","lat":51.4281717,"lon":4.3304391},{"street":"Gemeynte","housenumber":"27","lat":51.4301493,"lon":4.3286109},{"street":"Geyssendorfferlaan","housenumber":"27","lat":51.4265638,"lon":4.3332172},{"street":"Gravesandestraat","housenumber":"27","lat":51.4247233,"lon":4.3330783},{"street":"Hugo de Grootstraat","housenumber":"27","lat":51.4252999,"lon":4.336956},{"street":"Huijgensstraat","housenumber":"27","lat":51.4260392,"lon":4.3351905},{"street":"KLM laan","housenumber":"27","lat":51.426785,"lon":4.3284578},{"street":"Kamerlingh Onnesstraat","housenumber":"27","lat":51.425244,"lon":4.3346513},{"street":"Lammertiende","housenumber":"27","lat":51.429946,"lon":4.3262682},{"street":"Maststraat","housenumber":"27","lat":51.4201588,"lon":4.3310561},{"street":"Meulenblock","housenumber":"27","lat":51.4223217,"lon":4.3263374},{"street":"Mgr Ariensstraat","housenumber":"27","lat":51.4221285,"lon":4.3272147},{"street":"Mgr Nolensstraat","housenumber":"27","lat":51.4180256,"lon":4.3248229},{"street":"Mgr Poelsstraat","housenumber":"27","lat":51.419413,"lon":4.3241723},{"street":"Minckelersweg","housenumber":"27","lat":51.4255909,"lon":4.3319128},{"street":"Molenstraat","housenumber":"27","lat":51.4215089,"lon":4.3292087},{"street":"Nieuweweg","housenumber":"27","lat":51.4284072,"lon":4.3168301},{"street":"Norbartstraat","housenumber":"27","lat":51.4177783,"lon":4.3223415},{"street":"Oostlaan","housenumber":"27","lat":51.4271254,"lon":4.3356771},{"street":"Ossendrechtseweg","housenumber":"27","lat":51.4210284,"lon":4.3228838},{"street":"De Narcis","housenumber":"28","lat":51.4323705,"lon":4.3167226},{"street":"De Papaver","housenumber":"28","lat":51.4313751,"lon":4.3160142},{"street":"De Roos","housenumber":"28","lat":51.4312214,"lon":4.3178713},{"street":"De Tulp","housenumber":"28","lat":51.4291528,"lon":4.3169542},{"street":"de Wildert","housenumber":"28","lat":51.431246,"lon":4.3266822},{"street":"De Wilg","housenumber":"28","lat":51.4297762,"lon":4.3121345},{"street":"De Zonnebloem","housenumber":"28","lat":51.4302319,"lon":4.3143966},{"street":"dokter van de Karplein","housenumber":"28","lat":51.4303869,"lon":4.3235391},{"street":"in d' Hoef","housenumber":"28","lat":51.4294583,"lon":4.321662},{"street":"op den Duyn","housenumber":"28","lat":51.4306561,"lon":4.3207218},{"street":"Van der Meulenplein","housenumber":"28","lat":51.4218514,"lon":4.3245094},{"street":"KLM laan","housenumber":"28a","lat":51.426194,"lon":4.3289954},{"street":"Kamerlingh Onnesstraat","housenumber":"28a","lat":51.4256374,"lon":4.3332882},{"street":"Kloosterstraat","housenumber":"28a","lat":51.4251879,"lon":4.326554},{"street":"Nijverheidstraat","housenumber":"28a","lat":51.4315442,"lon":4.3298841},{"street":"Pr Hendrikstraat","housenumber":"28a","lat":51.4256188,"lon":4.3284708},{"street":"Dennenlaan","housenumber":"28","lat":51.4185267,"lon":4.3285205},{"street":"Fokkerlaan","housenumber":"28","lat":51.427979,"lon":4.3302818},{"street":"Hugo de Grootstraat","housenumber":"28","lat":51.4253118,"lon":4.3372635},{"street":"Huijbergseweg","housenumber":"28","lat":51.4227874,"lon":4.3275013},{"street":"Huijgensstraat","housenumber":"28","lat":51.4245786,"lon":4.3347066},{"street":"Jef Adriaansenstraat","housenumber":"28","lat":51.4212384,"lon":4.3291764},{"street":"KLM laan","housenumber":"28","lat":51.4262231,"lon":4.3290376},{"street":"Kamerlingh Onnesstraat","housenumber":"28","lat":51.4255121,"lon":4.3335635},{"street":"Keesomstraat","housenumber":"28","lat":51.424542,"lon":4.3336434},{"street":"Kloosterstraat","housenumber":"28","lat":51.4250811,"lon":4.3266715},{"street":"Laan Olieslagers","housenumber":"28","lat":51.4265379,"lon":4.3311217},{"street":"Maststraat","housenumber":"28","lat":51.4206191,"lon":4.3308292},{"street":"Meulenblock","housenumber":"28","lat":51.422313,"lon":4.3262542},{"street":"Mgr Nolensstraat","housenumber":"28","lat":51.4184125,"lon":4.3251617},{"street":"Minckelersweg","housenumber":"28","lat":51.4251266,"lon":4.3316887},{"street":"Nieuweweg","housenumber":"28","lat":51.4287858,"lon":4.3159728},{"street":"Nijverheidstraat","housenumber":"28","lat":51.4315323,"lon":4.3297314},{"street":"Onderstal","housenumber":"28","lat":51.425458,"lon":4.3157778},{"street":"Oostlaan","housenumber":"28","lat":51.4256639,"lon":4.3364358},{"street":"Past van Roesselstraat","housenumber":"28","lat":51.4206528,"lon":4.3315694},{"street":"Plesmanlaan","housenumber":"28","lat":51.4276165,"lon":4.3316742},{"street":"Pr Bernhardstraat","housenumber":"28","lat":51.4264898,"lon":4.3244099},{"street":"Pr Hendrikstraat","housenumber":"28","lat":51.425521,"lon":4.3285881},{"street":"Putseweg","housenumber":"28","lat":51.4201275,"lon":4.3276063},{"street":"Robert Kochstraat","housenumber":"28","lat":51.4270676,"lon":4.3247413},{"street":"Rubertstraat","housenumber":"28","lat":51.4196053,"lon":4.3306397},{"street":"Schapendreef","housenumber":"28","lat":51.4184055,"lon":4.3260648},{"street":"Semmelweissstraat","housenumber":"28","lat":51.4272501,"lon":4.3249818},{"street":"Smirnofflaan","housenumber":"28","lat":51.4272336,"lon":4.3282319},{"street":"St Lucasplein","housenumber":"28","lat":51.427622,"lon":4.3236351},{"street":"Steenstraat","housenumber":"28","lat":51.4367525,"lon":4.3103488},{"street":"Struikenlaan","housenumber":"28","lat":51.4323663,"lon":4.3129063},{"street":"Suijkerbuijkstraat","housenumber":"28","lat":51.4218456,"lon":4.3306724},{"street":"Vogelven","housenumber":"28","lat":51.4316255,"lon":4.3250267},{"street":"Wouwbaan","housenumber":"28","lat":51.4253124,"lon":4.3254152},{"street":"Zandfort","housenumber":"28","lat":51.4346633,"lon":4.3226805},{"street":"De Acacia","housenumber":"28","lat":51.4320916,"lon":4.3122647},{"street":"De Anjer","housenumber":"28","lat":51.4333692,"lon":4.317733},{"street":"De Berk","housenumber":"28","lat":51.4307037,"lon":4.3143602},{"street":"De Eik","housenumber":"28","lat":51.430372,"lon":4.31323},{"street":"De Hazelaar","housenumber":"28","lat":51.4321512,"lon":4.3153616},{"street":"De Hortensia","housenumber":"28","lat":51.4336504,"lon":4.3151393},{"street":"De Jasmijn","housenumber":"28","lat":51.4317103,"lon":4.3138669},{"street":"De Papaver","housenumber":"28a","lat":51.4313223,"lon":4.3159897},{"street":"Kamerlingh Onnesstraat","housenumber":"28b","lat":51.4256204,"lon":4.3332548},{"street":"Pr Hendrikstraat","housenumber":"28b","lat":51.4256632,"lon":4.3284123},{"street":"De Papaver","housenumber":"28b","lat":51.4313224,"lon":4.316029},{"street":"Kamerlingh Onnesstraat","housenumber":"28c","lat":51.4256034,"lon":4.3332213},{"street":"De Papaver","housenumber":"28c","lat":51.4313226,"lon":4.3160683},{"street":"Kamerlingh Onnesstraat","housenumber":"28d","lat":51.4255864,"lon":4.3331879},{"street":"De Papaver","housenumber":"28d","lat":51.4313227,"lon":4.3161076},{"street":"Kamerlingh Onnesstraat","housenumber":"28e","lat":51.4255694,"lon":4.3331544},{"street":"Kamerlingh Onnesstraat","housenumber":"28f","lat":51.4255524,"lon":4.3331209},{"street":"Binnenweg","housenumber":"29","lat":51.4256446,"lon":4.3243865},{"street":"Blériotlaan","housenumber":"29","lat":51.4272283,"lon":4.3343648},{"street":"Burg Moorsstraat","housenumber":"29","lat":51.4209735,"lon":4.3297001},{"street":"Canadalaan","housenumber":"29","lat":51.427021,"lon":4.3136991},{"street":"Dennenlaan","housenumber":"29","lat":51.4169333,"lon":4.3315168},{"street":"Doelstraat","housenumber":"29","lat":51.4326118,"lon":4.3116835},{"street":"Duinstraat","housenumber":"29","lat":51.4291538,"lon":4.3247505},{"street":"Edward Jennerstraat","housenumber":"29","lat":51.4282664,"lon":4.32503},{"street":"Fokkerlaan","housenumber":"29","lat":51.4281454,"lon":4.3305116},{"street":"Gemeynte","housenumber":"29","lat":51.4301884,"lon":4.3283696},{"street":"Geyssendorfferlaan","housenumber":"29","lat":51.4265219,"lon":4.3332723},{"street":"Gravesandestraat","housenumber":"29","lat":51.4246686,"lon":4.3330826},{"street":"Huijgensstraat","housenumber":"29","lat":51.42604,"lon":4.3352768},{"street":"Lammertiende","housenumber":"29","lat":51.4299529,"lon":4.3263497},{"street":"Maststraat","housenumber":"29","lat":51.4200523,"lon":4.3312167},{"street":"Meulenblock","housenumber":"29","lat":51.422299,"lon":4.3261219},{"street":"Mgr Ariensstraat","housenumber":"29","lat":51.4220932,"lon":4.3272874},{"street":"Mgr Nolensstraat","housenumber":"29","lat":51.4178196,"lon":4.3248996},{"street":"Mgr Poelsstraat","housenumber":"29","lat":51.419377,"lon":4.3241588},{"street":"Minckelersweg","housenumber":"29","lat":51.4256787,"lon":4.3321073},{"street":"Molenstraat","housenumber":"29","lat":51.4214754,"lon":4.329276},{"street":"Nieuweweg","housenumber":"29","lat":51.428414,"lon":4.3165998},{"street":"Oostlaan","housenumber":"29","lat":51.4271647,"lon":4.3357729},{"street":"Ossendrechtseweg","housenumber":"29","lat":51.420911,"lon":4.322829},{"street":"Ouwe Raedthuysplein","housenumber":"29","lat":51.4257419,"lon":4.3221755},{"street":"Parmentierlaan","housenumber":"29","lat":51.4276904,"lon":4.3299038},{"street":"Past van Roesselstraat","housenumber":"29","lat":51.4217113,"lon":4.3314978},{"street":"Pasteurstraat","housenumber":"29","lat":51.4280534,"lon":4.3213968},{"street":"Philomenahof","housenumber":"29","lat":51.4240558,"lon":4.3264497},{"street":"Plesmanlaan","housenumber":"29","lat":51.4274288,"lon":4.3298092},{"street":"Pr Hendrikstraat","housenumber":"29","lat":51.4254814,"lon":4.3281864},{"street":"Raadhuisstraat","housenumber":"29","lat":51.427411,"lon":4.3209373},{"street":"Rubertstraat","housenumber":"29","lat":51.419762,"lon":4.3309215},{"street":"Sondermanlaan","housenumber":"29","lat":51.4264138,"lon":4.3323589},{"street":"St Lucasplein","housenumber":"29","lat":51.4281774,"lon":4.3231627},{"street":"Suijkerbuijkstraat","housenumber":"29","lat":51.421785,"lon":4.3309987},{"street":"Trefpunt","housenumber":"29","lat":51.4222431,"lon":4.3277358},{"street":"Zandfort","housenumber":"29","lat":51.4352521,"lon":4.3244226},{"street":"De Acacia","housenumber":"29","lat":51.432093,"lon":4.3123434},{"street":"De Anjer","housenumber":"29","lat":51.4334176,"lon":4.3177318},{"street":"De Berk","housenumber":"29","lat":51.4305294,"lon":4.313976},{"street":"De Eik","housenumber":"29","lat":51.4303504,"lon":4.3132666},{"street":"De Hazelaar","housenumber":"29","lat":51.4322051,"lon":4.3153603},{"street":"De Jasmijn","housenumber":"29","lat":51.4317615,"lon":4.3138662},{"street":"De Narcis","housenumber":"29","lat":51.4321548,"lon":4.317474},{"street":"De Papaver","housenumber":"29","lat":51.4314273,"lon":4.3160137},{"street":"De Roos","housenumber":"29","lat":51.4311852,"lon":4.3178434},{"street":"De Tulp","housenumber":"29","lat":51.4291747,"lon":4.3168784},{"street":"De Vuurdoorn","housenumber":"29","lat":51.4332104,"lon":4.3132944},{"street":"De Wilg","housenumber":"29","lat":51.4297775,"lon":4.3122077},{"street":"De Zonnebloem","housenumber":"29","lat":51.430224,"lon":4.3147349},{"street":"dokter van de Karplein","housenumber":"29","lat":51.4303438,"lon":4.3235758},{"street":"in d' Hoef","housenumber":"29","lat":51.4295823,"lon":4.3212224},{"street":"op den Duyn","housenumber":"29","lat":51.4302053,"lon":4.3202285},{"street":"van Houtenstraat","housenumber":"29","lat":51.4197532,"lon":4.3252265},{"street":"van der Dilftstraat","housenumber":"29","lat":51.422212,"lon":4.3292192},{"street":"Dennenlaan","housenumber":"29a","lat":51.4172391,"lon":4.3312938},{"street":"De Zonnebloem","housenumber":"29a","lat":51.4301873,"lon":4.3148463},{"street":"Dennenlaan","housenumber":"29b","lat":51.4167665,"lon":4.3313202},{"street":"Aalbersestraat","housenumber":"2a","lat":51.4213909,"lon":4.3236613},{"street":"Antwerpsestraatweg","housenumber":"2a","lat":51.4286374,"lon":4.3194081},{"street":"Binnenweg","housenumber":"2a","lat":51.4256896,"lon":4.3234077},{"street":"Huijgensstraat","housenumber":"2a","lat":51.4263531,"lon":4.3344802},{"street":"KLM laan","housenumber":"2a","lat":51.4268559,"lon":4.3271048},{"street":"Kloosterstraat","housenumber":"2a","lat":51.4234759,"lon":4.3277916},{"street":"Lammertiende","housenumber":"2a","lat":51.4295358,"lon":4.3251381},{"street":"Matthias Wolffstraat","housenumber":"2a","lat":51.4242991,"lon":4.3276675},{"street":"Parmentierlaan","housenumber":"2a","lat":51.428023,"lon":4.3284113},{"street":"Raadhuisstraat","housenumber":"2a","lat":51.4281681,"lon":4.319194},{"street":"Robert Kochstraat","housenumber":"2a","lat":51.4269901,"lon":4.324274},{"street":"Sportlaan","housenumber":"2a","lat":51.4206799,"lon":4.3345487},{"street":"St Lucasplein","housenumber":"2a","lat":51.4267983,"lon":4.3231141},{"street":"Suijkerbuijkstraat","housenumber":"2a","lat":51.422866,"lon":4.3307346},{"street":"Wouwbaan","housenumber":"2a","lat":51.4241977,"lon":4.3237922},{"street":"Zandfort","housenumber":"2a","lat":51.4340331,"lon":4.3199027},{"street":"Binnenweg","housenumber":"2b","lat":51.4256994,"lon":4.3234937},{"street":"Kloosterstraat","housenumber":"2b","lat":51.4235023,"lon":4.3277849},{"street":"Parmentierlaan","housenumber":"2b","lat":51.4279442,"lon":4.3286027},{"street":"Raadhuisstraat","housenumber":"2b","lat":51.428169,"lon":4.3192947},{"street":"St Lucasplein","housenumber":"2b","lat":51.4267951,"lon":4.3230723},{"street":"Suijkerbuijkstraat","housenumber":"2b","lat":51.4228648,"lon":4.3306907},{"street":"Wouwbaan","housenumber":"2b","lat":51.4242105,"lon":4.3238838},{"street":"Zandfort","housenumber":"2b","lat":51.4339889,"lon":4.3196467},{"street":"Binnenweg","housenumber":"2c","lat":51.4257093,"lon":4.3235941},{"street":"Kloosterstraat","housenumber":"2c","lat":51.4235288,"lon":4.3277783},{"street":"Raadhuisstraat","housenumber":"2c","lat":51.4281532,"lon":4.3195251},{"street":"St Lucasplein","housenumber":"2c","lat":51.426792,"lon":4.3230304},{"street":"Suijkerbuijkstraat","housenumber":"2c","lat":51.4228637,"lon":4.3306468},{"street":"Kloosterstraat","housenumber":"2d","lat":51.4235554,"lon":4.3277715},{"street":"St Lucasplein","housenumber":"2d","lat":51.4267888,"lon":4.3229886},{"street":"Suijkerbuijkstraat","housenumber":"2d","lat":51.4228625,"lon":4.3306029},{"street":"Kloosterstraat","housenumber":"2e","lat":51.4235802,"lon":4.3277653},{"street":"St Lucasplein","housenumber":"2e","lat":51.4267856,"lon":4.3229468},{"street":"Suijkerbuijkstraat","housenumber":"2e","lat":51.4228613,"lon":4.3305591},{"street":"St Lucasplein","housenumber":"2f","lat":51.4267824,"lon":4.3229049},{"street":"Suijkerbuijkstraat","housenumber":"2f","lat":51.4228601,"lon":4.3305152},{"street":"St Lucasplein","housenumber":"2h","lat":51.4267792,"lon":4.3228631},{"street":"Suijkerbuijkstraat","housenumber":"2h","lat":51.422859,"lon":4.3304713},{"street":"St Lucasplein","housenumber":"2j","lat":51.426776,"lon":4.3228212},{"street":"Suijkerbuijkstraat","housenumber":"2j","lat":51.4228578,"lon":4.3304274},{"street":"Suijkerbuijkstraat","housenumber":"2k","lat":51.4228566,"lon":4.3303835},{"street":"Suijkerbuijkstraat","housenumber":"2m","lat":51.4228554,"lon":4.3303396},{"street":"Suijkerbuijkstraat","housenumber":"2n","lat":51.4228543,"lon":4.3302957},{"street":"Aalbersestraat","housenumber":"3","lat":51.4216335,"lon":4.3237821},{"street":"Antwerpsestraatweg","housenumber":"3","lat":51.4288986,"lon":4.3184723},{"street":"Bijentiende","housenumber":"3","lat":51.4304254,"lon":4.3251336},{"street":"Binnenweg","housenumber":"3","lat":51.4257882,"lon":4.3233766},{"street":"Bloemenlaan","housenumber":"3","lat":51.4337532,"lon":4.3165463},{"street":"Blériotlaan","housenumber":"3","lat":51.427843,"lon":4.3328625},{"street":"Burg Moorsstraat","housenumber":"3","lat":51.4224184,"lon":4.3298609},{"street":"Buys Ballotstraat","housenumber":"3","lat":51.4241558,"lon":4.3336811},{"street":"Cameronlaan","housenumber":"3","lat":51.4264992,"lon":4.3175651},{"street":"Canadalaan","housenumber":"3","lat":51.4258573,"lon":4.3181553},{"street":"Couwenberghstraat","housenumber":"3","lat":51.4187045,"lon":4.3322687},{"street":"Doctor de Bruijnlaan","housenumber":"3","lat":51.4192601,"lon":4.3310913},{"street":"Duinhoefplein","housenumber":"3","lat":51.4293244,"lon":4.323939},{"street":"Duinstraat","housenumber":"3","lat":51.4287204,"lon":4.3206047},{"street":"Duintjesplein","housenumber":"3","lat":51.4213852,"lon":4.3285116},{"street":"Edward Jennerstraat","housenumber":"3","lat":51.4281989,"lon":4.3235504},{"street":"Flemingstraat","housenumber":"3","lat":51.4274113,"lon":4.3219583},{"street":"Fokkerlaan","housenumber":"3","lat":51.4285938,"lon":4.3294083},{"street":"Garry Horselaan","housenumber":"3","lat":51.4274097,"lon":4.3129566},{"street":"Gemeynte","housenumber":"3","lat":51.4312178,"lon":4.3279793},{"street":"Geyssendorfferlaan","housenumber":"3","lat":51.4270705,"lon":4.3325493},{"street":"Gravesandestraat","housenumber":"3","lat":51.4255765,"lon":4.332728},{"street":"Hamiltonlaan","housenumber":"3","lat":51.4266464,"lon":4.3159799},{"street":"Heideduinstede","housenumber":"3","lat":51.4289532,"lon":4.3266116},{"street":"Heistraat","housenumber":"3","lat":51.4259773,"lon":4.3253853},{"street":"Hugo de Grootstraat","housenumber":"3","lat":51.4262767,"lon":4.3366086},{"street":"Huijgensstraat","housenumber":"3","lat":51.4263964,"lon":4.3349235},{"street":"Jef Adriaansenstraat","housenumber":"3","lat":51.4207797,"lon":4.3281518},{"street":"KLM laan","housenumber":"3","lat":51.427129,"lon":4.3274723},{"street":"Kamerlingh Onnesstraat","housenumber":"3","lat":51.4256821,"lon":4.3341814},{"street":"Keesomstraat","housenumber":"3","lat":51.4242897,"lon":4.3345695},{"street":"Kloosterstraat","housenumber":"3","lat":51.4241587,"lon":4.3270525},{"street":"Kooiweg","housenumber":"3","lat":51.4280852,"lon":4.3398796},{"street":"Kromstraat","housenumber":"3","lat":51.4247759,"lon":4.3257296},{"street":"Laan Olieslagers","housenumber":"3","lat":51.4266101,"lon":4.3307197},{"street":"Lammertiende","housenumber":"3","lat":51.4298267,"lon":4.3251978},{"street":"Lindberghlaan","housenumber":"3","lat":51.4261365,"lon":4.3310767},{"street":"Lorentzstraat","housenumber":"3","lat":51.4246051,"lon":4.3316721},{"street":"Maststraat","housenumber":"3","lat":51.4208061,"lon":4.3300778},{"street":"Meulenblock","housenumber":"3","lat":51.4226672,"lon":4.3259648},{"street":"Mgr Ariensstraat","housenumber":"3","lat":51.4218126,"lon":4.3260862},{"street":"Mgr Frenckenstraat","housenumber":"3","lat":51.421729,"lon":4.3267783},{"street":"Mgr Nolensstraat","housenumber":"3","lat":51.419659,"lon":4.324526},{"street":"Mgr Poelsstraat","housenumber":"3","lat":51.4208077,"lon":4.3253044},{"street":"Minckelersweg","housenumber":"3","lat":51.4247173,"lon":4.3302471},{"street":"Molenstraat","housenumber":"3","lat":51.4222726,"lon":4.3282845},{"street":"Nijverheidstraat","housenumber":"3","lat":51.4333334,"lon":4.3276732},{"street":"Norbartstraat","housenumber":"3","lat":51.4177911,"lon":4.3237501},{"street":"Olympialaan","housenumber":"3","lat":51.4178067,"lon":4.3343885},{"street":"Onderstal","housenumber":"3","lat":51.4245684,"lon":4.3226861},{"street":"Pr Bernhardstraat","housenumber":"30","lat":51.426514,"lon":4.324711},{"street":"Pr Hendrikstraat","housenumber":"30","lat":51.4257334,"lon":4.3282237},{"street":"Putseweg","housenumber":"30","lat":51.420095,"lon":4.3276772},{"street":"Robert Kochstraat","housenumber":"30","lat":51.4270704,"lon":4.3247866},{"street":"Rubertstraat","housenumber":"30","lat":51.4195703,"lon":4.3307018},{"street":"Oostlaan","housenumber":"3","lat":51.4270827,"lon":4.3357211},{"street":"Ossendrechtseweg","housenumber":"3","lat":51.4219577,"lon":4.3232647},{"street":"Parmentierlaan","housenumber":"3","lat":51.4281215,"lon":4.3288728},{"street":"Past van Roesselstraat","housenumber":"3","lat":51.4225755,"lon":4.3314876},{"street":"Pasteurstraat","housenumber":"3","lat":51.4273225,"lon":4.3216125},{"street":"Plantagelaan","housenumber":"3","lat":51.4178707,"lon":4.33351},{"street":"Plesmanlaan","housenumber":"3","lat":51.4267359,"lon":4.3287324},{"street":"Pr Clausstraat","housenumber":"3","lat":51.4237791,"lon":4.3298076},{"street":"Putseweg","housenumber":"3","lat":51.4221348,"lon":4.3249428},{"street":"Raadhuisstraat","housenumber":"3","lat":51.4283619,"lon":4.3197359},{"street":"Robert Kochstraat","housenumber":"3","lat":51.4266437,"lon":4.3235436},{"street":"Rubertstraat","housenumber":"3","lat":51.4203459,"lon":4.3298872},{"street":"Smirnofflaan","housenumber":"3","lat":51.4276232,"lon":4.3284386},{"street":"Sondermanlaan","housenumber":"3","lat":51.4265784,"lon":4.3319185},{"street":"Sportlaan","housenumber":"3","lat":51.422393,"lon":4.3369414},{"street":"St Lucasplein","housenumber":"3","lat":51.4275517,"lon":4.322559},{"street":"Suijkerbuijkstraat","housenumber":"3","lat":51.4225585,"lon":4.3310149},{"street":"Torontolaan","housenumber":"3","lat":51.4276138,"lon":4.3165755},{"street":"Trefpunt","housenumber":"3","lat":51.42246,"lon":4.327318},{"street":"Valkestraat","housenumber":"3","lat":51.4345379,"lon":4.313896},{"street":"Verlengde Duinstraat","housenumber":"3","lat":51.4291669,"lon":4.3301572},{"street":"Vogelven","housenumber":"3","lat":51.4314127,"lon":4.3240296},{"street":"Wouwbaan","housenumber":"3","lat":51.4245093,"lon":4.3240966},{"street":"De Acacia","housenumber":"3","lat":51.431042,"lon":4.3129263},{"street":"De Anjer","housenumber":"3","lat":51.4328993,"lon":4.3167995},{"street":"De Berk","housenumber":"3","lat":51.4310595,"lon":4.3139491},{"street":"De Eik","housenumber":"3","lat":51.4301067,"lon":4.3129793},{"street":"De Hazelaar","housenumber":"3","lat":51.432536,"lon":4.3158754},{"street":"De Hortensia","housenumber":"3","lat":51.4329417,"lon":4.3152998},{"street":"De Jasmijn","housenumber":"3","lat":51.4322779,"lon":4.31467},{"street":"De Narcis","housenumber":"3","lat":51.4319963,"lon":4.317091},{"street":"De Papaver","housenumber":"3","lat":51.4313904,"lon":4.316389},{"street":"De Roos","housenumber":"3","lat":51.4310896,"lon":4.3172273},{"street":"De Sering","housenumber":"3","lat":51.4302326,"lon":4.3165201},{"street":"De Tulp","housenumber":"3","lat":51.4297414,"lon":4.3159745},{"street":"De Vuurdoorn","housenumber":"3","lat":51.4324918,"lon":4.3123191},{"street":"De Wilg","housenumber":"3","lat":51.429206,"lon":4.3137627},{"street":"De Zonnebloem","housenumber":"3","lat":51.4302446,"lon":4.3151261},{"street":"dokter van de Karplein","housenumber":"3","lat":51.4296855,"lon":4.3228742},{"street":"in d' Hoef","housenumber":"3","lat":51.4292836,"lon":4.3228802},{"street":"op den Duyn","housenumber":"3","lat":51.4291811,"lon":4.3213964},{"street":"van Houtenstraat","housenumber":"3","lat":51.4206319,"lon":4.3257398},{"street":"Van Ostaayland","housenumber":"3","lat":51.430896,"lon":4.327136},{"street":"Van Weerden Poelmanlaan","housenumber":"3","lat":51.4263256,"lon":4.3280949},{"street":"Van de Moerstraat","housenumber":"3","lat":51.419747,"lon":4.3322446},{"street":"Aalbersestraat","housenumber":"30","lat":51.4212497,"lon":4.3241543},{"street":"Antwerpsestraatweg","housenumber":"30","lat":51.4298746,"lon":4.3190246},{"street":"Bijentiende","housenumber":"30","lat":51.4303077,"lon":4.3263377},{"street":"Blériotlaan","housenumber":"30","lat":51.4268059,"lon":4.3338244},{"street":"Burg Moorsstraat","housenumber":"30","lat":51.4213768,"lon":4.3301446},{"street":"Buys Ballotstraat","housenumber":"30","lat":51.4238102,"lon":4.3331194},{"street":"Dennenlaan","housenumber":"30","lat":51.4184281,"lon":4.3279872},{"street":"Doelstraat","housenumber":"30","lat":51.4324513,"lon":4.3111963},{"street":"Duinstraat","housenumber":"30","lat":51.4286832,"lon":4.3234241},{"street":"Fokkerlaan","housenumber":"30","lat":51.4279483,"lon":4.3303556},{"street":"Huijbergseweg","housenumber":"30","lat":51.4227628,"lon":4.3277607},{"street":"Huijgensstraat","housenumber":"30","lat":51.4245246,"lon":4.3347079},{"street":"KLM laan","housenumber":"30","lat":51.4261802,"lon":4.3290902},{"street":"Kamerlingh Onnesstraat","housenumber":"30","lat":51.4254582,"lon":4.3335647},{"street":"Keesomstraat","housenumber":"30","lat":51.4244881,"lon":4.3336447},{"street":"Kloosterstraat","housenumber":"30","lat":51.4253119,"lon":4.3263498},{"street":"Laan Olieslagers","housenumber":"30","lat":51.4265716,"lon":4.3311876},{"street":"Maststraat","housenumber":"30","lat":51.4205708,"lon":4.3309016},{"street":"Meulenblock","housenumber":"30","lat":51.4222904,"lon":4.3260388},{"street":"Mgr Nolensstraat","housenumber":"30","lat":51.418263,"lon":4.3248769},{"street":"Minckelersweg","housenumber":"30","lat":51.4251633,"lon":4.3317742},{"street":"Nieuweweg","housenumber":"30","lat":51.4288023,"lon":4.3158142},{"street":"Nijverheidstraat","housenumber":"30","lat":51.4319484,"lon":4.3299984},{"street":"Onderstal","housenumber":"30a","lat":51.4256712,"lon":4.3156088},{"street":"Oostlaan","housenumber":"30","lat":51.4255559,"lon":4.3364239},{"street":"Past van Roesselstraat","housenumber":"30","lat":51.4206018,"lon":4.3315485},{"street":"Plesmanlaan","housenumber":"30","lat":51.4276621,"lon":4.3317451},{"street":"KLM laan","housenumber":"46","lat":51.4258004,"lon":4.3296601},{"street":"Kamerlingh Onnesstraat","housenumber":"46","lat":51.4250573,"lon":4.3345695},{"street":"Keesomstraat","housenumber":"46","lat":51.4244497,"lon":4.3323802},{"street":"Laan Olieslagers","housenumber":"46","lat":51.4270203,"lon":4.3319052},{"street":"Maststraat","housenumber":"46","lat":51.4200114,"lon":4.3317162},{"street":"Meulenblock","housenumber":"46","lat":51.4219789,"lon":4.3259551},{"street":"Mgr Nolensstraat","housenumber":"46","lat":51.41832,"lon":4.3235275},{"street":"Mgr Poelsstraat","housenumber":"46","lat":51.4197645,"lon":4.3238443},{"street":"Onderstal","housenumber":"46","lat":51.4270282,"lon":4.3125342},{"street":"Ossendrechtseweg","housenumber":"46","lat":51.419772,"lon":4.3221368},{"street":"Raadhuisstraat","housenumber":"46","lat":51.4268675,"lon":4.3212063},{"street":"Robert Kochstraat","housenumber":"46","lat":51.4269246,"lon":4.3249514},{"street":"Rozenlaan","housenumber":"46","lat":51.4305681,"lon":4.316808},{"street":"Smirnofflaan","housenumber":"46","lat":51.4271039,"lon":4.3285492},{"street":"St Lucasplein","housenumber":"46","lat":51.4278183,"lon":4.3242395},{"street":"Suijkerbuijkstraat","housenumber":"46","lat":51.4211276,"lon":4.3308324},{"street":"Verlengde Duinstraat","housenumber":"46","lat":51.4275619,"lon":4.3345802},{"street":"Zandfort","housenumber":"46","lat":51.4349698,"lon":4.3247443},{"street":"De Acacia","housenumber":"46","lat":51.4314145,"lon":4.3131439},{"street":"De Anjer","housenumber":"46","lat":51.4330015,"lon":4.3170468},{"street":"Schapendreef","housenumber":"30","lat":51.4182972,"lon":4.3260242},{"street":"Semmelweissstraat","housenumber":"30","lat":51.4272423,"lon":4.3251114},{"street":"Smirnofflaan","housenumber":"30","lat":51.427219,"lon":4.3282677},{"street":"St Lucasplein","housenumber":"30","lat":51.427587,"lon":4.323643},{"street":"Steenstraat","housenumber":"30","lat":51.436673,"lon":4.3102364},{"street":"Struikenlaan","housenumber":"30","lat":51.4323749,"lon":4.3128238},{"street":"Suijkerbuijkstraat","housenumber":"30","lat":51.4217912,"lon":4.3306589},{"street":"Vogelven","housenumber":"30","lat":51.4315523,"lon":4.325157},{"street":"Wipstraat","housenumber":"30","lat":51.4351294,"lon":4.3304991},{"street":"Wouwbaan","housenumber":"30","lat":51.4253577,"lon":4.3254573},{"street":"Zandfort","housenumber":"30","lat":51.4347294,"lon":4.3230241},{"street":"De Acacia","housenumber":"30","lat":51.4320945,"lon":4.3124209},{"street":"De Anjer","housenumber":"30","lat":51.433467,"lon":4.3177305},{"street":"De Berk","housenumber":"30","lat":51.4305833,"lon":4.3139747},{"street":"De Eik","housenumber":"30","lat":51.4303348,"lon":4.3131742},{"street":"De Hazelaar","housenumber":"30","lat":51.4322591,"lon":4.315359},{"street":"De Hortensia","housenumber":"30","lat":51.4336308,"lon":4.3149672},{"street":"De Jasmijn","housenumber":"30","lat":51.4318125,"lon":4.3138654},{"street":"De Narcis","housenumber":"30","lat":51.4321312,"lon":4.3174817},{"street":"De Papaver","housenumber":"30","lat":51.4314785,"lon":4.3160135},{"street":"De Roos","housenumber":"30","lat":51.4311312,"lon":4.3178447},{"street":"De Tulp","housenumber":"30","lat":51.4291786,"lon":4.3168013},{"street":"de Wildert","housenumber":"30","lat":51.4313062,"lon":4.3268652},{"street":"De Wilg","housenumber":"30","lat":51.4297788,"lon":4.3122809},{"street":"De Zonnebloem","housenumber":"30","lat":51.4302579,"lon":4.314759},{"street":"dokter van de Karplein","housenumber":"30","lat":51.430298,"lon":4.3236039},{"street":"in d' Hoef","housenumber":"30","lat":51.4297309,"lon":4.3216093},{"street":"op den Duyn","housenumber":"30","lat":51.4307645,"lon":4.3207924},{"street":"Van der Meulenplein","housenumber":"30","lat":51.4218196,"lon":4.3245634},{"street":"Wouwbaan","housenumber":"302","lat":51.4361637,"lon":4.3362505},{"street":"Wouwbaan","housenumber":"302a","lat":51.4362421,"lon":4.3363543},{"street":"Huijgensstraat","housenumber":"30a","lat":51.4242417,"lon":4.3347744},{"street":"KLM laan","housenumber":"30a","lat":51.4261548,"lon":4.3290535},{"street":"De Hortensia","housenumber":"30a","lat":51.4335963,"lon":4.3147274},{"street":"Huijgensstraat","housenumber":"30c","lat":51.424176,"lon":4.3347814},{"street":"Huijgensstraat","housenumber":"30d","lat":51.4241477,"lon":4.3347844},{"street":"Aalbersestraat","housenumber":"31","lat":51.4215146,"lon":4.3245429},{"street":"Antwerpsestraatweg","housenumber":"31","lat":51.4302064,"lon":4.3182918},{"street":"Binnenweg","housenumber":"31","lat":51.4255375,"lon":4.3244753},{"street":"Blériotlaan","housenumber":"31","lat":51.4272106,"lon":4.3343301},{"street":"Burg Moorsstraat","housenumber":"31","lat":51.420928,"lon":4.3296437},{"street":"Dennenlaan","housenumber":"31","lat":51.4173414,"lon":4.330647},{"street":"Duinstraat","housenumber":"31","lat":51.4291637,"lon":4.3248509},{"street":"Edward Jennerstraat","housenumber":"31","lat":51.428267,"lon":4.3251019},{"street":"Fokkerlaan","housenumber":"31","lat":51.4281015,"lon":4.3306277},{"street":"Gemeynte","housenumber":"31","lat":51.4302416,"lon":4.3280937},{"street":"Huijbergseweg","housenumber":"31","lat":51.4234643,"lon":4.3297861},{"street":"Huijgensstraat","housenumber":"31","lat":51.4260499,"lon":4.3353772},{"street":"KLM laan","housenumber":"31","lat":51.4257808,"lon":4.3302938},{"street":"Lammertiende","housenumber":"31","lat":51.4299598,"lon":4.3264312},{"street":"Maststraat","housenumber":"31","lat":51.4200258,"lon":4.3312605},{"street":"Meulenblock","housenumber":"31","lat":51.4222818,"lon":4.325956},{"street":"Mgr Ariensstraat","housenumber":"31","lat":51.4220579,"lon":4.3273601},{"street":"Mgr Nolensstraat","housenumber":"31","lat":51.4177392,"lon":4.324959},{"street":"Mgr Poelsstraat","housenumber":"31","lat":51.4193319,"lon":4.3241455},{"street":"Minckelersweg","housenumber":"31","lat":51.4257612,"lon":4.332278},{"street":"Molenstraat","housenumber":"31","lat":51.4214418,"lon":4.3293432},{"street":"Nieuweweg","housenumber":"31","lat":51.4284221,"lon":4.316499},{"street":"Oostlaan","housenumber":"31","lat":51.4271166,"lon":4.3359913},{"street":"Ossendrechtseweg","housenumber":"31","lat":51.4207488,"lon":4.3227897},{"street":"Ouwe Raedthuysplein","housenumber":"31","lat":51.4256633,"lon":4.322057},{"street":"Parmentierlaan","housenumber":"31","lat":51.4276551,"lon":4.3299765},{"street":"Past van Roesselstraat","housenumber":"31","lat":51.4215881,"lon":4.3314975},{"street":"Pasteurstraat","housenumber":"31","lat":51.4280544,"lon":4.3214975},{"street":"Philomenahof","housenumber":"31","lat":51.4241877,"lon":4.3264759},{"street":"Plesmanlaan","housenumber":"31","lat":51.427569,"lon":4.3301994},{"street":"Pr Bernhardstraat","housenumber":"31","lat":51.4266818,"lon":4.324765},{"street":"Pr Hendrikstraat","housenumber":"31","lat":51.425561,"lon":4.3280408},{"street":"Putseweg","housenumber":"31","lat":51.4210748,"lon":4.3269948},{"street":"Raadhuisstraat","housenumber":"31","lat":51.4273489,"lon":4.3210251},{"street":"Rozenlaan","housenumber":"31","lat":51.4308314,"lon":4.3180494},{"street":"Rubertstraat","housenumber":"31","lat":51.4197267,"lon":4.3309942},{"street":"Sondermanlaan","housenumber":"31","lat":51.4263797,"lon":4.3322923},{"street":"Suijkerbuijkstraat","housenumber":"31","lat":51.4217293,"lon":4.3309964},{"street":"Trefpunt","housenumber":"31","lat":51.4222159,"lon":4.3277463},{"street":"Verlengde Duinstraat","housenumber":"31","lat":51.4287584,"lon":4.3317053},{"street":"Wouwbaan","housenumber":"31","lat":51.4257619,"lon":4.3254191},{"street":"Zandfort","housenumber":"31","lat":51.435316,"lon":4.325254},{"street":"De Acacia","housenumber":"31","lat":51.4320957,"lon":4.3124977},{"street":"De Anjer","housenumber":"31","lat":51.4333498,"lon":4.3174868},{"street":"De Berk","housenumber":"31","lat":51.4306357,"lon":4.3139845},{"street":"De Eik","housenumber":"31","lat":51.4303027,"lon":4.3131258},{"street":"De Hazelaar","housenumber":"31","lat":51.4323216,"lon":4.3153144},{"street":"De Jasmijn","housenumber":"31","lat":51.4318636,"lon":4.3138646},{"street":"De Narcis","housenumber":"31","lat":51.4321044,"lon":4.3174825},{"street":"De Papaver","housenumber":"31","lat":51.4315298,"lon":4.3160129},{"street":"De Roos","housenumber":"31","lat":51.4313297,"lon":4.3175603},{"street":"De Tulp","housenumber":"31","lat":51.4291824,"lon":4.3167248},{"street":"De Vuurdoorn","housenumber":"31","lat":51.4332086,"lon":4.3134535},{"street":"De Wilg","housenumber":"31","lat":51.4297801,"lon":4.3123542},{"street":"De Zonnebloem","housenumber":"31","lat":51.4303118,"lon":4.3147577},{"street":"dokter van de Karplein","housenumber":"31","lat":51.4301386,"lon":4.3236654},{"street":"in d' Hoef","housenumber":"31","lat":51.429704,"lon":4.3211966},{"street":"op den Duyn","housenumber":"31","lat":51.4303347,"lon":4.3202292},{"street":"van Houtenstraat","housenumber":"31","lat":51.4197813,"lon":4.3251687},{"street":"van der Dilftstraat","housenumber":"31","lat":51.4221519,"lon":4.3292168},{"street":"Minckelersweg","housenumber":"31a","lat":51.4257887,"lon":4.3323349},{"street":"Ossendrechtseweg","housenumber":"31a","lat":51.4206677,"lon":4.3227628},{"street":"Putseweg","housenumber":"31a","lat":51.4209599,"lon":4.3272131},{"street":"Aalbersestraat","housenumber":"32","lat":51.4211894,"lon":4.3241497},{"street":"Antwerpsestraatweg","housenumber":"32","lat":51.4299644,"lon":4.3190225},{"street":"Bijentiende","housenumber":"32","lat":51.4303149,"lon":4.3264183},{"street":"Blériotlaan","housenumber":"32","lat":51.4267646,"lon":4.3338783},{"street":"Burg Moorsstraat","housenumber":"32","lat":51.4213236,"lon":4.3301424},{"street":"Buys Ballotstraat","housenumber":"32","lat":51.423824,"lon":4.3329868},{"street":"Dennenlaan","housenumber":"32","lat":51.4180767,"lon":4.328459},{"street":"Duinstraat","housenumber":"32","lat":51.4286931,"lon":4.3235245},{"street":"Fokkerlaan","housenumber":"32","lat":51.4279177,"lon":4.3304294},{"street":"Huijgensstraat","housenumber":"32","lat":51.4240486,"lon":4.3347476},{"street":"KLM laan","housenumber":"32","lat":51.4261369,"lon":4.3291486},{"street":"Kamerlingh Onnesstraat","housenumber":"32","lat":51.4254043,"lon":4.333566},{"street":"Keesomstraat","housenumber":"32","lat":51.4244758,"lon":4.3332855},{"street":"Kloosterstraat","housenumber":"32","lat":51.4254553,"lon":4.3263033},{"street":"Laan Olieslagers","housenumber":"32","lat":51.4266058,"lon":4.3312545},{"street":"Meulenblock","housenumber":"32","lat":51.422258,"lon":4.325898},{"street":"Mgr Nolensstraat","housenumber":"32","lat":51.4182492,"lon":4.3247954},{"street":"Minckelersweg","housenumber":"32","lat":51.4251999,"lon":4.3318452},{"street":"Nieuweweg","housenumber":"32","lat":51.4288014,"lon":4.3157136},{"street":"Onderstal","housenumber":"32","lat":51.4255084,"lon":4.3144653},{"street":"Oostlaan","housenumber":"32","lat":51.4255111,"lon":4.3364393},{"street":"Ossendrechtseweg","housenumber":"32","lat":51.4207906,"lon":4.3224437},{"street":"Past van Roesselstraat","housenumber":"32","lat":51.4205426,"lon":4.3315243},{"street":"Plesmanlaan","housenumber":"32","lat":51.4277533,"lon":4.3318868},{"street":"Pr Bernhardstraat","housenumber":"32","lat":51.4265416,"lon":4.3251565},{"street":"Pr Hendrikstraat","housenumber":"32","lat":51.4258845,"lon":4.3280333},{"street":"Robert Kochstraat","housenumber":"32","lat":51.4270732,"lon":4.3248319},{"street":"Rozenlaan","housenumber":"32","lat":51.4308309,"lon":4.3179699},{"street":"Rubertstraat","housenumber":"32","lat":51.4195353,"lon":4.330764},{"street":"Schapendreef","housenumber":"32","lat":51.4182431,"lon":4.3259967},{"street":"Semmelweissstraat","housenumber":"32","lat":51.4272251,"lon":4.3251981},{"street":"Smirnofflaan","housenumber":"32","lat":51.4271971,"lon":4.3283213},{"street":"St Lucasplein","housenumber":"32","lat":51.4274996,"lon":4.3236549},{"street":"Struikenlaan","housenumber":"32","lat":51.4323841,"lon":4.312737},{"street":"Suijkerbuijkstraat","housenumber":"32","lat":51.4217373,"lon":4.3306601},{"street":"Verlengde Duinstraat","housenumber":"32","lat":51.4281404,"lon":4.3329419},{"street":"Vogelven","housenumber":"32","lat":51.4314254,"lon":4.3253465},{"street":"Wouwbaan","housenumber":"32","lat":51.4254123,"lon":4.3255279},{"street":"Zandfort","housenumber":"32","lat":51.4347681,"lon":4.3233252},{"street":"De Acacia","housenumber":"32","lat":51.4320976,"lon":4.3126028},{"street":"De Anjer","housenumber":"32","lat":51.4333491,"lon":4.317409},{"street":"De Berk","housenumber":"32","lat":51.4306912,"lon":4.3139722},{"street":"De Hazelaar","housenumber":"32","lat":51.4323755,"lon":4.3153131},{"street":"De Hortensia","housenumber":"32","lat":51.433456,"lon":4.3145255},{"street":"De Jasmijn","housenumber":"32","lat":51.4319155,"lon":4.3138638},{"street":"De Narcis","housenumber":"32","lat":51.4320775,"lon":4.3174831},{"street":"De Papaver","housenumber":"32","lat":51.4315817,"lon":4.3160123},{"street":"De Roos","housenumber":"32","lat":51.4313578,"lon":4.3175597},{"street":"De Tulp","housenumber":"32","lat":51.4292042,"lon":4.3166479},{"street":"de Wildert","housenumber":"32","lat":51.4313665,"lon":4.3270484},{"street":"De Wilg","housenumber":"32","lat":51.4297814,"lon":4.3124274},{"street":"De Zonnebloem","housenumber":"32","lat":51.4303659,"lon":4.3147708},{"street":"dokter van de Karplein","housenumber":"32","lat":51.4300869,"lon":4.3236767},{"street":"in d' Hoef","housenumber":"32","lat":51.4297833,"lon":4.3215979},{"street":"op den Duyn","housenumber":"32","lat":51.4308147,"lon":4.3208308},{"street":"KLM laan","housenumber":"32a","lat":51.4261156,"lon":4.3291116},{"street":"Nieuweweg","housenumber":"32a","lat":51.4288087,"lon":4.3155264},{"street":"Onderstal","housenumber":"32a","lat":51.4256666,"lon":4.3141289},{"street":"Ossendrechtseweg","housenumber":"32a","lat":51.4208496,"lon":4.321801},{"street":"De Tulp","housenumber":"32a","lat":51.4293693,"lon":4.3165598},{"street":"Aalbersestraat","housenumber":"33","lat":51.4215486,"lon":4.3245938},{"street":"Binnenweg","housenumber":"33","lat":51.4254031,"lon":4.3245216},{"street":"Blériotlaan","housenumber":"33","lat":51.4271929,"lon":4.3342954},{"street":"Canadalaan","housenumber":"33","lat":51.4277311,"lon":4.3136968},{"street":"Dennenlaan","housenumber":"33","lat":51.4173565,"lon":4.3303303},{"street":"Raadhuisstraat","housenumber":"36","lat":51.4272501,"lon":4.3207784},{"street":"Robert Kochstraat","housenumber":"36","lat":51.4270789,"lon":4.3249224},{"street":"Rozenlaan","housenumber":"36","lat":51.4308013,"lon":4.3176606},{"street":"Rubertstraat","housenumber":"36","lat":51.4194645,"lon":4.3308896},{"street":"Semmelweissstraat","housenumber":"36","lat":51.4271908,"lon":4.3253714},{"street":"Smirnofflaan","housenumber":"36","lat":51.4271751,"lon":4.3283751},{"street":"St Lucasplein","housenumber":"36","lat":51.4275939,"lon":4.3238988},{"street":"Steenstraat","housenumber":"36","lat":51.4352455,"lon":4.3087449},{"street":"Suijkerbuijkstraat","housenumber":"36","lat":51.4216024,"lon":4.3306489},{"street":"Verlengde Duinstraat","housenumber":"36","lat":51.4279563,"lon":4.3334639},{"street":"Vogelven","housenumber":"36","lat":51.4311984,"lon":4.3256128},{"street":"De Acacia","housenumber":"36","lat":51.4319638,"lon":4.3128834},{"street":"De Anjer","housenumber":"36","lat":51.4333241,"lon":4.3170966},{"street":"De Hazelaar","housenumber":"36","lat":51.4325822,"lon":4.3153083},{"street":"De Hortensia","housenumber":"36","lat":51.4332113,"lon":4.3143155},{"street":"De Jasmijn","housenumber":"36","lat":51.4320962,"lon":4.313831},{"street":"De Roos","housenumber":"36","lat":51.43147,"lon":4.3175571},{"street":"De Tulp","housenumber":"36","lat":51.4292769,"lon":4.3162038},{"street":"De Wilg","housenumber":"36","lat":51.4298746,"lon":4.3126931},{"street":"dokter van de Karplein","housenumber":"36","lat":51.4298853,"lon":4.3237208},{"street":"in d' Hoef","housenumber":"36","lat":51.429959,"lon":4.3215602},{"street":"op den Duyn","housenumber":"36","lat":51.4309665,"lon":4.3209642},{"street":"Huijbergseweg","housenumber":"36a","lat":51.422929,"lon":4.3282995},{"street":"Aalbersestraat","housenumber":"37","lat":51.4216152,"lon":4.3246937},{"street":"Antwerpsestraatweg","housenumber":"37","lat":51.430353,"lon":4.3182656},{"street":"Blériotlaan","housenumber":"37","lat":51.4271575,"lon":4.334226},{"street":"Burg Moorsstraat","housenumber":"37","lat":51.4207097,"lon":4.3293612},{"street":"Canadalaan","housenumber":"37","lat":51.4282624,"lon":4.3137993},{"street":"Dennenlaan","housenumber":"37","lat":51.4173226,"lon":4.3295692},{"street":"Duinstraat","housenumber":"33","lat":51.4290847,"lon":4.3250685},{"street":"Edward Jennerstraat","housenumber":"33","lat":51.4282768,"lon":4.3251879},{"street":"Fokkerlaan","housenumber":"33","lat":51.428075,"lon":4.3306858},{"street":"Gemeynte","housenumber":"33","lat":51.4302851,"lon":4.327867},{"street":"Huijgensstraat","housenumber":"33","lat":51.4260506,"lon":4.3354635},{"street":"Lammertiende","housenumber":"33","lat":51.4299666,"lon":4.3265126},{"street":"Maststraat","housenumber":"33","lat":51.4199902,"lon":4.3313044},{"street":"Meulenblock","housenumber":"33","lat":51.4222996,"lon":4.3258287},{"street":"Mgr Ariensstraat","housenumber":"33","lat":51.4220226,"lon":4.3274328},{"street":"Mgr Nolensstraat","housenumber":"33","lat":51.4176583,"lon":4.3249608},{"street":"Mgr Poelsstraat","housenumber":"33","lat":51.4192868,"lon":4.3241322},{"street":"Minckelersweg","housenumber":"33","lat":51.4258991,"lon":4.3326199},{"street":"Molenstraat","housenumber":"33","lat":51.4214082,"lon":4.3294105},{"street":"Nieuweweg","housenumber":"33","lat":51.4284472,"lon":4.3162971},{"street":"Oostlaan","housenumber":"33","lat":51.4270277,"lon":4.335992},{"street":"Ossendrechtseweg","housenumber":"33","lat":51.4205593,"lon":4.3227079},{"street":"Ouwe Raedthuysplein","housenumber":"33","lat":51.4256351,"lon":4.321976},{"street":"Past van Roesselstraat","housenumber":"33","lat":51.4210789,"lon":4.3314086},{"street":"Pasteurstraat","housenumber":"33","lat":51.4280641,"lon":4.3215835},{"street":"Philomenahof","housenumber":"33","lat":51.4241662,"lon":4.3257798},{"street":"Plesmanlaan","housenumber":"33","lat":51.4276156,"lon":4.3302497},{"street":"Pr Bernhardstraat","housenumber":"33","lat":51.4267372,"lon":4.3249218},{"street":"Pr Hendrikstraat","housenumber":"33","lat":51.4256858,"lon":4.3279228},{"street":"Putseweg","housenumber":"33","lat":51.4208007,"lon":4.3275044},{"street":"Raadhuisstraat","housenumber":"33","lat":51.4272422,"lon":4.321157},{"street":"Rozenlaan","housenumber":"33","lat":51.4308035,"lon":4.3178924},{"street":"Rubertstraat","housenumber":"33","lat":51.4196914,"lon":4.331067},{"street":"Sondermanlaan","housenumber":"33","lat":51.4263456,"lon":4.3322258},{"street":"Suijkerbuijkstraat","housenumber":"33","lat":51.4216729,"lon":4.3309941},{"street":"Trefpunt","housenumber":"33","lat":51.4221888,"lon":4.3277569},{"street":"Verlengde Duinstraat","housenumber":"33","lat":51.4287323,"lon":4.3317922},{"street":"Zandfort","housenumber":"33","lat":51.4353353,"lon":4.3253974},{"street":"De Acacia","housenumber":"33","lat":51.4320763,"lon":4.3126933},{"street":"De Anjer","housenumber":"33","lat":51.433326,"lon":4.3173308},{"street":"De Berk","housenumber":"33","lat":51.4307628,"lon":4.3139418},{"street":"De Hazelaar","housenumber":"33","lat":51.4324294,"lon":4.3153119},{"street":"De Jasmijn","housenumber":"33","lat":51.4321268,"lon":4.3137661},{"street":"De Narcis","housenumber":"33","lat":51.4320506,"lon":4.3174838},{"street":"De Roos","housenumber":"33","lat":51.4313859,"lon":4.3175591},{"street":"De Tulp","housenumber":"33","lat":51.4292447,"lon":4.3164803},{"street":"De Vuurdoorn","housenumber":"33","lat":51.4332011,"lon":4.3135305},{"street":"De Wilg","housenumber":"33","lat":51.4297698,"lon":4.3125127},{"street":"De Zonnebloem","housenumber":"33","lat":51.4304194,"lon":4.3147264},{"street":"dokter van de Karplein","housenumber":"33","lat":51.4300373,"lon":4.3236876},{"street":"in d' Hoef","housenumber":"33","lat":51.4297565,"lon":4.3211853},{"street":"op den Duyn","housenumber":"33","lat":51.4304224,"lon":4.320247},{"street":"van Houtenstraat","housenumber":"33","lat":51.4198522,"lon":4.3250104},{"street":"van der Dilftstraat","housenumber":"33","lat":51.4220925,"lon":4.3292145},{"street":"Aalbersestraat","housenumber":"34","lat":51.421129,"lon":4.3241452},{"street":"Antwerpsestraatweg","housenumber":"34","lat":51.4300544,"lon":4.3190348},{"street":"Bijentiende","housenumber":"34","lat":51.4303212,"lon":4.326499},{"street":"Blériotlaan","housenumber":"34","lat":51.4267234,"lon":4.3339321},{"street":"Burg Moorsstraat","housenumber":"34","lat":51.4212713,"lon":4.3301402},{"street":"Buys Ballotstraat","housenumber":"34","lat":51.423821,"lon":4.3328994},{"street":"Dennenlaan","housenumber":"34","lat":51.4180609,"lon":4.3277118},{"street":"Duinstraat","housenumber":"34","lat":51.4287039,"lon":4.3237256},{"street":"Fokkerlaan","housenumber":"34","lat":51.4278865,"lon":4.3305044},{"street":"Huijbergseweg","housenumber":"34","lat":51.4228051,"lon":4.3280931},{"street":"Huijgensstraat","housenumber":"34","lat":51.4239946,"lon":4.3347489},{"street":"Kamerlingh Onnesstraat","housenumber":"34","lat":51.4253503,"lon":4.3335672},{"street":"Keesomstraat","housenumber":"34","lat":51.4244749,"lon":4.3331849},{"street":"Kloosterstraat","housenumber":"34","lat":51.4255443,"lon":4.3262006},{"street":"Laan Olieslagers","housenumber":"34","lat":51.4267969,"lon":4.3315142},{"street":"Meulenblock","housenumber":"34","lat":51.4223545,"lon":4.3258141},{"street":"Mgr Nolensstraat","housenumber":"34","lat":51.4182209,"lon":4.3246271},{"street":"Onderstal","housenumber":"34","lat":51.4258884,"lon":4.3137114},{"street":"Oostlaan","housenumber":"34","lat":51.425457,"lon":4.3364262},{"street":"Ossendrechtseweg","housenumber":"34","lat":51.4206735,"lon":4.3224176},{"street":"Past van Roesselstraat","housenumber":"34","lat":51.4204041,"lon":4.3314576},{"street":"Plesmanlaan","housenumber":"34","lat":51.4278537,"lon":4.332057},{"street":"Pr Bernhardstraat","housenumber":"34","lat":51.4265456,"lon":4.3256021},{"street":"Putseweg","housenumber":"34","lat":51.4196707,"lon":4.3283649},{"street":"Raadhuisstraat","housenumber":"34","lat":51.4272818,"lon":4.3207353},{"street":"Robert Kochstraat","housenumber":"34","lat":51.4270761,"lon":4.3248771},{"street":"Rozenlaan","housenumber":"34","lat":51.4308025,"lon":4.3178166},{"street":"Rubertstraat","housenumber":"34","lat":51.4194998,"lon":4.330827},{"street":"Schapendreef","housenumber":"34","lat":51.4181258,"lon":4.3259563},{"street":"Semmelweissstraat","housenumber":"34","lat":51.4272079,"lon":4.3252847},{"street":"St Lucasplein","housenumber":"34","lat":51.4274898,"lon":4.3239149},{"street":"Steenstraat","housenumber":"34","lat":51.4354361,"lon":4.3089417},{"street":"Struikenlaan","housenumber":"34","lat":51.4323934,"lon":4.3126481},{"street":"Suijkerbuijkstraat","housenumber":"34","lat":51.4216564,"lon":4.330662},{"street":"Verlengde Duinstraat","housenumber":"34","lat":51.4280259,"lon":4.3332034},{"street":"Vogelven","housenumber":"34","lat":51.4313373,"lon":4.3253891},{"street":"Wouwbaan","housenumber":"34","lat":51.4254576,"lon":4.32557},{"street":"De Acacia","housenumber":"34","lat":51.4320305,"lon":4.3127708},{"street":"De Anjer","housenumber":"34","lat":51.4333254,"lon":4.3172529},{"street":"De Berk","housenumber":"34","lat":51.4308167,"lon":4.3139405},{"street":"De Hazelaar","housenumber":"34","lat":51.4324834,"lon":4.3153106},{"street":"De Hortensia","housenumber":"34","lat":51.4333468,"lon":4.3143843},{"street":"De Jasmijn","housenumber":"34","lat":51.4320953,"lon":4.3137665},{"street":"De Narcis","housenumber":"34","lat":51.4320238,"lon":4.3174845},{"street":"De Roos","housenumber":"34","lat":51.4314139,"lon":4.3175584},{"street":"De Tulp","housenumber":"34","lat":51.4292487,"lon":4.3164036},{"street":"de Wildert","housenumber":"34","lat":51.4314786,"lon":4.3273975},{"street":"De Wilg","housenumber":"34","lat":51.4297902,"lon":4.3125902},{"street":"dokter van de Karplein","housenumber":"34","lat":51.4299864,"lon":4.3236987},{"street":"in d' Hoef","housenumber":"34","lat":51.4299064,"lon":4.3215715},{"street":"op den Duyn","housenumber":"34","lat":51.4309171,"lon":4.3209215},{"street":"KLM laan","housenumber":"34a","lat":51.4260764,"lon":4.3291697},{"street":"Aalbersestraat","housenumber":"35","lat":51.4215819,"lon":4.3246437},{"street":"Blériotlaan","housenumber":"35","lat":51.4271752,"lon":4.3342607},{"street":"Burg Moorsstraat","housenumber":"35","lat":51.4208098,"lon":4.3294883},{"street":"Canadalaan","housenumber":"35","lat":51.4280374,"lon":4.3137615},{"street":"Dennenlaan","housenumber":"35","lat":51.417328,"lon":4.3298811},{"street":"Duinstraat","housenumber":"35","lat":51.4290956,"lon":4.3252695},{"street":"Edward Jennerstraat","housenumber":"35","lat":51.4282871,"lon":4.3253315},{"street":"Fokkerlaan","housenumber":"35","lat":51.4280397,"lon":4.3307585},{"street":"Gemeynte","housenumber":"35","lat":51.4303318,"lon":4.3276263},{"street":"Huijgensstraat","housenumber":"35","lat":51.4260514,"lon":4.3355497},{"street":"KLM laan","housenumber":"35","lat":51.4258961,"lon":4.3304481},{"street":"Lammertiende","housenumber":"35","lat":51.4299732,"lon":4.3265922},{"street":"Maststraat","housenumber":"35","lat":51.4199548,"lon":4.3313628},{"street":"Meulenblock","housenumber":"35","lat":51.422405,"lon":4.3258007},{"street":"Mgr Ariensstraat","housenumber":"35","lat":51.4219024,"lon":4.3274978},{"street":"Mgr Nolensstraat","housenumber":"35","lat":51.4177012,"lon":4.3247298},{"street":"Mgr Poelsstraat","housenumber":"35","lat":51.4192418,"lon":4.3241188},{"street":"Minckelersweg","housenumber":"35","lat":51.4259357,"lon":4.3326909},{"street":"Molenstraat","housenumber":"35","lat":51.4213739,"lon":4.3294792},{"street":"Nieuweweg","housenumber":"35","lat":51.4284462,"lon":4.3161821},{"street":"Oostlaan","housenumber":"35","lat":51.4268261,"lon":4.3360043},{"street":"Ossendrechtseweg","housenumber":"35","lat":51.4204512,"lon":4.3226816},{"street":"Ouwe Raedthuysplein","housenumber":"35","lat":51.4256113,"lon":4.3223492},{"street":"Past van Roesselstraat","housenumber":"35","lat":51.4210338,"lon":4.3313953},{"street":"Pasteurstraat","housenumber":"35","lat":51.4280651,"lon":4.3216842},{"street":"Philomenahof","housenumber":"35","lat":51.4241773,"lon":4.3258945},{"street":"Plesmanlaan","housenumber":"35","lat":51.4276615,"lon":4.3302992},{"street":"Pr Bernhardstraat","housenumber":"35","lat":51.426738,"lon":4.3250081},{"street":"Pr Hendrikstraat","housenumber":"35","lat":51.4258008,"lon":4.3277189},{"street":"Putseweg","housenumber":"35","lat":51.4207389,"lon":4.3276208},{"street":"Raadhuisstraat","housenumber":"35","lat":51.4271806,"lon":4.3212307},{"street":"Rozenlaan","housenumber":"35","lat":51.4308017,"lon":4.3177377},{"street":"Rubertstraat","housenumber":"35","lat":51.4196471,"lon":4.3311399},{"street":"Sondermanlaan","housenumber":"35","lat":51.426311,"lon":4.3321582},{"street":"Suijkerbuijkstraat","housenumber":"35","lat":51.4215976,"lon":4.3309915},{"street":"Trefpunt","housenumber":"35","lat":51.4221616,"lon":4.3277674},{"street":"Verlengde Duinstraat","housenumber":"35","lat":51.4286802,"lon":4.3319947},{"street":"Zandfort","housenumber":"35","lat":51.4353828,"lon":4.3256696},{"street":"De Acacia","housenumber":"35","lat":51.4319976,"lon":4.3128264},{"street":"De Anjer","housenumber":"35","lat":51.4333247,"lon":4.3171753},{"street":"De Hazelaar","housenumber":"35","lat":51.4325283,"lon":4.3153096},{"street":"De Jasmijn","housenumber":"35","lat":51.4321276,"lon":4.3138307},{"street":"De Narcis","housenumber":"35","lat":51.4319969,"lon":4.3174851},{"street":"De Roos","housenumber":"35","lat":51.431442,"lon":4.3175578},{"street":"De Tulp","housenumber":"35","lat":51.4292727,"lon":4.3162829},{"street":"De Vuurdoorn","housenumber":"35","lat":51.4331722,"lon":4.3136827},{"street":"De Wilg","housenumber":"35","lat":51.4298413,"lon":4.3126426},{"street":"dokter van de Karplein","housenumber":"35","lat":51.4299368,"lon":4.3237095},{"street":"in d' Hoef","housenumber":"35","lat":51.4298816,"lon":4.3211585},{"street":"op den Duyn","housenumber":"35","lat":51.4305094,"lon":4.3202727},{"street":"van Houtenstraat","housenumber":"35","lat":51.419923,"lon":4.3248937},{"street":"van der Dilftstraat","housenumber":"35","lat":51.4220324,"lon":4.3292122},{"street":"Duinstraat","housenumber":"35a","lat":51.4291353,"lon":4.3256856},{"street":"Putseweg","housenumber":"35a","lat":51.4208239,"lon":4.3276355},{"street":"Aalbersestraat","housenumber":"36","lat":51.4210688,"lon":4.3241408},{"street":"Antwerpsestraatweg","housenumber":"36","lat":51.4301443,"lon":4.3190327},{"street":"Bijentiende","housenumber":"36","lat":51.4303277,"lon":4.326581},{"street":"Blériotlaan","housenumber":"36","lat":51.4266815,"lon":4.3339868},{"street":"Burg Moorsstraat","housenumber":"36","lat":51.421218,"lon":4.330138},{"street":"Buys Ballotstraat","housenumber":"36","lat":51.4238181,"lon":4.3328134},{"street":"Dennenlaan","housenumber":"36","lat":51.4178476,"lon":4.3269979},{"street":"Duinstraat","housenumber":"36","lat":51.4287137,"lon":4.3238116},{"street":"Huijbergseweg","housenumber":"36","lat":51.4229268,"lon":4.3282091},{"street":"Huijgensstraat","housenumber":"36","lat":51.4238959,"lon":4.3347655},{"street":"Kamerlingh Onnesstraat","housenumber":"36","lat":51.4252876,"lon":4.3335831},{"street":"Keesomstraat","housenumber":"36","lat":51.4244741,"lon":4.3330986},{"street":"Kloosterstraat","housenumber":"36","lat":51.4256056,"lon":4.3260266},{"street":"Laan Olieslagers","housenumber":"36","lat":51.426833,"lon":4.3315846},{"street":"Maststraat","housenumber":"36","lat":51.420475,"lon":4.3310316},{"street":"Meulenblock","housenumber":"36","lat":51.4224517,"lon":4.3257883},{"street":"Mgr Nolensstraat","housenumber":"36","lat":51.418207,"lon":4.3245454},{"street":"Onderstal","housenumber":"36","lat":51.4262248,"lon":4.3131427},{"street":"Oostlaan","housenumber":"36","lat":51.4253582,"lon":4.3364285},{"street":"Past van Roesselstraat","housenumber":"36","lat":51.4203525,"lon":4.3314367},{"street":"Plesmanlaan","housenumber":"36","lat":51.4279091,"lon":4.3322139},{"street":"Pr Hendrikstraat","housenumber":"36","lat":51.4261859,"lon":4.3275661},{"street":"Putseweg","housenumber":"36","lat":51.4196075,"lon":4.3285557},{"street":"Duinstraat","housenumber":"37","lat":51.4291925,"lon":4.3260438},{"street":"Edward Jennerstraat","housenumber":"37","lat":51.428288,"lon":4.3254321},{"street":"Fokkerlaan","housenumber":"37","lat":51.4280045,"lon":4.3308456},{"street":"Gemeynte","housenumber":"37","lat":51.4303811,"lon":4.3273693},{"street":"Huijbergseweg","housenumber":"37","lat":51.4234146,"lon":4.3302474},{"street":"Huijgensstraat","housenumber":"37","lat":51.4260521,"lon":4.3356216},{"street":"KLM laan","housenumber":"37","lat":51.4258746,"lon":4.3304761},{"street":"Lammertiende","housenumber":"37","lat":51.4299802,"lon":4.3266751},{"street":"Maststraat","housenumber":"37","lat":51.4198927,"lon":4.3314505},{"street":"Meulenblock","housenumber":"37","lat":51.4227279,"lon":4.3260389},{"street":"Mgr Ariensstraat","housenumber":"37","lat":51.4218665,"lon":4.3275677},{"street":"Mgr Nolensstraat","housenumber":"37","lat":51.4176909,"lon":4.3245863},{"street":"Mgr Poelsstraat","housenumber":"37","lat":51.4190613,"lon":4.3240511},{"street":"Minckelersweg","housenumber":"37","lat":51.4260268,"lon":4.3328183},{"street":"Nieuweweg","housenumber":"37","lat":51.4284533,"lon":4.3159806},{"street":"Onderstal","housenumber":"37","lat":51.4274524,"lon":4.3107699},{"street":"Oostlaan","housenumber":"37","lat":51.4267502,"lon":4.3359103},{"street":"Ossendrechtseweg","housenumber":"37","lat":51.4203608,"lon":4.3226262},{"street":"Ouwe Raedthuysplein","housenumber":"37","lat":51.4257271,"lon":4.3222462},{"street":"Past van Roesselstraat","housenumber":"37","lat":51.4209796,"lon":4.3313678},{"street":"Pasteurstraat","housenumber":"37","lat":51.4280755,"lon":4.3218421},{"street":"Plesmanlaan","housenumber":"37","lat":51.4277082,"lon":4.3303496},{"street":"Pr Bernhardstraat","housenumber":"37","lat":51.4267479,"lon":4.3251085},{"street":"Putseweg","housenumber":"37","lat":51.4206771,"lon":4.3277516},{"street":"Raadhuisstraat","housenumber":"37","lat":51.4270827,"lon":4.3214052},{"street":"Rozenlaan","housenumber":"37","lat":51.4308005,"lon":4.3175831},{"street":"Rubertstraat","housenumber":"37","lat":51.4196028,"lon":4.3312128},{"street":"Sondermanlaan","housenumber":"37","lat":51.4261141,"lon":4.3323311},{"street":"Suijkerbuijkstraat","housenumber":"37","lat":51.4215411,"lon":4.3309893},{"street":"Trefpunt","housenumber":"37","lat":51.4221344,"lon":4.327778},{"street":"Verlengde Duinstraat","housenumber":"37","lat":51.428663,"lon":4.3320814},{"street":"Wouwbaan","housenumber":"37","lat":51.4261878,"lon":4.3257974},{"street":"Zandfort","housenumber":"37","lat":51.4354406,"lon":4.3260997},{"street":"De Acacia","housenumber":"37","lat":51.4317996,"lon":4.3129657},{"street":"De Anjer","housenumber":"37","lat":51.4332543,"lon":4.316973},{"street":"De Hazelaar","housenumber":"37","lat":51.4320725,"lon":4.3157014},{"street":"De Jasmijn","housenumber":"37","lat":51.4321279,"lon":4.3138958},{"street":"De Roos","housenumber":"37","lat":51.4314981,"lon":4.3175565},{"street":"De Tulp","housenumber":"37","lat":51.4292471,"lon":4.3160812},{"street":"De Vuurdoorn","housenumber":"37","lat":51.4331516,"lon":4.3137537},{"street":"De Wilg","housenumber":"37","lat":51.4299078,"lon":4.3127435},{"street":"dokter van de Karplein","housenumber":"37","lat":51.4297318,"lon":4.3234251},{"street":"op den Duyn","housenumber":"37","lat":51.4305953,"lon":4.3203063},{"street":"van Houtenstraat","housenumber":"37","lat":51.4199937,"lon":4.3247627},{"street":"van der Dilftstraat","housenumber":"37","lat":51.4219708,"lon":4.3292098},{"street":"Duinstraat","housenumber":"37a","lat":51.4292707,"lon":4.3263893},{"street":"Minckelersweg","housenumber":"37a","lat":51.4260634,"lon":4.3328893},{"street":"Aalbersestraat","housenumber":"38","lat":51.4210085,"lon":4.3241363},{"street":"Bijentiende","housenumber":"38","lat":51.4303345,"lon":4.3266622},{"street":"Burg Moorsstraat","housenumber":"38","lat":51.4206148,"lon":4.3296769},{"street":"Buys Ballotstraat","housenumber":"38","lat":51.4238151,"lon":4.3327275},{"street":"Dennenlaan","housenumber":"38","lat":51.4177652,"lon":4.3266237},{"street":"Duinstraat","housenumber":"38","lat":51.4287338,"lon":4.3240413},{"street":"Huijgensstraat","housenumber":"38","lat":51.423833,"lon":4.334767},{"street":"KLM laan","housenumber":"38","lat":51.4260042,"lon":4.329339},{"street":"Kamerlingh Onnesstraat","housenumber":"38","lat":51.4252271,"lon":4.3335956},{"street":"Keesomstraat","housenumber":"38","lat":51.4244618,"lon":4.332725},{"street":"Kloosterstraat","housenumber":"38","lat":51.4256938,"lon":4.325967},{"street":"Laan Olieslagers","housenumber":"38","lat":51.426866,"lon":4.331649},{"street":"Steenstraat","housenumber":"3c","lat":51.435913,"lon":4.3103252},{"street":"Aalbersestraat","housenumber":"4","lat":51.4213617,"lon":4.323897},{"street":"Antwerpsestraatweg","housenumber":"4","lat":51.4287261,"lon":4.3192672},{"street":"Bijentiende","housenumber":"4","lat":51.4301883,"lon":4.3251032},{"street":"Binnenweg","housenumber":"4","lat":51.425729,"lon":4.3237806},{"street":"Bloemenlaan","housenumber":"4","lat":51.4338028,"lon":4.3160706},{"street":"Blériotlaan","housenumber":"4","lat":51.4273546,"lon":4.3331062},{"street":"Buys Ballotstraat","housenumber":"4","lat":51.4241518,"lon":4.3340926},{"street":"Canadalaan","housenumber":"4","lat":51.4262609,"lon":4.3170674},{"street":"Couwenberghstraat","housenumber":"4","lat":51.4185977,"lon":4.3324838},{"street":"Dennenlaan","housenumber":"4","lat":51.4177219,"lon":4.3319608},{"street":"Doelstraat","housenumber":"4","lat":51.4347754,"lon":4.3168355},{"street":"Duinhoefplein","housenumber":"4","lat":51.4293815,"lon":4.3242174},{"street":"Duintjesplein","housenumber":"4","lat":51.4213498,"lon":4.3285699},{"street":"Fokkerlaan","housenumber":"4","lat":51.4284258,"lon":4.3292073},{"street":"Garry Horselaan","housenumber":"4","lat":51.4277451,"lon":4.313265},{"street":"Gemeynte","housenumber":"4","lat":51.4309703,"lon":4.3279769},{"street":"Gravesandestraat","housenumber":"4","lat":51.4249777,"lon":4.3321236},{"street":"Griblingstraat","housenumber":"4","lat":51.4283859,"lon":4.3227019},{"street":"Heideduinstede","housenumber":"4","lat":51.4289668,"lon":4.3267939},{"street":"Heistraat","housenumber":"4","lat":51.4272645,"lon":4.3258553},{"street":"Hugo de Grootstraat","housenumber":"4","lat":51.4267702,"lon":4.336511},{"street":"Huijgensstraat","housenumber":"4","lat":51.4257193,"lon":4.3346084},{"street":"Jef Adriaansenstraat","housenumber":"4","lat":51.4206561,"lon":4.3283991},{"street":"KLM laan","housenumber":"4","lat":51.426778,"lon":4.3274373},{"street":"Kamerlingh Onnesstraat","housenumber":"4","lat":51.4261203,"lon":4.3345},{"street":"Keesomstraat","housenumber":"4","lat":51.4245116,"lon":4.3342624},{"street":"Kloosterstraat","housenumber":"4","lat":51.4235826,"lon":4.3279771},{"street":"Kromstraat","housenumber":"4","lat":51.4245536,"lon":4.3261392},{"street":"Laan Olieslagers","housenumber":"4","lat":51.4259525,"lon":4.3301725},{"street":"Lammertiende","housenumber":"4","lat":51.4296109,"lon":4.3255105},{"street":"Lindberghlaan","housenumber":"4","lat":51.4259525,"lon":4.3308394},{"street":"Maststraat","housenumber":"4","lat":51.4210341,"lon":4.330193},{"street":"Matthias Wolffstraat","housenumber":"4","lat":51.4242919,"lon":4.3278689},{"street":"Meulenblock","housenumber":"4","lat":51.4226066,"lon":4.3256891},{"street":"Mgr Ariensstraat","housenumber":"4","lat":51.4218328,"lon":4.327162},{"street":"Mgr Frenckenstraat","housenumber":"4","lat":51.421672,"lon":4.3264345},{"street":"Mgr Nolensstraat","housenumber":"4","lat":51.4192918,"lon":4.3246784},{"street":"Minckelersweg","housenumber":"4","lat":51.4245861,"lon":4.3305653},{"street":"Molenstraat","housenumber":"4","lat":51.4225674,"lon":4.3278662},{"street":"Nieuweweg","housenumber":"4","lat":51.4286886,"lon":4.3181177},{"street":"Norbartstraat","housenumber":"4","lat":51.4178137,"lon":4.3232751},{"street":"Olympialaan","housenumber":"4","lat":51.4179794,"lon":4.3346002},{"street":"Onderstal","housenumber":"4","lat":51.4247863,"lon":4.3219477},{"street":"Oostlaan","housenumber":"4","lat":51.4270529,"lon":4.3369502},{"street":"Ossendrechtseweg","housenumber":"4","lat":51.4221253,"lon":4.3229157},{"street":"Parmentierlaan","housenumber":"4","lat":51.4278883,"lon":4.3287375},{"street":"Past van Roesselstraat","housenumber":"4","lat":51.4215694,"lon":4.3318572},{"street":"Pasteurstraat","housenumber":"4","lat":51.4276611,"lon":4.3217511},{"street":"Paus Leo XIIIestraat","housenumber":"4","lat":51.4210007,"lon":4.3277441},{"street":"Meulenblock","housenumber":"38","lat":51.4221279,"lon":4.3257028},{"street":"Mgr Nolensstraat","housenumber":"38","lat":51.4182187,"lon":4.3242276},{"street":"Nijverheidstraat","housenumber":"38","lat":51.4324269,"lon":4.3317929},{"street":"Onderstal","housenumber":"38","lat":51.4264844,"lon":4.3130215},{"street":"Oostlaan","housenumber":"38","lat":51.4253041,"lon":4.3364153},{"street":"Ossendrechtseweg","housenumber":"38","lat":51.4204239,"lon":4.3222352},{"street":"Past van Roesselstraat","housenumber":"38","lat":51.4203018,"lon":4.3314162},{"street":"Plesmanlaan","housenumber":"38","lat":51.4280914,"lon":4.3324973},{"street":"Pr Hendrikstraat","housenumber":"38","lat":51.4262298,"lon":4.3274501},{"street":"Putseweg","housenumber":"38","lat":51.419542,"lon":4.3287566},{"street":"Raadhuisstraat","housenumber":"38","lat":51.427169,"lon":4.3208774},{"street":"Robert Kochstraat","housenumber":"38","lat":51.4270817,"lon":4.3249678},{"street":"Rozenlaan","housenumber":"38","lat":51.4307997,"lon":4.3175039},{"street":"Rubertstraat","housenumber":"38","lat":51.419429,"lon":4.3309526},{"street":"Smirnofflaan","housenumber":"38","lat":51.4271604,"lon":4.3284109},{"street":"St Lucasplein","housenumber":"38","lat":51.427645,"lon":4.3238909},{"street":"Suijkerbuijkstraat","housenumber":"38","lat":51.4215394,"lon":4.3306503},{"street":"Zandfort","housenumber":"38","lat":51.4348353,"lon":4.3237983},{"street":"De Acacia","housenumber":"38","lat":51.4317662,"lon":4.3130214},{"street":"De Anjer","housenumber":"38","lat":51.4332538,"lon":4.3168931},{"street":"De Hazelaar","housenumber":"38","lat":51.4320728,"lon":4.3156619},{"street":"De Hortensia","housenumber":"38","lat":51.4329868,"lon":4.3143352},{"street":"De Jasmijn","housenumber":"38","lat":51.4320965,"lon":4.3138962},{"street":"De Tulp","housenumber":"38","lat":51.4292772,"lon":4.3160085},{"street":"De Wilg","housenumber":"38","lat":51.4299411,"lon":4.312794},{"street":"dokter van de Karplein","housenumber":"38","lat":51.4297071,"lon":4.3231294},{"street":"in d' Hoef","housenumber":"38","lat":51.4301859,"lon":4.321546},{"street":"op den Duyn","housenumber":"38","lat":51.4311333,"lon":4.321216},{"street":"Pr Hendrikstraat","housenumber":"38a","lat":51.4263459,"lon":4.3273611},{"street":"Raadhuisstraat","housenumber":"38a","lat":51.4271594,"lon":4.3208757},{"street":"De Tulp","housenumber":"38b","lat":51.4294161,"lon":4.3160361},{"street":"De Tulp","housenumber":"38c","lat":51.4294429,"lon":4.3160396},{"street":"De Tulp","housenumber":"38d","lat":51.4294697,"lon":4.3160431},{"street":"Aalbersestraat","housenumber":"39","lat":51.4216485,"lon":4.3247436},{"street":"Antwerpsestraatweg","housenumber":"39","lat":51.4304159,"lon":4.3182641},{"street":"Blériotlaan","housenumber":"39","lat":51.4271398,"lon":4.3341913},{"street":"Burg Moorsstraat","housenumber":"39","lat":51.4205975,"lon":4.3292229},{"street":"Canadalaan","housenumber":"39","lat":51.4285592,"lon":4.3138067},{"street":"Dennenlaan","housenumber":"39","lat":51.4173831,"lon":4.3292946},{"street":"Duinstraat","housenumber":"39","lat":51.4292276,"lon":4.3269346},{"street":"Edward Jennerstraat","housenumber":"39","lat":51.4282978,"lon":4.3255182},{"street":"Huijbergseweg","housenumber":"39","lat":51.4234078,"lon":4.330492},{"street":"Huijgensstraat","housenumber":"39","lat":51.4258308,"lon":4.3350084},{"street":"KLM laan","housenumber":"39","lat":51.4257169,"lon":4.3303666},{"street":"Maststraat","housenumber":"39","lat":51.4198571,"lon":4.3314944},{"street":"Mgr Ariensstraat","housenumber":"39","lat":51.4218311,"lon":4.3276364},{"street":"Mgr Nolensstraat","housenumber":"39","lat":51.4176806,"lon":4.3244428},{"street":"Mgr Poelsstraat","housenumber":"39","lat":51.419044,"lon":4.3241234},{"street":"Minckelersweg","housenumber":"39","lat":51.4261639,"lon":4.3330739},{"street":"Nieuweweg","housenumber":"39","lat":51.4284614,"lon":4.3158797},{"street":"Onderstal","housenumber":"39","lat":51.4282348,"lon":4.3098311},{"street":"Oostlaan","housenumber":"39","lat":51.4267499,"lon":4.3358347},{"street":"Ossendrechtseweg","housenumber":"39","lat":51.4203157,"lon":4.3226129},{"street":"Ouwe Raedthuysplein","housenumber":"39","lat":51.4256771,"lon":4.3219931},{"street":"Past van Roesselstraat","housenumber":"39","lat":51.4209345,"lon":4.3313545},{"street":"Pasteurstraat","housenumber":"39","lat":51.4280853,"lon":4.3219282},{"street":"Plesmanlaan","housenumber":"39","lat":51.428177,"lon":4.3310285},{"street":"Putseweg","housenumber":"39","lat":51.4206154,"lon":4.3278825},{"street":"Raadhuisstraat","housenumber":"39","lat":51.4270376,"lon":4.3213918},{"street":"Rozenlaan","housenumber":"39","lat":51.4307069,"lon":4.3173527},{"street":"Sondermanlaan","housenumber":"39","lat":51.4261307,"lon":4.3323632},{"street":"Suijkerbuijkstraat","housenumber":"39","lat":51.4214856,"lon":4.3309871},{"street":"Verlengde Duinstraat","housenumber":"39","lat":51.4286109,"lon":4.3322839},{"street":"Wouwbaan","housenumber":"39","lat":51.4262333,"lon":4.3258539},{"street":"Zandfort","housenumber":"39","lat":51.4354875,"lon":4.3263143},{"street":"De Acacia","housenumber":"39","lat":51.4317326,"lon":4.3130778},{"street":"De Anjer","housenumber":"39","lat":51.4332812,"lon":4.3168146},{"street":"De Hazelaar","housenumber":"39","lat":51.4320732,"lon":4.3156223},{"street":"De Jasmijn","housenumber":"39","lat":51.4321286,"lon":4.3139611},{"street":"De Tulp","housenumber":"39","lat":51.4291115,"lon":4.3157507},{"street":"De Vuurdoorn","housenumber":"39","lat":51.4330977,"lon":4.3138903},{"street":"De Wilg","housenumber":"39","lat":51.4299304,"lon":4.3133574},{"street":"dokter van de Karplein","housenumber":"39","lat":51.4296004,"lon":4.3234534},{"street":"in d' Hoef","housenumber":"39","lat":51.430243,"lon":4.3211311},{"street":"van der Dilftstraat","housenumber":"39","lat":51.4218557,"lon":4.3291956},{"street":"Duinstraat","housenumber":"3a","lat":51.4287484,"lon":4.3209041},{"street":"Geyssendorfferlaan","housenumber":"3a","lat":51.4271911,"lon":4.3327677},{"street":"Matthias Wolffstraat","housenumber":"3a","lat":51.4245329,"lon":4.3286686},{"street":"Onderstal","housenumber":"3a","lat":51.4243753,"lon":4.3224328},{"street":"Sportlaan","housenumber":"3a","lat":51.4222502,"lon":4.336309},{"street":"Steenstraat","housenumber":"3a","lat":51.4359759,"lon":4.3099645},{"street":"van Houtenstraat","housenumber":"3a","lat":51.4206053,"lon":4.3257836},{"street":"Duinstraat","housenumber":"3b","lat":51.4287599,"lon":4.3211751},{"street":"Huijbergseweg","housenumber":"3b","lat":51.4234092,"lon":4.3256001},{"street":"Matthias Wolffstraat","housenumber":"3b","lat":51.4245337,"lon":4.3287548},{"street":"Steenstraat","housenumber":"3b","lat":51.4359619,"lon":4.3102767},{"street":"Kamerlingh Onnesstraat","housenumber":"5","lat":51.4256465,"lon":4.3341113},{"street":"Keesomstraat","housenumber":"5","lat":51.4242889,"lon":4.3344832},{"street":"Kloosterstraat","housenumber":"5","lat":51.4245252,"lon":4.3268283},{"street":"Kromstraat","housenumber":"5","lat":51.4247782,"lon":4.3259884},{"street":"Laan Olieslagers","housenumber":"5","lat":51.4266921,"lon":4.3308472},{"street":"Oostlaan","housenumber":"69","lat":51.4256866,"lon":4.3359608},{"street":"Ouwe Raedthuysplein","housenumber":"69","lat":51.425448,"lon":4.3218331},{"street":"Putseweg","housenumber":"69","lat":51.419768,"lon":4.3295987},{"street":"Raadhuisstraat","housenumber":"69","lat":51.4260309,"lon":4.3223932},{"street":"Sondermanlaan","housenumber":"69","lat":51.4263898,"lon":4.3328671},{"street":"Verlengde Duinstraat","housenumber":"69","lat":51.4279759,"lon":4.3346426},{"street":"Wouwbaan","housenumber":"69","lat":51.4276311,"lon":4.3273312},{"street":"in d' Hoef","housenumber":"69","lat":51.4312165,"lon":4.3223429},{"street":"Raadhuisstraat","housenumber":"69a","lat":51.4259774,"lon":4.3224375},{"street":"Raadhuisstraat","housenumber":"69b","lat":51.4259239,"lon":4.3224819},{"street":"Raadhuisstraat","housenumber":"69c","lat":51.4259495,"lon":4.3225436},{"street":"Binnenweg","housenumber":"6a","lat":51.425749,"lon":4.3240102},{"street":"Nieuwe Stee","housenumber":"6a","lat":51.4363569,"lon":4.3260352},{"street":"St Lucasplein","housenumber":"6a","lat":51.4269275,"lon":4.3227831},{"street":"Sportlaan","housenumber":"6b","lat":51.4179273,"lon":4.3356495},{"street":"St Lucasplein","housenumber":"6b","lat":51.4269535,"lon":4.3227735},{"street":"St Lucasplein","housenumber":"6c","lat":51.4269775,"lon":4.3227647},{"street":"St Lucasplein","housenumber":"6d","lat":51.4270024,"lon":4.3227554},{"street":"St Lucasplein","housenumber":"6e","lat":51.4270274,"lon":4.3227462},{"street":"St Lucasplein","housenumber":"6f","lat":51.4270524,"lon":4.3227369},{"street":"St Lucasplein","housenumber":"6h","lat":51.4270277,"lon":4.3229875},{"street":"Aalbersestraat","housenumber":"7","lat":51.4216299,"lon":4.3239282},{"street":"Antwerpsestraatweg","housenumber":"7","lat":51.4291917,"lon":4.3175668},{"street":"Bijentiende","housenumber":"7","lat":51.4304489,"lon":4.3254146},{"street":"Binnenweg","housenumber":"7","lat":51.4258175,"lon":4.3236348},{"street":"Blériotlaan","housenumber":"7","lat":51.4276303,"lon":4.3331982},{"street":"Plantagelaan","housenumber":"4","lat":51.4190593,"lon":4.3334367},{"street":"Pr Bernhardstraat","housenumber":"4","lat":51.4263719,"lon":4.3225324},{"street":"Pr Clausstraat","housenumber":"4","lat":51.4239358,"lon":4.3302353},{"street":"Putseweg","housenumber":"4","lat":51.4210456,"lon":4.325759},{"street":"Raadhuisstraat","housenumber":"4","lat":51.4280732,"lon":4.3196276},{"street":"Robert Kochstraat","housenumber":"4","lat":51.4268798,"lon":4.3237969},{"street":"Rubertstraat","housenumber":"4","lat":51.4201641,"lon":4.3296614},{"street":"Schapendreef","housenumber":"4","lat":51.4196843,"lon":4.3273146},{"street":"Semmelweissstraat","housenumber":"4","lat":51.4271948,"lon":4.3238471},{"street":"Smirnofflaan","housenumber":"4","lat":51.4274147,"lon":4.3282565},{"street":"Sondermanlaan","housenumber":"4","lat":51.4263768,"lon":4.3315469},{"street":"Sportlaan","housenumber":"4","lat":51.4190654,"lon":4.3354006},{"street":"St Lucasplein","housenumber":"4","lat":51.4268845,"lon":4.3227779},{"street":"Struikenlaan","housenumber":"4","lat":51.4325573,"lon":4.3140167},{"street":"Suijkerbuijkstraat","housenumber":"4","lat":51.4225466,"lon":4.3306845},{"street":"Torontolaan","housenumber":"4","lat":51.4278784,"lon":4.3176697},{"street":"Trefpunt","housenumber":"4","lat":51.4222425,"lon":4.3274056},{"street":"Valkestraat","housenumber":"4","lat":51.4342528,"lon":4.3143737},{"street":"Verlengde Duinstraat","housenumber":"4","lat":51.4289205,"lon":4.3297459},{"street":"Vogelven","housenumber":"4","lat":51.4312393,"lon":4.3244469},{"street":"Wouwbaan","housenumber":"4","lat":51.4242663,"lon":4.3240592},{"street":"Zandfort","housenumber":"4","lat":51.4343954,"lon":4.3199254},{"street":"De Acacia","housenumber":"4","lat":51.4310741,"lon":4.3128717},{"street":"De Anjer","housenumber":"4","lat":51.4328513,"lon":4.3168007},{"street":"De Berk","housenumber":"4","lat":51.4310693,"lon":4.3140352},{"street":"De Eik","housenumber":"4","lat":51.4301421,"lon":4.312921},{"street":"De Hazelaar","housenumber":"4","lat":51.4325366,"lon":4.315959},{"street":"De Hortensia","housenumber":"4","lat":51.4329894,"lon":4.3156007},{"street":"De Jasmijn","housenumber":"4","lat":51.4322258,"lon":4.3146708},{"street":"De Narcis","housenumber":"4","lat":51.4319514,"lon":4.317092},{"street":"De Papaver","housenumber":"4","lat":51.4313367,"lon":4.3163903},{"street":"De Roos","housenumber":"4","lat":51.4311435,"lon":4.317226},{"street":"De Sering","housenumber":"4","lat":51.4302287,"lon":4.3165954},{"street":"De Tulp","housenumber":"4","lat":51.4297374,"lon":4.3160534},{"street":"De Vuurdoorn","housenumber":"4","lat":51.4327262,"lon":4.3129008},{"street":"de Wildert","housenumber":"4","lat":51.4306916,"lon":4.325007},{"street":"De Wilg","housenumber":"4","lat":51.4291963,"lon":4.313691},{"street":"De Zonnebloem","housenumber":"4","lat":51.4301932,"lon":4.3151271},{"street":"dokter van de Karplein","housenumber":"4","lat":51.4296608,"lon":4.3225786},{"street":"op den Duyn","housenumber":"4","lat":51.4294866,"lon":4.3207194},{"street":"van 't Hoffstraat","housenumber":"4","lat":51.4243844,"lon":4.3311308},{"street":"van Houtenstraat","housenumber":"4","lat":51.4204528,"lon":4.3254024},{"street":"Van Weerden Poelmanlaan","housenumber":"4","lat":51.4261216,"lon":4.3284016},{"street":"van der Dilftstraat","housenumber":"4","lat":51.4223095,"lon":4.3289084},{"street":"Van der Meulenplein","housenumber":"4","lat":51.422095,"lon":4.3237458},{"street":"Aalbersestraat","housenumber":"40","lat":51.4209482,"lon":4.3241319},{"street":"Bijentiende","housenumber":"40","lat":51.4303414,"lon":4.3267448},{"street":"Burg Moorsstraat","housenumber":"40","lat":51.4205728,"lon":4.3296221},{"street":"Buys Ballotstraat","housenumber":"40","lat":51.4238121,"lon":4.3326401},{"street":"Duinstraat","housenumber":"40","lat":51.4287348,"lon":4.3241563},{"street":"Huijgensstraat","housenumber":"40","lat":51.4238294,"lon":4.3343733},{"street":"KLM laan","housenumber":"40","lat":51.4259598,"lon":4.3293975},{"street":"Kamerlingh Onnesstraat","housenumber":"40","lat":51.4250148,"lon":4.3334566},{"street":"Keesomstraat","housenumber":"40","lat":51.4244611,"lon":4.3326532},{"street":"Kloosterstraat","housenumber":"40","lat":51.4257738,"lon":4.3259522},{"street":"Laan Olieslagers","housenumber":"40","lat":51.4269183,"lon":4.3317069},{"street":"Maststraat","housenumber":"40","lat":51.4204266,"lon":4.3311039},{"street":"Meulenblock","housenumber":"40","lat":51.4219508,"lon":4.3258267},{"street":"Mgr Nolensstraat","housenumber":"40","lat":51.4182295,"lon":4.3241447},{"street":"Mgr Poelsstraat","housenumber":"40","lat":51.4200036,"lon":4.323871},{"street":"Oostlaan","housenumber":"40","lat":51.4252593,"lon":4.3364308},{"street":"Ossendrechtseweg","housenumber":"40","lat":51.4200166,"lon":4.3219832},{"street":"Past van Roesselstraat","housenumber":"40","lat":51.4202503,"lon":4.3313954},{"street":"Pr Hendrikstraat","housenumber":"40","lat":51.4264133,"lon":4.327237},{"street":"Putseweg","housenumber":"40","lat":51.4193326,"lon":4.3288985},{"street":"Robert Kochstraat","housenumber":"40","lat":51.4270846,"lon":4.3250137},{"street":"Rozenlaan","housenumber":"40","lat":51.4307063,"lon":4.317274},{"street":"Smirnofflaan","housenumber":"40","lat":51.4271396,"lon":4.328462},{"street":"St Lucasplein","housenumber":"40","lat":51.427748,"lon":4.3238753},{"street":"Suijkerbuijkstraat","housenumber":"40","lat":51.4213409,"lon":4.3305687},{"street":"Wouwbaan","housenumber":"40","lat":51.4259277,"lon":4.3260292},{"street":"Zandfort","housenumber":"40","lat":51.4348643,"lon":4.3240133},{"street":"De Acacia","housenumber":"40","lat":51.4317007,"lon":4.3131218},{"street":"De Anjer","housenumber":"40","lat":51.4332807,"lon":4.316738},{"street":"De Hazelaar","housenumber":"40","lat":51.4320735,"lon":4.3155828},{"street":"De Hortensia","housenumber":"40","lat":51.4328525,"lon":4.3143959},{"street":"De Jasmijn","housenumber":"40","lat":51.4320971,"lon":4.3139615},{"street":"De Tulp","housenumber":"40","lat":51.4291607,"lon":4.3157569},{"street":"De Wilg","housenumber":"40","lat":51.4299058,"lon":4.3134089},{"street":"dokter van de Karplein","housenumber":"40","lat":51.4295757,"lon":4.3231578},{"street":"in d' Hoef","housenumber":"40","lat":51.4302388,"lon":4.3215512},{"street":"op den Duyn","housenumber":"40","lat":51.4311736,"lon":4.321275},{"street":"Pr Hendrikstraat","housenumber":"40a","lat":51.4264482,"lon":4.3271852},{"street":"Pr Hendrikstraat","housenumber":"40b","lat":51.4264843,"lon":4.3271314},{"street":"Pr Hendrikstraat","housenumber":"40c","lat":51.4265204,"lon":4.3270777},{"street":"Aalbersestraat","housenumber":"41","lat":51.4216825,"lon":4.3247945},{"street":"Antwerpsestraatweg","housenumber":"41","lat":51.4305436,"lon":4.3184625},{"street":"Blériotlaan","housenumber":"41","lat":51.4271221,"lon":4.3341567},{"street":"Burg Moorsstraat","housenumber":"41","lat":51.4205501,"lon":4.3291613},{"street":"Dennenlaan","housenumber":"41","lat":51.4173883,"lon":4.3288776},{"street":"Duinstraat","housenumber":"41","lat":51.4292385,"lon":4.32715},{"street":"Edward Jennerstraat","housenumber":"41","lat":51.4282986,"lon":4.3256045},{"street":"Huijbergseweg","housenumber":"41","lat":51.4234088,"lon":4.330607},{"street":"Huijgensstraat","housenumber":"41","lat":51.4257769,"lon":4.3350097},{"street":"KLM laan","housenumber":"41","lat":51.4256815,"lon":4.3304249},{"street":"Maststraat","housenumber":"41","lat":51.4198307,"lon":4.3315526},{"street":"Mgr Ariensstraat","housenumber":"41","lat":51.4217957,"lon":4.3277052},{"street":"Mgr Nolensstraat","housenumber":"41","lat":51.4176794,"lon":4.3243134},{"street":"Mgr Poelsstraat","housenumber":"41","lat":51.4190266,"lon":4.3241813},{"street":"Minckelersweg","housenumber":"41","lat":51.4262096,"lon":4.3331591},{"street":"Nieuweweg","housenumber":"41","lat":51.4284678,"lon":4.3156635},{"street":"Oostlaan","housenumber":"41","lat":51.4268486,"lon":4.3360041},{"street":"Ossendrechtseweg","housenumber":"41","lat":51.4202343,"lon":4.3225573},{"street":"Ouwe Raedthuysplein","housenumber":"41","lat":51.4255632,"lon":4.3218499},{"street":"Past van Roesselstraat","housenumber":"41","lat":51.4207812,"lon":4.3313005},{"street":"Pasteurstraat","housenumber":"41","lat":51.428086,"lon":4.3220144},{"street":"Plesmanlaan","housenumber":"41","lat":51.4282225,"lon":4.331085},{"street":"Pr Bernhardstraat","housenumber":"41","lat":51.4267699,"lon":4.3255538},{"street":"Pr Hendrikstraat","housenumber":"41","lat":51.4259162,"lon":4.327558},{"street":"Putseweg","housenumber":"41","lat":51.4204918,"lon":4.3281298},{"street":"Raadhuisstraat","housenumber":"41","lat":51.4270019,"lon":4.3214214},{"street":"Rozenlaan","housenumber":"41","lat":51.4307058,"lon":4.3171962},{"street":"Sondermanlaan","housenumber":"41","lat":51.4261486,"lon":4.3323979},{"street":"Suijkerbuijkstraat","housenumber":"41","lat":51.4214301,"lon":4.3309849},{"street":"Verlengde Duinstraat","housenumber":"41","lat":51.4285674,"lon":4.3324431},{"street":"Wipstraat","housenumber":"41","lat":51.4350311,"lon":4.3285254},{"street":"Zandfort","housenumber":"41","lat":51.4355167,"lon":4.3265581},{"street":"De Acacia","housenumber":"41","lat":51.4316586,"lon":4.3131326},{"street":"De Anjer","housenumber":"41","lat":51.4332798,"lon":4.3166603},{"street":"De Jasmijn","housenumber":"41","lat":51.4321407,"lon":4.3140247},{"street":"De Tulp","housenumber":"41","lat":51.4292362,"lon":4.315767},{"street":"De Wilg","housenumber":"41","lat":51.4298725,"lon":4.3134653},{"street":"in d' Hoef","housenumber":"41","lat":51.430296,"lon":4.3211392},{"street":"van der Dilftstraat","housenumber":"41","lat":51.4217959,"lon":4.3291743},{"street":"Huijgensstraat","housenumber":"41a","lat":51.4257321,"lon":4.3350251},{"street":"Aalbersestraat","housenumber":"42","lat":51.4207517,"lon":4.3240781},{"street":"Antwerpsestraatweg","housenumber":"42","lat":51.4302434,"lon":4.3190591},{"street":"Bijentiende","housenumber":"42","lat":51.4303483,"lon":4.3268262},{"street":"Burg Moorsstraat","housenumber":"42","lat":51.4205299,"lon":4.3295663},{"street":"Buys Ballotstraat","housenumber":"42","lat":51.4238404,"lon":4.3324},{"street":"Dennenlaan","housenumber":"42","lat":51.4175925,"lon":4.3257088},{"street":"Huijbergseweg","housenumber":"42","lat":51.4228861,"lon":4.3287006},{"street":"Huijgensstraat","housenumber":"42","lat":51.4238281,"lon":4.3343311},{"street":"KLM laan","housenumber":"42","lat":51.4258803,"lon":4.3295432},{"street":"Kamerlingh Onnesstraat","housenumber":"42","lat":51.4250185,"lon":4.333551},{"street":"Keesomstraat","housenumber":"42","lat":51.4244514,"lon":4.3325671},{"street":"Laan Olieslagers","housenumber":"42","lat":51.4269527,"lon":4.3317737},{"street":"Maststraat","housenumber":"42","lat":51.4200775,"lon":4.3316171},{"street":"Meulenblock","housenumber":"42","lat":51.4219602,"lon":4.32587},{"street":"Mgr Nolensstraat","housenumber":"42","lat":51.4182518,"lon":4.323974},{"street":"Mgr Poelsstraat","housenumber":"42","lat":51.4199586,"lon":4.3238721},{"street":"Nieuweweg","housenumber":"42","lat":51.4288485,"lon":4.3139868},{"street":"Onderstal","housenumber":"42","lat":51.4266982,"lon":4.3128152},{"street":"Pr Hendrikstraat","housenumber":"42","lat":51.426434,"lon":4.3272765},{"street":"Robert Kochstraat","housenumber":"42","lat":51.4269307,"lon":4.3250404},{"street":"Rozenlaan","housenumber":"42","lat":51.4307054,"lon":4.3171176},{"street":"St Lucasplein","housenumber":"42","lat":51.4278034,"lon":4.3239948},{"street":"Suijkerbuijkstraat","housenumber":"42","lat":51.421287,"lon":4.3305699},{"street":"Verlengde Duinstraat","housenumber":"42","lat":51.4277812,"lon":4.3339856},{"street":"Wipstraat","housenumber":"42","lat":51.4350938,"lon":4.3284952},{"street":"Wouwbaan","housenumber":"42","lat":51.4260159,"lon":4.3261228},{"street":"Zandfort","housenumber":"42","lat":51.4349739,"lon":4.3242121},{"street":"De Acacia","housenumber":"42","lat":51.4316091,"lon":4.313135},{"street":"De Anjer","housenumber":"42","lat":51.433279,"lon":4.3165813},{"street":"De Hortensia","housenumber":"42","lat":51.4327354,"lon":4.3144749},{"street":"De Jasmijn","housenumber":"42","lat":51.4321092,"lon":4.3140251},{"street":"De Tulp","housenumber":"42","lat":51.4292853,"lon":4.3157738},{"street":"De Wilg","housenumber":"42","lat":51.4298391,"lon":4.3135215},{"street":"in d' Hoef","housenumber":"42","lat":51.430352,"lon":4.3215814},{"street":"op den Duyn","housenumber":"42","lat":51.4312518,"lon":4.3214113},{"street":"Antwerpsestraatweg","housenumber":"42a","lat":51.4303035,"lon":4.3196339},{"street":"Pr Hendrikstraat","housenumber":"42a","lat":51.4264717,"lon":4.3272253},{"street":"Pr Hendrikstraat","housenumber":"42b","lat":51.4265062,"lon":4.327169},{"street":"Pr Hendrikstraat","housenumber":"42c","lat":51.4265423,"lon":4.3271152},{"street":"Antwerpsestraatweg","housenumber":"43","lat":51.4306245,"lon":4.3184606},{"street":"Blériotlaan","housenumber":"43","lat":51.4271044,"lon":4.3341219},{"street":"Burg Moorsstraat","housenumber":"43","lat":51.4205034,"lon":4.3291005},{"street":"Dennenlaan","housenumber":"43","lat":51.417412,"lon":4.3285176},{"street":"Duinstraat","housenumber":"43","lat":51.4292484,"lon":4.3272505},{"street":"Edward Jennerstraat","housenumber":"43","lat":51.4282993,"lon":4.3256907},{"street":"Huijbergseweg","housenumber":"43","lat":51.4234193,"lon":4.3307649},{"street":"Huijgensstraat","housenumber":"43","lat":51.4257438,"lon":4.3353268},{"street":"KLM laan","housenumber":"43","lat":51.4256371,"lon":4.3304835},{"street":"Maststraat","housenumber":"43","lat":51.4197951,"lon":4.3315965},{"street":"Mgr Ariensstraat","housenumber":"43","lat":51.4217604,"lon":4.3277739},{"street":"Mgr Nolensstraat","housenumber":"43","lat":51.4176692,"lon":4.3241842},{"street":"Mgr Poelsstraat","housenumber":"43","lat":51.4190093,"lon":4.3242536},{"street":"Minckelersweg","housenumber":"43","lat":51.4263836,"lon":4.3335146},{"street":"Oostlaan","housenumber":"43","lat":51.4268711,"lon":4.3360039},{"street":"Ossendrechtseweg","housenumber":"43","lat":51.4201803,"lon":4.3225442},{"street":"Past van Roesselstraat","housenumber":"43","lat":51.420736,"lon":4.3312728},{"street":"Pasteurstraat","housenumber":"43","lat":51.428096,"lon":4.3221148},{"street":"Plesmanlaan","housenumber":"43","lat":51.4282739,"lon":4.3311267},{"street":"Pr Bernhardstraat","housenumber":"43","lat":51.4267807,"lon":4.3257548},{"street":"Pr Hendrikstraat","housenumber":"43","lat":51.4259605,"lon":4.3274851},{"street":"Putseweg","housenumber":"43","lat":51.4204476,"lon":4.3282171},{"street":"Raadhuisstraat","housenumber":"43","lat":51.4269484,"lon":4.3214658},{"street":"Rozenlaan","housenumber":"43","lat":51.4306374,"lon":4.317041},{"street":"Sondermanlaan","housenumber":"43","lat":51.4261659,"lon":4.3324314},{"street":"Suijkerbuijkstraat","housenumber":"43","lat":51.4213736,"lon":4.3309827},{"street":"Verlengde Duinstraat","housenumber":"43","lat":51.4285413,"lon":4.3325444},{"street":"Wouwbaan","housenumber":"43","lat":51.4264238,"lon":4.3260507},{"street":"Zandfort","housenumber":"43","lat":51.4355549,"lon":4.3268018},{"street":"De Acacia","housenumber":"43","lat":51.4315609,"lon":4.3131372},{"street":"De Anjer","housenumber":"43","lat":51.4330839,"lon":4.3170458},{"street":"De Jasmijn","housenumber":"43","lat":51.4321411,"lon":4.3140892},{"street":"De Tulp","housenumber":"43","lat":51.4293629,"lon":4.3157558},{"street":"De Wilg","housenumber":"43","lat":51.4298053,"lon":4.3135787},{"street":"in d' Hoef","housenumber":"43","lat":51.4304062,"lon":4.3211694},{"street":"van der Dilftstraat","housenumber":"43","lat":51.4217363,"lon":4.3291531},{"street":"Aalbersestraat","housenumber":"44","lat":51.4207541,"lon":4.3239811},{"street":"Antwerpsestraatweg","housenumber":"44","lat":51.430486,"lon":4.319039},{"street":"Burg Moorsstraat","housenumber":"44","lat":51.4203392,"lon":4.3293178},{"street":"Buys Ballotstraat","housenumber":"44","lat":51.4238948,"lon":4.3323953},{"street":"Duinstraat","housenumber":"44","lat":51.428775,"lon":4.3246155},{"street":"Huijgensstraat","housenumber":"44","lat":51.4238267,"lon":4.3342889},{"street":"KLM laan","housenumber":"44","lat":51.4258448,"lon":4.3296015},{"street":"Kamerlingh Onnesstraat","housenumber":"44","lat":51.4250541,"lon":4.3344737},{"street":"Keesomstraat","housenumber":"44","lat":51.4244504,"lon":4.3324665},{"street":"Laan Olieslagers","housenumber":"44","lat":51.4269865,"lon":4.3318394},{"street":"Maststraat","housenumber":"44","lat":51.4200441,"lon":4.3316671},{"street":"Meulenblock","housenumber":"44","lat":51.4219698,"lon":4.3259137},{"street":"Mgr Nolensstraat","housenumber":"44","lat":51.4182627,"lon":4.3238913},{"street":"Mgr Poelsstraat","housenumber":"44","lat":51.4198507,"lon":4.3238602},{"street":"Onderstal","housenumber":"44","lat":51.426823,"lon":4.3126972},{"street":"Ossendrechtseweg","housenumber":"44","lat":51.4198171,"lon":4.3221501},{"street":"Pr Hendrikstraat","housenumber":"44","lat":51.4266651,"lon":4.3268791},{"street":"Putseweg","housenumber":"44","lat":51.4192626,"lon":4.3293804},{"street":"Robert Kochstraat","housenumber":"44","lat":51.4269277,"lon":4.3249959},{"street":"Rozenlaan","housenumber":"44","lat":51.4306369,"lon":4.3169629},{"street":"Smirnofflaan","housenumber":"44","lat":51.4271186,"lon":4.3285133},{"street":"St Lucasplein","housenumber":"44","lat":51.4278134,"lon":4.3241588},{"street":"Suijkerbuijkstraat","housenumber":"44","lat":51.4212331,"lon":4.3305712},{"street":"Verlengde Duinstraat","housenumber":"44","lat":51.4276231,"lon":4.3343919},{"street":"Zandfort","housenumber":"44","lat":51.4350211,"lon":4.3244555},{"street":"De Acacia","housenumber":"44","lat":51.4315121,"lon":4.3131395},{"street":"De Anjer","housenumber":"44","lat":51.4330564,"lon":4.3170462},{"street":"De Jasmijn","housenumber":"44","lat":51.4321097,"lon":4.3140896},{"street":"De Tulp","housenumber":"44","lat":51.4294109,"lon":4.3157618},{"street":"De Wilg","housenumber":"44","lat":51.4297172,"lon":4.3136356},{"street":"in d' Hoef","housenumber":"44","lat":51.4304032,"lon":4.3216038},{"street":"op den Duyn","housenumber":"44","lat":51.431287,"lon":4.3214805},{"street":"Suijkerbuijkstraat","housenumber":"44a","lat":51.4211982,"lon":4.3305432},{"street":"Suijkerbuijkstraat","housenumber":"44b","lat":51.4211713,"lon":4.3305398},{"street":"Suijkerbuijkstraat","housenumber":"44c","lat":51.4211437,"lon":4.3305368},{"street":"Suijkerbuijkstraat","housenumber":"44d","lat":51.4211031,"lon":4.3305878},{"street":"Suijkerbuijkstraat","housenumber":"44e","lat":51.4210948,"lon":4.3306404},{"street":"Suijkerbuijkstraat","housenumber":"44f","lat":51.4210865,"lon":4.3306926},{"street":"Suijkerbuijkstraat","housenumber":"44h","lat":51.4210782,"lon":4.3307442},{"street":"Antwerpsestraatweg","housenumber":"45","lat":51.4306964,"lon":4.3184589},{"street":"Blériotlaan","housenumber":"45","lat":51.4270867,"lon":4.3340873},{"street":"Burg Moorsstraat","housenumber":"45","lat":51.4204567,"lon":4.3290398},{"street":"Dennenlaan","housenumber":"45","lat":51.4174176,"lon":4.3281437},{"street":"Duinstraat","housenumber":"45","lat":51.4292685,"lon":4.3274801},{"street":"Edward Jennerstraat","housenumber":"45","lat":51.4283091,"lon":4.3257768},{"street":"Huijgensstraat","housenumber":"45","lat":51.4257446,"lon":4.335413},{"street":"Wouwbaan","housenumber":"50","lat":51.4262057,"lon":4.3263229},{"street":"Zandfort","housenumber":"50","lat":51.4350714,"lon":4.3253163},{"street":"De Acacia","housenumber":"50","lat":51.4312675,"lon":4.31299},{"street":"De Jasmijn","housenumber":"50","lat":51.4321106,"lon":4.3142832},{"street":"De Wilg","housenumber":"50","lat":51.4294501,"lon":4.3139151},{"street":"in d' Hoef","housenumber":"50","lat":51.4306529,"lon":4.3218051},{"street":"op den Duyn","housenumber":"50","lat":51.4314399,"lon":4.3218684},{"street":"Zandfort","housenumber":"50a","lat":51.4351605,"lon":4.325612},{"street":"Dennenlaan","housenumber":"51","lat":51.4174699,"lon":4.3269779},{"street":"Duinstraat","housenumber":"51","lat":51.4293498,"lon":4.3284719},{"street":"Huijbergseweg","housenumber":"51","lat":51.4235277,"lon":4.3318264},{"street":"Huijgensstraat","housenumber":"51","lat":51.4255074,"lon":4.3350303},{"street":"KLM laan","housenumber":"51","lat":51.4254681,"lon":4.3306887},{"street":"Mgr Nolensstraat","housenumber":"51","lat":51.4180442,"lon":4.3239023},{"street":"Mgr Poelsstraat","housenumber":"51","lat":51.4189398,"lon":4.3245284},{"street":"Nieuweweg","housenumber":"51","lat":51.4282376,"lon":4.3127553},{"street":"Oostlaan","housenumber":"51","lat":51.4267949,"lon":4.3358343},{"street":"Ouwe Raedthuysplein","housenumber":"51","lat":51.4254423,"lon":4.3217707},{"street":"Pasteurstraat","housenumber":"51","lat":51.4281171,"lon":4.3224595},{"street":"Plesmanlaan","housenumber":"51","lat":51.4284673,"lon":4.3313238},{"street":"Pr Hendrikstraat","housenumber":"51","lat":51.4262797,"lon":4.3270031},{"street":"Putseweg","housenumber":"51","lat":51.4202981,"lon":4.32858},{"street":"Raadhuisstraat","housenumber":"51","lat":51.4266543,"lon":4.3217459},{"street":"Sondermanlaan","housenumber":"51","lat":51.4262348,"lon":4.3325655},{"street":"Verlengde Duinstraat","housenumber":"51","lat":51.4283847,"lon":4.3331232},{"street":"De Jasmijn","housenumber":"51","lat":51.4321423,"lon":4.314359},{"street":"De Wilg","housenumber":"51","lat":51.4289787,"lon":4.3136384},{"street":"in d' Hoef","housenumber":"51","lat":51.4307128,"lon":4.3213574},{"street":"Aalbersestraat","housenumber":"52","lat":51.4207203,"lon":4.3240759},{"street":"Antwerpsestraatweg","housenumber":"52","lat":51.4309982,"lon":4.319027},{"street":"Bloemenlaan","housenumber":"52","lat":51.4290153,"lon":4.3146397},{"street":"Duinstraat","housenumber":"52","lat":51.4287533,"lon":4.3251912},{"street":"Huijbergseweg","housenumber":"52","lat":51.4230627,"lon":4.3295788},{"street":"Huijgensstraat","housenumber":"52","lat":51.4238213,"lon":4.3341202},{"street":"KLM laan","housenumber":"52","lat":51.4256407,"lon":4.3298938},{"street":"Laan Olieslagers","housenumber":"52","lat":51.4272793,"lon":4.3322861},{"street":"Maststraat","housenumber":"52","lat":51.4198847,"lon":4.3319065},{"street":"Meulenblock","housenumber":"52","lat":51.4220065,"lon":4.3260815},{"street":"Mgr Nolensstraat","housenumber":"52","lat":51.4185339,"lon":4.3235091},{"street":"Ossendrechtseweg","housenumber":"52","lat":51.4191654,"lon":4.3216621},{"street":"Robert Kochstraat","housenumber":"52","lat":51.4269156,"lon":4.3248178},{"street":"Smirnofflaan","housenumber":"52","lat":51.4270598,"lon":4.328657},{"street":"St Lucasplein","housenumber":"52","lat":51.4275787,"lon":4.3244294},{"street":"Wouwbaan","housenumber":"52","lat":51.4263028,"lon":4.3264256},{"street":"Zandfort","housenumber":"52","lat":51.4352035,"lon":4.3257313},{"street":"De Jasmijn","housenumber":"52","lat":51.4321109,"lon":4.3143594},{"street":"De Wilg","housenumber":"52","lat":51.4289948,"lon":4.3133173},{"street":"in d' Hoef","housenumber":"52","lat":51.4306946,"lon":4.3218573},{"street":"op den Duyn","housenumber":"52","lat":51.4314638,"lon":4.321949},{"street":"Duinstraat","housenumber":"52a","lat":51.428754,"lon":4.3252775},{"street":"Huijbergseweg","housenumber":"53","lat":51.4235298,"lon":4.3320564},{"street":"Huijgensstraat","housenumber":"53","lat":51.4255171,"lon":4.3351163},{"street":"KLM laan","housenumber":"53","lat":51.4254327,"lon":4.330747},{"street":"Mgr Nolensstraat","housenumber":"53","lat":51.4180859,"lon":4.3235419},{"street":"Mgr Poelsstraat","housenumber":"53","lat":51.4189225,"lon":4.3246007},{"street":"Nieuweweg","housenumber":"53","lat":51.428301,"lon":4.3121303},{"street":"Oostlaan","housenumber":"53","lat":51.4267722,"lon":4.3357599},{"street":"Ouwe Raedthuysplein","housenumber":"53","lat":51.4254707,"lon":4.3218524},{"street":"Plesmanlaan","housenumber":"53","lat":51.4285216,"lon":4.3313657},{"street":"Pr Hendrikstraat","housenumber":"53","lat":51.4263151,"lon":4.3269448},{"street":"Putseweg","housenumber":"53","lat":51.4202628,"lon":4.3286527},{"street":"Raadhuisstraat","housenumber":"53","lat":51.4265901,"lon":4.3217928},{"street":"Sondermanlaan","housenumber":"53","lat":51.426252,"lon":4.332599},{"street":"Verlengde Duinstraat","housenumber":"53","lat":51.4283587,"lon":4.3332245},{"street":"De Wilg","housenumber":"53","lat":51.4290258,"lon":4.3130359},{"street":"in d' Hoef","housenumber":"53","lat":51.4307585,"lon":4.3214013},{"street":"Raadhuisstraat","housenumber":"53a","lat":51.4266054,"lon":4.3218368},{"street":"Aalbersestraat","housenumber":"54","lat":51.4207227,"lon":4.3239788},{"street":"Antwerpsestraatweg","housenumber":"54","lat":51.4311053,"lon":4.3189382},{"street":"Bloemenlaan","housenumber":"54","lat":51.4291199,"lon":4.3151596},{"street":"Burg Moorsstraat","housenumber":"54","lat":51.4200991,"lon":4.329323},{"street":"Duinstraat","housenumber":"54","lat":51.4287641,"lon":4.3253923},{"street":"Huijbergseweg","housenumber":"54","lat":51.4230607,"lon":4.3297475},{"street":"Huijgensstraat","housenumber":"54","lat":51.42382,"lon":4.334078},{"street":"KLM laan","housenumber":"54","lat":51.4255609,"lon":4.3300107},{"street":"Laan Olieslagers","housenumber":"54","lat":51.4273134,"lon":4.3323531},{"street":"Maststraat","housenumber":"54","lat":51.419852,"lon":4.3319555},{"street":"Meulenblock","housenumber":"54","lat":51.4220157,"lon":4.3261233},{"street":"Ossendrechtseweg","housenumber":"54","lat":51.4189208,"lon":4.3214522},{"street":"Putseweg","housenumber":"54","lat":51.4181448,"lon":4.3310165},{"street":"KLM laan","housenumber":"45","lat":51.4255927,"lon":4.330542},{"street":"Mgr Ariensstraat","housenumber":"45","lat":51.4217244,"lon":4.3278438},{"street":"Mgr Nolensstraat","housenumber":"45","lat":51.417993,"lon":4.3242054},{"street":"Mgr Poelsstraat","housenumber":"45","lat":51.4189921,"lon":4.3243403},{"street":"Minckelersweg","housenumber":"45","lat":51.4264113,"lon":4.3335858},{"street":"Oostlaan","housenumber":"45","lat":51.4267728,"lon":4.3360101},{"street":"Ouwe Raedthuysplein","housenumber":"45","lat":51.4254992,"lon":4.3217258},{"street":"Past van Roesselstraat","housenumber":"45","lat":51.420691,"lon":4.3312595},{"street":"Pasteurstraat","housenumber":"45","lat":51.4280967,"lon":4.3222011},{"street":"Plesmanlaan","housenumber":"45","lat":51.4283131,"lon":4.3311692},{"street":"Pr Bernhardstraat","housenumber":"45","lat":51.4267555,"lon":4.3259424},{"street":"Pr Hendrikstraat","housenumber":"45","lat":51.4261201,"lon":4.3272513},{"street":"Putseweg","housenumber":"45","lat":51.4204124,"lon":4.3282898},{"street":"Rozenlaan","housenumber":"45","lat":51.4305687,"lon":4.3168862},{"street":"Sondermanlaan","housenumber":"45","lat":51.4261831,"lon":4.3324649},{"street":"Verlengde Duinstraat","housenumber":"45","lat":51.4284978,"lon":4.3327036},{"street":"Wouwbaan","housenumber":"45","lat":51.4266325,"lon":4.3262616},{"street":"Zandfort","housenumber":"45","lat":51.435593,"lon":4.3270454},{"street":"De Acacia","housenumber":"45","lat":51.4314635,"lon":4.3131418},{"street":"De Anjer","housenumber":"45","lat":51.433029,"lon":4.3170465},{"street":"De Jasmijn","housenumber":"45","lat":51.4321415,"lon":4.3141538},{"street":"De Wilg","housenumber":"45","lat":51.4296819,"lon":4.3137084},{"street":"in d' Hoef","housenumber":"45","lat":51.4304575,"lon":4.3211896},{"street":"Aalbersestraat","housenumber":"46","lat":51.4207571,"lon":4.3238854},{"street":"Antwerpsestraatweg","housenumber":"46","lat":51.4306201,"lon":4.318964},{"street":"Burg Moorsstraat","housenumber":"46","lat":51.420297,"lon":4.3292629},{"street":"Buys Ballotstraat","housenumber":"46","lat":51.4239498,"lon":4.3323907},{"street":"Duinstraat","housenumber":"46","lat":51.4287758,"lon":4.3247018},{"street":"Huijbergseweg","housenumber":"46","lat":51.4229098,"lon":4.3289403},{"street":"Huijgensstraat","housenumber":"46","lat":51.4238254,"lon":4.3342467},{"street":"De Wilg","housenumber":"48","lat":51.4295845,"lon":4.3138688},{"street":"in d' Hoef","housenumber":"48","lat":51.4305569,"lon":4.3217075},{"street":"op den Duyn","housenumber":"48","lat":51.4313842,"lon":4.3217063},{"street":"Keesomstraat","housenumber":"48a","lat":51.4247401,"lon":4.332174},{"street":"Raadhuisstraat","housenumber":"48a","lat":51.4268038,"lon":4.3212592},{"street":"Keesomstraat","housenumber":"48b","lat":51.4247195,"lon":4.3321394},{"street":"Keesomstraat","housenumber":"48c","lat":51.4247012,"lon":4.3321085},{"street":"Keesomstraat","housenumber":"48d","lat":51.4246827,"lon":4.3320775},{"street":"Keesomstraat","housenumber":"48e","lat":51.4246634,"lon":4.332045},{"street":"Keesomstraat","housenumber":"48f","lat":51.4246439,"lon":4.3320122},{"street":"Keesomstraat","housenumber":"48h","lat":51.4246247,"lon":4.33198},{"street":"Keesomstraat","housenumber":"48j","lat":51.4246072,"lon":4.3319505},{"street":"Dennenlaan","housenumber":"49","lat":51.4174476,"lon":4.327496},{"street":"Duinstraat","housenumber":"49","lat":51.4293203,"lon":4.328241},{"street":"Huijgensstraat","housenumber":"49","lat":51.4257461,"lon":4.3355855},{"street":"KLM laan","housenumber":"49","lat":51.4255127,"lon":4.3306445},{"street":"Mgr Nolensstraat","housenumber":"49","lat":51.4180266,"lon":4.3239459},{"street":"Mgr Poelsstraat","housenumber":"49","lat":51.4189573,"lon":4.3244705},{"street":"Nieuweweg","housenumber":"49","lat":51.4282837,"lon":4.3131465},{"street":"Oostlaan","housenumber":"49","lat":51.4267727,"lon":4.3359101},{"street":"Ouwe Raedthuysplein","housenumber":"49","lat":51.4254084,"lon":4.3216827},{"street":"Pasteurstraat","housenumber":"49","lat":51.4281072,"lon":4.322359},{"street":"Plesmanlaan","housenumber":"49","lat":51.4284129,"lon":4.3312675},{"street":"Pr Hendrikstraat","housenumber":"49","lat":51.4262443,"lon":4.3270615},{"street":"Putseweg","housenumber":"49","lat":51.4203328,"lon":4.3284354},{"street":"Raadhuisstraat","housenumber":"49","lat":51.4267434,"lon":4.3216575},{"street":"Sondermanlaan","housenumber":"49","lat":51.4262176,"lon":4.332532},{"street":"Verlengde Duinstraat","housenumber":"49","lat":51.4284281,"lon":4.3329496},{"street":"De Acacia","housenumber":"49","lat":51.4313032,"lon":4.3130441},{"street":"De Jasmijn","housenumber":"49","lat":51.432142,"lon":4.3142828},{"street":"De Wilg","housenumber":"49","lat":51.429504,"lon":4.3139139},{"street":"in d' Hoef","housenumber":"49","lat":51.4306128,"lon":4.3212773},{"street":"Raadhuisstraat","housenumber":"49a","lat":51.4267118,"lon":4.3216881},{"street":"Doelstraat","housenumber":"4a","lat":51.434829,"lon":4.3172299},{"street":"Gemeynte","housenumber":"4a","lat":51.4309226,"lon":4.3281994},{"street":"Kloosterstraat","housenumber":"4a","lat":51.4235556,"lon":4.3279743},{"street":"Schapendreef","housenumber":"4a","lat":51.4196458,"lon":4.327028},{"street":"Sportlaan","housenumber":"4a","lat":51.4192754,"lon":4.3355668},{"street":"St Lucasplein","housenumber":"4a","lat":51.426889,"lon":4.3228197},{"street":"Valkestraat","housenumber":"4a","lat":51.4341141,"lon":4.3147121},{"street":"Wouwbaan","housenumber":"4a","lat":51.424196,"lon":4.3243085},{"street":"De Jasmijn","housenumber":"46","lat":51.43211,"lon":4.3141541},{"street":"De Wilg","housenumber":"46","lat":51.4296464,"lon":4.3137523},{"street":"in d' Hoef","housenumber":"46","lat":51.4305096,"lon":4.3216692},{"street":"op den Duyn","housenumber":"46","lat":51.4313544,"lon":4.3216309},{"street":"Antwerpsestraatweg","housenumber":"47","lat":51.4307773,"lon":4.318457},{"street":"Blériotlaan","housenumber":"47","lat":51.427069,"lon":4.3340526},{"street":"Dennenlaan","housenumber":"47","lat":51.4174411,"lon":4.3277693},{"street":"Duinstraat","housenumber":"47","lat":51.4292625,"lon":4.327811},{"street":"Edward Jennerstraat","housenumber":"47","lat":51.4283103,"lon":4.3259062},{"street":"Huijgensstraat","housenumber":"47","lat":51.4257453,"lon":4.3354993},{"street":"KLM laan","housenumber":"47","lat":51.4255481,"lon":4.3305862},{"street":"Mgr Nolensstraat","housenumber":"47","lat":51.4180012,"lon":4.324119},{"street":"Mgr Poelsstraat","housenumber":"47","lat":51.4189747,"lon":4.3244126},{"street":"Minckelersweg","housenumber":"47","lat":51.4264478,"lon":4.3336569},{"street":"Nieuweweg","housenumber":"47","lat":51.4285886,"lon":4.3131014},{"street":"Oostlaan","housenumber":"47","lat":51.4267951,"lon":4.3359099},{"street":"Ossendrechtseweg","housenumber":"47","lat":51.4199117,"lon":4.3226655},{"street":"Ouwe Raedthuysplein","housenumber":"47","lat":51.4254703,"lon":4.3216335},{"street":"Pasteurstraat","housenumber":"47","lat":51.4281064,"lon":4.3222728},{"street":"Plesmanlaan","housenumber":"47","lat":51.4283674,"lon":4.3312111},{"street":"Pr Hendrikstraat","housenumber":"47","lat":51.4261556,"lon":4.327193},{"street":"Putseweg","housenumber":"47","lat":51.4203771,"lon":4.3283625},{"street":"Raadhuisstraat","housenumber":"47","lat":51.4268606,"lon":4.3215566},{"street":"Sondermanlaan","housenumber":"47","lat":51.4262003,"lon":4.3324985},{"street":"Verlengde Duinstraat","housenumber":"47","lat":51.4284716,"lon":4.3327905},{"street":"Wouwbaan","housenumber":"47","lat":51.426815,"lon":4.3265593},{"street":"Zandfort","housenumber":"47","lat":51.4356313,"lon":4.3273034},{"street":"De Acacia","housenumber":"47","lat":51.4313737,"lon":4.3131379},{"street":"De Anjer","housenumber":"47","lat":51.4329741,"lon":4.3170472},{"street":"De Jasmijn","housenumber":"47","lat":51.4321418,"lon":4.3142184},{"street":"De Wilg","housenumber":"47","lat":51.4296199,"lon":4.3138105},{"street":"in d' Hoef","housenumber":"47","lat":51.4305641,"lon":4.3212448},{"street":"Duinstraat","housenumber":"47a","lat":51.4292999,"lon":4.3279683},{"street":"Pr Hendrikstraat","housenumber":"47a","lat":51.4260355,"lon":4.3267412},{"street":"Raadhuisstraat","housenumber":"47a","lat":51.4268188,"lon":4.3215913},{"street":"Aalbersestraat","housenumber":"48","lat":51.4207603,"lon":4.3237886},{"street":"Antwerpsestraatweg","housenumber":"48","lat":51.4308144,"lon":4.319004},{"street":"Burg Moorsstraat","housenumber":"48","lat":51.4202549,"lon":4.329208},{"street":"Duinstraat","housenumber":"48","lat":51.4287956,"lon":4.3249026},{"street":"Huijbergseweg","housenumber":"48","lat":51.4228975,"lon":4.3291923},{"street":"Huijgensstraat","housenumber":"48","lat":51.423824,"lon":4.3342046},{"street":"KLM laan","housenumber":"48","lat":51.425765,"lon":4.3297184},{"street":"Keesomstraat","housenumber":"48","lat":51.4244489,"lon":4.332294},{"street":"Laan Olieslagers","housenumber":"48","lat":51.4270541,"lon":4.3319709},{"street":"Maststraat","housenumber":"48","lat":51.419978,"lon":4.3317662},{"street":"Meulenblock","housenumber":"48","lat":51.4219878,"lon":4.3259961},{"street":"Mgr Nolensstraat","housenumber":"48","lat":51.4183726,"lon":4.3235229},{"street":"Onderstal","housenumber":"48","lat":51.4271958,"lon":4.3121851},{"street":"Ossendrechtseweg","housenumber":"48","lat":51.4197287,"lon":4.3213326},{"street":"Putseweg","housenumber":"48","lat":51.4191476,"lon":4.3295843},{"street":"Raadhuisstraat","housenumber":"48","lat":51.4268086,"lon":4.3212648},{"street":"Robert Kochstraat","housenumber":"48","lat":51.4269216,"lon":4.3249068},{"street":"Smirnofflaan","housenumber":"48","lat":51.4270819,"lon":4.3286031},{"street":"St Lucasplein","housenumber":"48","lat":51.4277334,"lon":4.3244055},{"street":"Suijkerbuijkstraat","housenumber":"48","lat":51.4211105,"lon":4.3309334},{"street":"Verlengde Duinstraat","housenumber":"48","lat":51.4274831,"lon":4.3348121},{"street":"Zandfort","housenumber":"48","lat":51.4350265,"lon":4.325045},{"street":"De Acacia","housenumber":"48","lat":51.4313391,"lon":4.313098},{"street":"De Jasmijn","housenumber":"48","lat":51.4321104,"lon":4.3142188},{"street":"Kloosterstraat","housenumber":"4b","lat":51.4235286,"lon":4.3279715},{"street":"St Lucasplein","housenumber":"4b","lat":51.4268935,"lon":4.3228615},{"street":"Valkestraat","housenumber":"4b","lat":51.4345427,"lon":4.3153074},{"street":"Kloosterstraat","housenumber":"4c","lat":51.4235016,"lon":4.3279687},{"street":"St Lucasplein","housenumber":"4c","lat":51.4268979,"lon":4.3229033},{"street":"Kloosterstraat","housenumber":"4d","lat":51.4234746,"lon":4.3279659},{"street":"St Lucasplein","housenumber":"4d","lat":51.4269024,"lon":4.3229451},{"street":"Kloosterstraat","housenumber":"4e","lat":51.4234454,"lon":4.3279626},{"street":"St Lucasplein","housenumber":"4e","lat":51.4269069,"lon":4.3229869},{"street":"St Lucasplein","housenumber":"4f","lat":51.4269114,"lon":4.3230288},{"street":"St Lucasplein","housenumber":"4h","lat":51.4269158,"lon":4.3230706},{"street":"Aalbersestraat","housenumber":"5","lat":51.4216317,"lon":4.3238551},{"street":"Antwerpsestraatweg","housenumber":"5","lat":51.4290773,"lon":4.3178131},{"street":"Bijentiende","housenumber":"5","lat":51.4304422,"lon":4.3253342},{"street":"Binnenweg","housenumber":"5","lat":51.4258078,"lon":4.3235487},{"street":"Bloemenlaan","housenumber":"5","lat":51.4335558,"lon":4.3165797},{"street":"Blériotlaan","housenumber":"5","lat":51.4277453,"lon":4.3329942},{"street":"Burg Moorsstraat","housenumber":"5","lat":51.4223102,"lon":4.3298491},{"street":"Buys Ballotstraat","housenumber":"5","lat":51.4241019,"lon":4.3336824},{"street":"Cameronlaan","housenumber":"5","lat":51.4267409,"lon":4.3175112},{"street":"Canadalaan","housenumber":"5","lat":51.4258884,"lon":4.3176226},{"street":"Couwenberghstraat","housenumber":"5","lat":51.4187408,"lon":4.332311},{"street":"Doctor de Bruijnlaan","housenumber":"5","lat":51.4193056,"lon":4.3311478},{"street":"Duinhoefplein","housenumber":"5","lat":51.429268,"lon":4.3243838},{"street":"Duinstraat","housenumber":"5","lat":51.4287829,"lon":4.3214779},{"street":"Duintjesplein","housenumber":"5","lat":51.4213145,"lon":4.3286426},{"street":"Edward Jennerstraat","housenumber":"5","lat":51.4281999,"lon":4.3236511},{"street":"Flemingstraat","housenumber":"5","lat":51.4274212,"lon":4.3220587},{"street":"Fokkerlaan","housenumber":"5","lat":51.4285585,"lon":4.329481},{"street":"Garry Horselaan","housenumber":"5","lat":51.4274824,"lon":4.3120633},{"street":"Gemeynte","housenumber":"5","lat":51.4311586,"lon":4.3282168},{"street":"Geyssendorfferlaan","housenumber":"5","lat":51.4270293,"lon":4.3326036},{"street":"Gravesandestraat","housenumber":"5","lat":51.4255409,"lon":4.332772},{"street":"Hamiltonlaan","housenumber":"5","lat":51.4266807,"lon":4.3157922},{"street":"Heideduinstede","housenumber":"5","lat":51.4289769,"lon":4.3269283},{"street":"Heistraat","housenumber":"5","lat":51.4261121,"lon":4.3253822},{"street":"Hugo de Grootstraat","housenumber":"5","lat":51.4263057,"lon":4.336838},{"street":"Huijbergseweg","housenumber":"5","lat":51.4231747,"lon":4.327593},{"street":"Huijgensstraat","housenumber":"5","lat":51.4264238,"lon":4.3349804},{"street":"Jef Adriaansenstraat","housenumber":"5","lat":51.4208251,"lon":4.3282083},{"street":"KLM laan","housenumber":"5","lat":51.4270937,"lon":4.327545},{"street":"Smirnofflaan","housenumber":"7","lat":51.4275617,"lon":4.3285982},{"street":"Sondermanlaan","housenumber":"7","lat":51.4266469,"lon":4.3320513},{"street":"St Lucasplein","housenumber":"7","lat":51.4276682,"lon":4.3225275},{"street":"Suijkerbuijkstraat","housenumber":"7","lat":51.4224327,"lon":4.3310178},{"street":"Trefpunt","housenumber":"7","lat":51.4224615,"lon":4.3274194},{"street":"Valkestraat","housenumber":"7","lat":51.4347889,"lon":4.3138182},{"street":"Verlengde Duinstraat","housenumber":"7","lat":51.4290974,"lon":4.3304176},{"street":"Wouwbaan","housenumber":"7","lat":51.4246183,"lon":4.3242235},{"street":"De Acacia","housenumber":"7","lat":51.4310192,"lon":4.3128917},{"street":"De Anjer","housenumber":"7","lat":51.4327041,"lon":4.316768},{"street":"De Berk","housenumber":"7","lat":51.4311124,"lon":4.3143281},{"street":"De Eik","housenumber":"7","lat":51.4302386,"lon":4.3126598},{"street":"De Hazelaar","housenumber":"7","lat":51.4325385,"lon":4.3162131},{"street":"De Hortensia","housenumber":"7","lat":51.4330406,"lon":4.3152975},{"street":"De Jasmijn","housenumber":"7","lat":51.4320719,"lon":4.3146733},{"street":"De Narcis","housenumber":"7","lat":51.4317984,"lon":4.3170812},{"street":"De Papaver","housenumber":"7","lat":51.4311581,"lon":4.3164202},{"street":"De Roos","housenumber":"7","lat":51.4312869,"lon":4.3171795},{"street":"De Sering","housenumber":"7","lat":51.4304583,"lon":4.3172356},{"street":"De Tulp","housenumber":"7","lat":51.43006,"lon":4.3160123},{"street":"Lammertiende","housenumber":"5","lat":51.4298334,"lon":4.3252775},{"street":"Lindberghlaan","housenumber":"5","lat":51.4260949,"lon":4.3311314},{"street":"Lorentzstraat","housenumber":"5","lat":51.4239412,"lon":4.3318168},{"street":"Maststraat","housenumber":"5","lat":51.4207176,"lon":4.3302237},{"street":"Matthias Wolffstraat","housenumber":"5","lat":51.4245354,"lon":4.3289417},{"street":"Meulenblock","housenumber":"5","lat":51.4226214,"lon":4.3258312},{"street":"Mgr Ariensstraat","housenumber":"5","lat":51.4218581,"lon":4.3261426},{"street":"Mgr Frenckenstraat","housenumber":"5","lat":51.4216937,"lon":4.326851},{"street":"Mgr Nolensstraat","housenumber":"5","lat":51.4196325,"lon":4.3245842},{"street":"Mgr Poelsstraat","housenumber":"5","lat":51.4206076,"lon":4.3250503},{"street":"Minckelersweg","housenumber":"5","lat":51.4247532,"lon":4.3303178},{"street":"Nieuwe Stee","housenumber":"5","lat":51.4354384,"lon":4.3238849},{"street":"Nijverheidstraat","housenumber":"5","lat":51.4328781,"lon":4.3292173},{"street":"Norbartstraat","housenumber":"5","lat":51.417655,"lon":4.3236095},{"street":"Olympialaan","housenumber":"5","lat":51.4181159,"lon":4.3347839},{"street":"Onderstal","housenumber":"5","lat":51.4245241,"lon":4.3223259},{"street":"Oostlaan","housenumber":"5","lat":51.4269522,"lon":4.3359937},{"street":"Ossendrechtseweg","housenumber":"5","lat":51.421885,"lon":4.3231801},{"street":"Parmentierlaan","housenumber":"5","lat":51.4280952,"lon":4.3289453},{"street":"Past van Roesselstraat","housenumber":"5","lat":51.4225233,"lon":4.3314852},{"street":"Pasteurstraat","housenumber":"5","lat":51.4273534,"lon":4.3215999},{"street":"Philomenahof","housenumber":"5","lat":51.4229403,"lon":4.3245021},{"street":"Plantagelaan","housenumber":"5","lat":51.4180072,"lon":4.3336938},{"street":"Plesmanlaan","housenumber":"5","lat":51.4267902,"lon":4.3287743},{"street":"Pr Bernhardstraat","housenumber":"5","lat":51.4265659,"lon":4.3228983},{"street":"Pr Clausstraat","housenumber":"5","lat":51.4239141,"lon":4.3298188},{"street":"Putseweg","housenumber":"5","lat":51.4220372,"lon":4.3250745},{"street":"Raadhuisstraat","housenumber":"5","lat":51.4282819,"lon":4.3198385},{"street":"Robert Kochstraat","housenumber":"5","lat":51.4266887,"lon":4.3235425},{"street":"Rubertstraat","housenumber":"5","lat":51.4203106,"lon":4.3299599},{"street":"Schapendreef","housenumber":"5","lat":51.4196242,"lon":4.327618},{"street":"Smirnofflaan","housenumber":"5","lat":51.4275968,"lon":4.3285111},{"street":"Sondermanlaan","housenumber":"5","lat":51.4266127,"lon":4.3319849},{"street":"St Lucasplein","housenumber":"5","lat":51.4276054,"lon":4.3225433},{"street":"Steenstraat","housenumber":"5","lat":51.4355569,"lon":4.3093703},{"street":"Suijkerbuijkstraat","housenumber":"5","lat":51.4224956,"lon":4.3310164},{"street":"Trefpunt","housenumber":"5","lat":51.4224608,"lon":4.3273691},{"street":"Verlengde Duinstraat","housenumber":"5","lat":51.4291409,"lon":4.3302584},{"street":"Vogelven","housenumber":"5","lat":51.4315065,"lon":4.3241196},{"street":"Wouwbaan","housenumber":"5","lat":51.4245548,"lon":4.3241531},{"street":"De Acacia","housenumber":"5","lat":51.4309549,"lon":4.3130008},{"street":"De Anjer","housenumber":"5","lat":51.4328024,"lon":4.3168017},{"street":"De Berk","housenumber":"5","lat":51.43107,"lon":4.3141071},{"street":"De Eik","housenumber":"5","lat":51.4301775,"lon":4.3128626},{"street":"De Hazelaar","housenumber":"5","lat":51.4325374,"lon":4.3160434},{"street":"De Hortensia","housenumber":"5","lat":51.4329866,"lon":4.3152988},{"street":"De Jasmijn","housenumber":"5","lat":51.4321738,"lon":4.3146716},{"street":"De Narcis","housenumber":"5","lat":51.4319064,"lon":4.3170931},{"street":"De Papaver","housenumber":"5","lat":51.4312608,"lon":4.3164186},{"street":"De Roos","housenumber":"5","lat":51.4311795,"lon":4.3172252},{"street":"De Sering","housenumber":"5","lat":51.4302404,"lon":4.3167157},{"street":"De Tulp","housenumber":"5","lat":51.429934,"lon":4.3160244},{"street":"De Vuurdoorn","housenumber":"5","lat":51.4325999,"lon":4.3123453},{"street":"De Wilg","housenumber":"5","lat":51.4292047,"lon":4.3136189},{"street":"De Zonnebloem","housenumber":"5","lat":51.4301418,"lon":4.3151639},{"street":"dokter van de Karplein","housenumber":"5","lat":51.4297598,"lon":4.3222291},{"street":"in d' Hoef","housenumber":"5","lat":51.4292688,"lon":4.3228006},{"street":"op den Duyn","housenumber":"5","lat":51.4291664,"lon":4.3212206},{"street":"van Houtenstraat","housenumber":"5","lat":51.4205707,"lon":4.3259282},{"street":"Van Ostaayland","housenumber":"5","lat":51.4310118,"lon":4.3271938},{"street":"Van Weerden Poelmanlaan","housenumber":"5","lat":51.4263712,"lon":4.3281657},{"street":"Van de Moerstraat","housenumber":"5","lat":51.4197835,"lon":4.3323013},{"street":"Aalbersestraat","housenumber":"50","lat":51.4207629,"lon":4.323692},{"street":"Antwerpsestraatweg","housenumber":"50","lat":51.4310155,"lon":4.3195361},{"street":"Bloemenlaan","housenumber":"50","lat":51.4292468,"lon":4.3149599},{"street":"Duinstraat","housenumber":"50","lat":51.4287964,"lon":4.3249889},{"street":"Huijgensstraat","housenumber":"50","lat":51.4238227,"lon":4.3341624},{"street":"KLM laan","housenumber":"50","lat":51.4256851,"lon":4.3298353},{"street":"Keesomstraat","housenumber":"50","lat":51.4244458,"lon":4.331949},{"street":"Laan Olieslagers","housenumber":"50","lat":51.4270885,"lon":4.3320377},{"street":"Maststraat","housenumber":"50","lat":51.4199181,"lon":4.3318565},{"street":"Meulenblock","housenumber":"50","lat":51.4219972,"lon":4.326039},{"street":"Mgr Nolensstraat","housenumber":"50","lat":51.4184812,"lon":4.3235136},{"street":"Ossendrechtseweg","housenumber":"50","lat":51.4194832,"lon":4.3210221},{"street":"Putseweg","housenumber":"50","lat":51.4190059,"lon":4.3298574},{"street":"Raadhuisstraat","housenumber":"50","lat":51.4267344,"lon":4.3213388},{"street":"Robert Kochstraat","housenumber":"50","lat":51.4269186,"lon":4.3248623},{"street":"St Lucasplein","housenumber":"50","lat":51.4276825,"lon":4.3244134},{"street":"Suijkerbuijkstraat","housenumber":"50","lat":51.4210935,"lon":4.3310345},{"street":"Raadhuisstraat","housenumber":"54","lat":51.4265706,"lon":4.3214459},{"street":"Robert Kochstraat","housenumber":"54","lat":51.4269126,"lon":4.3247732},{"street":"Smirnofflaan","housenumber":"54","lat":51.4270451,"lon":4.328693},{"street":"St Lucasplein","housenumber":"54","lat":51.4279715,"lon":4.3243849},{"street":"Wouwbaan","housenumber":"54","lat":51.4263984,"lon":4.3265267},{"street":"Zandfort","housenumber":"54","lat":51.4352235,"lon":4.3259465},{"street":"De Wilg","housenumber":"54","lat":51.4290205,"lon":4.3127325},{"street":"in d' Hoef","housenumber":"54","lat":51.4307769,"lon":4.3219829},{"street":"op den Duyn","housenumber":"54","lat":51.431507,"lon":4.3221206},{"street":"Duinstraat","housenumber":"54a","lat":51.428774,"lon":4.3254927},{"street":"Ossendrechtseweg","housenumber":"54a","lat":51.4188079,"lon":4.3209085},{"street":"Dennenlaan","housenumber":"55","lat":51.4173517,"lon":4.3258449},{"street":"Duinstraat","housenumber":"55","lat":51.4293334,"lon":4.3286865},{"street":"Huijgensstraat","housenumber":"55","lat":51.4255178,"lon":4.3351882},{"street":"KLM laan","housenumber":"55","lat":51.4253883,"lon":4.3308056},{"street":"Mgr Nolensstraat","housenumber":"55","lat":51.418103,"lon":4.3234553},{"street":"Mgr Poelsstraat","housenumber":"55","lat":51.4188075,"lon":4.3248047},{"street":"Nieuweweg","housenumber":"55","lat":51.4286109,"lon":4.3125975},{"street":"Oostlaan","housenumber":"55","lat":51.4260463,"lon":4.3359812},{"street":"Ossendrechtseweg","housenumber":"55","lat":51.4197475,"lon":4.3224105},{"street":"Ouwe Raedthuysplein","housenumber":"55","lat":51.425499,"lon":4.3219083},{"street":"Plesmanlaan","housenumber":"55","lat":51.4283237,"lon":4.3315637},{"street":"Pr Hendrikstraat","housenumber":"55","lat":51.4263595,"lon":4.3268862},{"street":"Putseweg","housenumber":"55","lat":51.4202187,"lon":4.32874},{"street":"Raadhuisstraat","housenumber":"55","lat":51.4265384,"lon":4.3218493},{"street":"Sondermanlaan","housenumber":"55","lat":51.4262692,"lon":4.3326325},{"street":"Verlengde Duinstraat","housenumber":"55","lat":51.4283243,"lon":4.3333978},{"street":"De Wilg","housenumber":"55","lat":51.4290123,"lon":4.3124886},{"street":"in d' Hoef","housenumber":"55","lat":51.4309304,"lon":4.3216065},{"street":"op den Duyn","housenumber":"55","lat":51.4318696,"lon":4.3226663},{"street":"Aalbersestraat","housenumber":"56","lat":51.4207256,"lon":4.3238832},{"street":"Antwerpsestraatweg","housenumber":"56","lat":51.4311592,"lon":4.318937},{"street":"Bloemenlaan","housenumber":"56","lat":51.429048,"lon":4.3151613},{"street":"Duinstraat","housenumber":"56","lat":51.4288296,"lon":4.3256784},{"street":"Huijbergseweg","housenumber":"56","lat":51.4230544,"lon":4.3301839},{"street":"Huijgensstraat","housenumber":"56","lat":51.4238186,"lon":4.3340358},{"street":"KLM laan","housenumber":"56","lat":51.4255254,"lon":4.3300691},{"street":"Laan Olieslagers","housenumber":"56","lat":51.4273476,"lon":4.3324201},{"street":"Maststraat","housenumber":"56","lat":51.4198186,"lon":4.3320055},{"street":"Ossendrechtseweg","housenumber":"56","lat":51.4185516,"lon":4.3213889},{"street":"Putseweg","housenumber":"56","lat":51.4181231,"lon":4.3315634},{"street":"Raadhuisstraat","housenumber":"56","lat":51.4264094,"lon":4.3215072},{"street":"Robert Kochstraat","housenumber":"56","lat":51.4269095,"lon":4.3247287},{"street":"Smirnofflaan","housenumber":"56","lat":51.4270302,"lon":4.3287295},{"street":"St Lucasplein","housenumber":"56","lat":51.4279614,"lon":4.324219},{"street":"Wouwbaan","housenumber":"56","lat":51.4264861,"lon":4.3266194},{"street":"Zandfort","housenumber":"56","lat":51.4352427,"lon":4.3260899},{"street":"De Wilg","housenumber":"56","lat":51.4290808,"lon":4.3121647},{"street":"in d' Hoef","housenumber":"56","lat":51.4308115,"lon":4.3220473},{"street":"op den Duyn","housenumber":"56","lat":51.4315246,"lon":4.3222052},{"street":"Dennenlaan","housenumber":"57","lat":51.4173212,"lon":4.3254575},{"street":"Duinstraat","housenumber":"57","lat":51.4293542,"lon":4.3290024},{"street":"Huijbergseweg","housenumber":"57","lat":51.423541,"lon":4.3323006},{"street":"Huijgensstraat","housenumber":"57","lat":51.4255186,"lon":4.3352745},{"street":"KLM laan","housenumber":"57","lat":51.4253527,"lon":4.3308495},{"street":"Mgr Nolensstraat","housenumber":"57","lat":51.4181198,"lon":4.3233255},{"street":"Mgr Poelsstraat","housenumber":"57","lat":51.4187625,"lon":4.3247913},{"street":"Nieuweweg","housenumber":"57","lat":51.4286181,"lon":4.3121897},{"street":"Oostlaan","housenumber":"57","lat":51.4260013,"lon":4.3359679},{"street":"Ossendrechtseweg","housenumber":"57","lat":51.4196935,"lon":4.3223974},{"street":"Plesmanlaan","housenumber":"57","lat":51.4282049,"lon":4.3314462},{"street":"Putseweg","housenumber":"57","lat":51.420079,"lon":4.3290062},{"street":"Raadhuisstraat","housenumber":"57","lat":51.4264761,"lon":4.3219226},{"street":"Sondermanlaan","housenumber":"57","lat":51.4262867,"lon":4.3326685},{"street":"Verlengde Duinstraat","housenumber":"57","lat":51.4282194,"lon":4.333731},{"street":"Wouwbaan","housenumber":"57","lat":51.4271499,"lon":4.3268103},{"street":"in d' Hoef","housenumber":"57","lat":51.4309677,"lon":4.3216666},{"street":"Aalbersestraat","housenumber":"58","lat":51.4207289,"lon":4.3237864},{"street":"Antwerpsestraatweg","housenumber":"58","lat":51.4312401,"lon":4.3189351},{"street":"Bloemenlaan","housenumber":"58","lat":51.428985,"lon":4.3151484},{"street":"Duinstraat","housenumber":"58","lat":51.4288583,"lon":4.3258646},{"street":"Huijbergseweg","housenumber":"58","lat":51.4230553,"lon":4.3302845},{"street":"Huijgensstraat","housenumber":"58","lat":51.4237076,"lon":4.3339971},{"street":"KLM laan","housenumber":"58","lat":51.4254367,"lon":4.3302005},{"street":"Laan Olieslagers","housenumber":"58","lat":51.4274006,"lon":4.3324819},{"street":"Maststraat","housenumber":"58","lat":51.4195949,"lon":4.33232},{"street":"Ossendrechtseweg","housenumber":"58","lat":51.418398,"lon":4.3213062},{"street":"Putseweg","housenumber":"58","lat":51.4179735,"lon":4.331955},{"street":"Raadhuisstraat","housenumber":"58","lat":51.4263033,"lon":4.3216966},{"street":"Robert Kochstraat","housenumber":"58","lat":51.4269065,"lon":4.3246842},{"street":"Smirnofflaan","housenumber":"58","lat":51.426934,"lon":4.3286189},{"street":"St Lucasplein","housenumber":"58","lat":51.4279565,"lon":4.3241374},{"street":"Wouwbaan","housenumber":"58","lat":51.4267258,"lon":4.3269282},{"street":"Zandfort","housenumber":"58","lat":51.4352808,"lon":4.3263191},{"street":"in d' Hoef","housenumber":"58","lat":51.4308772,"lon":4.3221962},{"street":"op den Duyn","housenumber":"58","lat":51.4315547,"lon":4.3223839},{"street":"Duinstraat","housenumber":"59","lat":51.4293553,"lon":4.3291174},{"street":"Huijbergseweg","housenumber":"59","lat":51.4234898,"lon":4.3326037},{"street":"Huijgensstraat","housenumber":"59","lat":51.4255282,"lon":4.3353461},{"street":"KLM laan","housenumber":"59","lat":51.4252995,"lon":4.3309227},{"street":"Mgr Nolensstraat","housenumber":"59","lat":51.4182084,"lon":4.3231797},{"street":"Mgr Poelsstraat","housenumber":"59","lat":51.4187174,"lon":4.324778},{"street":"Minckelersweg","housenumber":"59","lat":51.4269578,"lon":4.3343785},{"street":"Oostlaan","housenumber":"59","lat":51.4259563,"lon":4.3359689},{"street":"Plesmanlaan","housenumber":"59","lat":51.4280702,"lon":4.3313157},{"street":"Putseweg","housenumber":"59","lat":51.4200239,"lon":4.3290752},{"street":"Raadhuisstraat","housenumber":"59","lat":51.4264225,"lon":4.3219526},{"street":"Sondermanlaan","housenumber":"59","lat":51.4263037,"lon":4.3326996},{"street":"Verlengde Duinstraat","housenumber":"59","lat":51.4281587,"lon":4.3339769},{"street":"Zandfort","housenumber":"59","lat":51.4356515,"lon":4.3275474},{"street":"in d' Hoef","housenumber":"59","lat":51.4310402,"lon":4.3218027},{"street":"op den Duyn","housenumber":"59","lat":51.4315843,"lon":4.3228026},{"street":"Antwerpsestraatweg","housenumber":"5a","lat":51.4290778,"lon":4.3177697},{"street":"Doelstraat","housenumber":"5a","lat":51.4340019,"lon":4.3170754},{"street":"Duinstraat","housenumber":"5a","lat":51.428818,"lon":4.3218169},{"street":"Nieuwe Stee","housenumber":"5a","lat":51.4357374,"lon":4.3241368},{"street":"Onderstal","housenumber":"5a","lat":51.4245244,"lon":4.3221436},{"street":"Antwerpsestraatweg","housenumber":"5b","lat":51.4290783,"lon":4.3177265},{"street":"Duinstraat","housenumber":"5b","lat":51.4288269,"lon":4.3220521},{"street":"Raadhuisstraat","housenumber":"5b","lat":51.4283046,"lon":4.320026},{"street":"Antwerpsestraatweg","housenumber":"5c","lat":51.4290789,"lon":4.3176833},{"street":"Antwerpsestraatweg","housenumber":"5d","lat":51.4290794,"lon":4.31764},{"street":"Antwerpsestraatweg","housenumber":"5e","lat":51.4290799,"lon":4.3175965},{"street":"Antwerpsestraatweg","housenumber":"5f","lat":51.4290804,"lon":4.317553},{"street":"Aalbersestraat","housenumber":"6","lat":51.4213329,"lon":4.3237982},{"street":"Antwerpsestraatweg","housenumber":"6","lat":51.4288061,"lon":4.3191647},{"street":"Bijentiende","housenumber":"6","lat":51.430195,"lon":4.325183},{"street":"Binnenweg","housenumber":"6","lat":51.4257296,"lon":4.3238525},{"street":"Bloemenlaan","housenumber":"6","lat":51.4337401,"lon":4.3161008},{"street":"Blériotlaan","housenumber":"6","lat":51.4273134,"lon":4.3331602},{"street":"Buys Ballotstraat","housenumber":"6","lat":51.4240927,"lon":4.3340975},{"street":"Cameronlaan","housenumber":"6","lat":51.4267911,"lon":4.3180328},{"street":"Canadalaan","housenumber":"6","lat":51.4262753,"lon":4.3166788},{"street":"Couwenberghstraat","housenumber":"6","lat":51.4186388,"lon":4.3325362},{"street":"Doelstraat","housenumber":"6","lat":51.4344051,"lon":4.3170488},{"street":"Duinhoefplein","housenumber":"6","lat":51.4292787,"lon":4.3242284},{"street":"Duinstraat","housenumber":"6","lat":51.4284895,"lon":4.3209121},{"street":"Duintjesplein","housenumber":"6","lat":51.4212792,"lon":4.3287153},{"street":"Flemingstraat","housenumber":"6","lat":51.4271861,"lon":4.321906},{"street":"Fokkerlaan","housenumber":"6","lat":51.4283952,"lon":4.3292804},{"street":"Garry Horselaan","housenumber":"6","lat":51.4277594,"lon":4.3128621},{"street":"Gemeynte","housenumber":"6","lat":51.4308808,"lon":4.3284395},{"street":"Gravesandestraat","housenumber":"6","lat":51.4249423,"lon":4.3321819},{"street":"Griblingstraat","housenumber":"6","lat":51.4283897,"lon":4.3227445},{"street":"Heideduinstede","housenumber":"6","lat":51.4289906,"lon":4.3271106},{"street":"Heistraat","housenumber":"6","lat":51.4275021,"lon":4.3259969},{"street":"Hugo de Grootstraat","housenumber":"6","lat":51.4267715,"lon":4.3366547},{"street":"Huijgensstraat","housenumber":"6","lat":51.4256564,"lon":4.3346098},{"street":"Jef Adriaansenstraat","housenumber":"6","lat":51.4206925,"lon":4.3284558},{"street":"KLM laan","housenumber":"6","lat":51.4267609,"lon":4.327524},{"street":"Kamerlingh Onnesstraat","housenumber":"6","lat":51.4260853,"lon":4.3344308},{"street":"Keesomstraat","housenumber":"6","lat":51.4245108,"lon":4.3341762},{"street":"Kloosterstraat","housenumber":"6","lat":51.4236498,"lon":4.3274381},{"street":"Laan Olieslagers","housenumber":"6","lat":51.4259868,"lon":4.3302391},{"street":"Lammertiende","housenumber":"6","lat":51.4296228,"lon":4.325653},{"street":"Lindberghlaan","housenumber":"6","lat":51.4259106,"lon":4.3309085},{"street":"Matthias Wolffstraat","housenumber":"6","lat":51.4242936,"lon":4.3280558},{"street":"Meulenblock","housenumber":"6","lat":51.4226361,"lon":4.325973},{"street":"Mgr Ariensstraat","housenumber":"6","lat":51.4217975,"lon":4.3272307},{"street":"Mgr Frenckenstraat","housenumber":"6","lat":51.4216366,"lon":4.3264929},{"street":"Mgr Nolensstraat","housenumber":"6","lat":51.4192301,"lon":4.3248092},{"street":"Minckelersweg","housenumber":"6","lat":51.4246501,"lon":4.3306933},{"street":"Molenstraat","housenumber":"6","lat":51.4224952,"lon":4.327896},{"street":"Nieuwe Stee","housenumber":"6","lat":51.4362092,"lon":4.3256072},{"street":"Nieuweweg","housenumber":"6","lat":51.4286063,"lon":4.3179614},{"street":"Norbartstraat","housenumber":"6","lat":51.4178204,"lon":4.3230162},{"street":"Onderstal","housenumber":"6","lat":51.4247856,"lon":4.3218615},{"street":"Oostlaan","housenumber":"6","lat":51.4270516,"lon":4.3368065},{"street":"Ossendrechtseweg","housenumber":"6","lat":51.4220532,"lon":4.3228886},{"street":"Parmentierlaan","housenumber":"6","lat":51.4278571,"lon":4.3288124},{"street":"Past van Roesselstraat","housenumber":"6","lat":51.421517,"lon":4.3318578},{"street":"Pasteurstraat","housenumber":"6","lat":51.4278583,"lon":4.321689},{"street":"Paus Leo XIIIestraat","housenumber":"6","lat":51.421037,"lon":4.3277864},{"street":"Plantagelaan","housenumber":"6","lat":51.4188671,"lon":4.3336265},{"street":"Plesmanlaan","housenumber":"6","lat":51.4266676,"lon":4.3301288},{"street":"Pr Bernhardstraat","housenumber":"6","lat":51.4263216,"lon":4.3222446},{"street":"Pr Clausstraat","housenumber":"6","lat":51.4240796,"lon":4.330232},{"street":"Putseweg","housenumber":"6","lat":51.4209931,"lon":4.3259183},{"street":"Raadhuisstraat","housenumber":"6","lat":51.4280198,"lon":4.3196864},{"street":"Robert Kochstraat","housenumber":"6","lat":51.4269425,"lon":4.3237811},{"street":"Rubertstraat","housenumber":"6","lat":51.4201288,"lon":4.3297341},{"street":"Schapendreef","housenumber":"6","lat":51.4196321,"lon":4.3265107},{"street":"Semmelweissstraat","housenumber":"6","lat":51.4271956,"lon":4.3239333},{"street":"Smirnofflaan","housenumber":"6","lat":51.427362,"lon":4.3283872},{"street":"Sondermanlaan","housenumber":"6","lat":51.4263351,"lon":4.3316016},{"street":"Sportlaan","housenumber":"6","lat":51.4182363,"lon":4.335629},{"street":"St Lucasplein","housenumber":"6","lat":51.4272853,"lon":4.3229247},{"street":"Struikenlaan","housenumber":"6","lat":51.4325324,"lon":4.3139374},{"street":"Suijkerbuijkstraat","housenumber":"6","lat":51.4224926,"lon":4.3306857},{"street":"Torontolaan","housenumber":"6","lat":51.4279451,"lon":4.3174161},{"street":"Trefpunt","housenumber":"6","lat":51.4222252,"lon":4.3274393},{"street":"Verlengde Duinstraat","housenumber":"6","lat":51.4289033,"lon":4.3298325},{"street":"Vogelven","housenumber":"6","lat":51.4311772,"lon":4.3245536},{"street":"Wouwbaan","housenumber":"6","lat":51.4243401,"lon":4.3242731},{"street":"Zandfort","housenumber":"6","lat":51.4344334,"lon":4.3201402},{"street":"De Acacia","housenumber":"6","lat":51.430987,"lon":4.3129462},{"street":"De Anjer","housenumber":"6","lat":51.4327533,"lon":4.3168031},{"street":"De Berk","housenumber":"6","lat":51.4311161,"lon":4.3142354},{"street":"De Eik","housenumber":"6","lat":51.4302131,"lon":4.3128186},{"street":"De Hazelaar","housenumber":"6","lat":51.4325379,"lon":4.3161275},{"street":"De Hortensia","housenumber":"6","lat":51.4330344,"lon":4.3155997},{"street":"De Jasmijn","housenumber":"6","lat":51.4321227,"lon":4.3146725},{"street":"De Narcis","housenumber":"6","lat":51.4318525,"lon":4.3170943},{"street":"De Papaver","housenumber":"6","lat":51.4312092,"lon":4.3164192},{"street":"De Roos","housenumber":"6","lat":51.4312424,"lon":4.3172237},{"street":"De Sering","housenumber":"6","lat":51.4302365,"lon":4.3167923},{"street":"De Tulp","housenumber":"6","lat":51.4300119,"lon":4.316006},{"street":"De Vuurdoorn","housenumber":"6","lat":51.4327274,"lon":4.3129794},{"street":"de Wildert","housenumber":"6","lat":51.4307495,"lon":4.3251828},{"street":"De Wilg","housenumber":"6","lat":51.4291949,"lon":4.3135329},{"street":"De Zonnebloem","housenumber":"6","lat":51.4300913,"lon":4.3151644},{"street":"dokter van de Karplein","housenumber":"6","lat":51.4298115,"lon":4.322218},{"street":"op den Duyn","housenumber":"6","lat":51.4295393,"lon":4.320708},{"street":"van 't Hoffstraat","housenumber":"6","lat":51.424302,"lon":4.3309601},{"street":"van Houtenstraat","housenumber":"6","lat":51.4203789,"lon":4.3255544},{"street":"Van Weerden Poelmanlaan","housenumber":"6","lat":51.4261671,"lon":4.3284581},{"street":"van der Dilftstraat","housenumber":"6","lat":51.4222495,"lon":4.328906},{"street":"Van der Meulenplein","housenumber":"6","lat":51.4220948,"lon":4.3238191},{"street":"Aalbersestraat","housenumber":"60","lat":51.4207314,"lon":4.3236898},{"street":"Antwerpsestraatweg","housenumber":"60","lat":51.4313275,"lon":4.3189265},{"street":"Bloemenlaan","housenumber":"60","lat":51.4289131,"lon":4.3151501},{"street":"Huijbergseweg","housenumber":"60","lat":51.4230663,"lon":4.3304999},{"street":"Huijgensstraat","housenumber":"60","lat":51.4237092,"lon":4.33404},{"street":"KLM laan","housenumber":"60","lat":51.4254013,"lon":4.3302589},{"street":"Laan Olieslagers","housenumber":"60","lat":51.4274349,"lon":4.3325489},{"street":"Maststraat","housenumber":"60","lat":51.4195595,"lon":4.3323783},{"street":"Ossendrechtseweg","housenumber":"60","lat":51.4180462,"lon":4.3211707},{"street":"Putseweg","housenumber":"60","lat":51.4177354,"lon":4.3324637},{"street":"Robert Kochstraat","housenumber":"60","lat":51.4269035,"lon":4.3246396},{"street":"Smirnofflaan","housenumber":"60","lat":51.4269489,"lon":4.3285823},{"street":"St Lucasplein","housenumber":"60","lat":51.4279465,"lon":4.3239728},{"street":"Wouwbaan","housenumber":"60","lat":51.426815,"lon":4.3270219},{"street":"Zandfort","housenumber":"60","lat":51.4353098,"lon":4.3265486},{"street":"in d' Hoef","housenumber":"60","lat":51.4309032,"lon":4.3222698},{"street":"op den Duyn","housenumber":"60","lat":51.431566,"lon":4.3224712},{"street":"Ossendrechtseweg","housenumber":"60a","lat":51.4181824,"lon":4.3190149},{"street":"Huijbergseweg","housenumber":"61","lat":51.4234918,"lon":4.3328194},{"street":"Huijgensstraat","housenumber":"61","lat":51.4255289,"lon":4.335418},{"street":"KLM laan","housenumber":"61","lat":51.4251661,"lon":4.3310839},{"street":"Mgr Nolensstraat","housenumber":"61","lat":51.4183251,"lon":4.3231626},{"street":"Mgr Poelsstraat","housenumber":"61","lat":51.4186813,"lon":4.3247645},{"street":"Minckelersweg","housenumber":"61","lat":51.4270768,"lon":4.3346202},{"street":"Oostlaan","housenumber":"61","lat":51.4259024,"lon":4.3359702},{"street":"Ossendrechtseweg","housenumber":"61","lat":51.419274,"lon":4.3227235},{"street":"Ouwe Raedthuysplein","housenumber":"61","lat":51.4255007,"lon":4.3216859},{"street":"Plesmanlaan","housenumber":"61","lat":51.4279413,"lon":4.3311913},{"street":"Putseweg","housenumber":"61","lat":51.4199886,"lon":4.3291479},{"street":"Raadhuisstraat","housenumber":"61","lat":51.4262738,"lon":4.3221594},{"street":"Sondermanlaan","housenumber":"61","lat":51.4263209,"lon":4.3327331},{"street":"Verlengde Duinstraat","housenumber":"61","lat":51.4281066,"lon":4.3341794},{"street":"Wouwbaan","housenumber":"61","lat":51.4273315,"lon":4.3270074},{"street":"Zandfort","housenumber":"61","lat":51.4356612,"lon":4.3276191},{"street":"in d' Hoef","housenumber":"61","lat":51.4310715,"lon":4.3218712},{"street":"Raadhuisstraat","housenumber":"61a","lat":51.4262845,"lon":4.3221911},{"street":"Wouwbaan","housenumber":"61a","lat":51.4275907,"lon":4.3267978},{"street":"Wouwbaan","housenumber":"61b","lat":51.4275708,"lon":4.3268447},{"street":"Wouwbaan","housenumber":"61c","lat":51.4275553,"lon":4.3268823},{"street":"Wouwbaan","housenumber":"61d","lat":51.42754,"lon":4.3269188},{"street":"Wouwbaan","housenumber":"61e","lat":51.4275247,"lon":4.3269558},{"street":"Aalbersestraat","housenumber":"62","lat":51.4206122,"lon":4.3235326},{"street":"Antwerpsestraatweg","housenumber":"62","lat":51.4314018,"lon":4.3189711},{"street":"Bloemenlaan","housenumber":"62","lat":51.4288502,"lon":4.3151516},{"street":"Duinstraat","housenumber":"62","lat":51.429043,"lon":4.327399},{"street":"Huijbergseweg","housenumber":"62","lat":51.4230672,"lon":4.3306005},{"street":"Huijgensstraat","housenumber":"62","lat":51.4237107,"lon":4.334083},{"street":"KLM laan","housenumber":"62","lat":51.4253125,"lon":4.330376},{"street":"Laan Olieslagers","housenumber":"62","lat":51.4274686,"lon":4.3326148},{"street":"Maststraat","housenumber":"62","lat":51.419524,"lon":4.3324367},{"street":"Ossendrechtseweg","housenumber":"62","lat":51.4177942,"lon":4.3211335},{"street":"Robert Kochstraat","housenumber":"62","lat":51.4269005,"lon":4.3245951},{"street":"Smirnofflaan","housenumber":"62","lat":51.4269637,"lon":4.328546},{"street":"St Lucasplein","housenumber":"62","lat":51.4279416,"lon":4.3238914},{"street":"Wouwbaan","housenumber":"62","lat":51.4273579,"lon":4.3275329},{"street":"Zandfort","housenumber":"62","lat":51.4353388,"lon":4.3267636},{"street":"in d' Hoef","housenumber":"62","lat":51.4309493,"lon":4.3224364},{"street":"Huijbergseweg","housenumber":"63","lat":51.4235142,"lon":4.3330376},{"street":"Huijgensstraat","housenumber":"63","lat":51.4255296,"lon":4.3355043},{"street":"Mgr Poelsstraat","housenumber":"63","lat":51.4186362,"lon":4.3247512},{"street":"Minckelersweg","housenumber":"63","lat":51.427205,"lon":4.334876},{"street":"Oostlaan","housenumber":"63","lat":51.4258395,"lon":4.3359716},{"street":"Ouwe Raedthuysplein","housenumber":"63","lat":51.4254717,"lon":4.3215936},{"street":"Putseweg","housenumber":"63","lat":51.4199092,"lon":4.3293079},{"street":"Raadhuisstraat","housenumber":"63","lat":51.4262528,"lon":4.3220893},{"street":"Sondermanlaan","housenumber":"63","lat":51.4263381,"lon":4.3327666},{"street":"Verlengde Duinstraat","housenumber":"63","lat":51.4280805,"lon":4.3342806},{"street":"Wouwbaan","housenumber":"63","lat":51.4274404,"lon":4.3271199},{"street":"Zandfort","housenumber":"63","lat":51.4357182,"lon":4.3279629},{"street":"in d' Hoef","housenumber":"63","lat":51.4311305,"lon":4.3220231},{"street":"Raadhuisstraat","housenumber":"63a","lat":51.4262411,"lon":4.3221878},{"street":"Aalbersestraat","housenumber":"64","lat":51.4205521,"lon":4.323528},{"street":"Antwerpsestraatweg","housenumber":"64","lat":51.4316091,"lon":4.3189796},{"street":"Bloemenlaan","housenumber":"64","lat":51.4287872,"lon":4.3151387},{"street":"Duinstraat","housenumber":"64","lat":51.4290739,"lon":4.3278297},{"street":"Huijbergseweg","housenumber":"64","lat":51.423078,"lon":4.3308016},{"street":"Huijgensstraat","housenumber":"64","lat":51.4237123,"lon":4.334126},{"street":"KLM laan","housenumber":"64","lat":51.4252682,"lon":4.3304489},{"street":"Laan Olieslagers","housenumber":"64","lat":51.4275023,"lon":4.3326808},{"street":"Maststraat","housenumber":"64","lat":51.4194796,"lon":4.3324952},{"street":"Ossendrechtseweg","housenumber":"64","lat":51.4177243,"lon":4.3209592},{"street":"Robert Kochstraat","housenumber":"64","lat":51.4268975,"lon":4.3245506},{"street":"Smirnofflaan","housenumber":"64","lat":51.4269784,"lon":4.3285099},{"street":"St Lucasplein","housenumber":"64","lat":51.4278348,"lon":4.3239902},{"street":"Wouwbaan","housenumber":"64","lat":51.4274027,"lon":4.3275807},{"street":"Zandfort","housenumber":"64","lat":51.435387,"lon":4.3271221},{"street":"in d' Hoef","housenumber":"64","lat":51.430966,"lon":4.3225167},{"street":"Huijbergseweg","housenumber":"65","lat":51.4235044,"lon":4.3332217},{"street":"Huijgensstraat","housenumber":"65","lat":51.4255304,"lon":4.3355905},{"street":"Mgr Poelsstraat","housenumber":"65","lat":51.4185912,"lon":4.3247378},{"street":"Minckelersweg","housenumber":"65","lat":51.4272784,"lon":4.3350469},{"street":"Oostlaan","housenumber":"65","lat":51.4257856,"lon":4.3359729},{"street":"Ouwe Raedthuysplein","housenumber":"65","lat":51.4253857,"lon":4.3216634},{"street":"Putseweg","housenumber":"65","lat":51.419865,"lon":4.3293952},{"street":"Sondermanlaan","housenumber":"65","lat":51.4263554,"lon":4.3328001},{"street":"Verlengde Duinstraat","housenumber":"65","lat":51.4280373,"lon":4.3344686},{"street":"Wouwbaan","housenumber":"65","lat":51.4274858,"lon":4.3271764},{"street":"Zandfort","housenumber":"65","lat":51.4365487,"lon":4.3283783},{"street":"in d' Hoef","housenumber":"65","lat":51.431155,"lon":4.3220984},{"street":"Aalbersestraat","housenumber":"66","lat":51.420492,"lon":4.3235233},{"street":"Duinstraat","housenumber":"66","lat":51.4290396,"lon":4.3280175},{"street":"Huijbergseweg","housenumber":"66","lat":51.423079,"lon":4.3309166},{"street":"Huijgensstraat","housenumber":"66","lat":51.4237138,"lon":4.3341689},{"street":"Laan Olieslagers","housenumber":"66","lat":51.4275359,"lon":4.3327467},{"street":"Maststraat","housenumber":"66","lat":51.4194442,"lon":4.3325535},{"street":"Ossendrechtseweg","housenumber":"66","lat":51.4169247,"lon":4.3145406},{"street":"Smirnofflaan","housenumber":"66","lat":51.4269931,"lon":4.3284737},{"street":"St Lucasplein","housenumber":"66","lat":51.4278447,"lon":4.3241542},{"street":"Wouwbaan","housenumber":"66","lat":51.4275136,"lon":4.3276965},{"street":"Zandfort","housenumber":"66","lat":51.4354299,"lon":4.3273763},{"street":"in d' Hoef","housenumber":"66","lat":51.4309679,"lon":4.3232842},{"street":"Huijbergseweg","housenumber":"67","lat":51.4235155,"lon":4.3334515},{"street":"Huijgensstraat","housenumber":"67","lat":51.4253024,"lon":4.3350463},{"street":"Mgr Poelsstraat","housenumber":"67","lat":51.4185529,"lon":4.3244799},{"street":"Oostlaan","housenumber":"67","lat":51.4257406,"lon":4.3359739},{"street":"Ouwe Raedthuysplein","housenumber":"67","lat":51.4254196,"lon":4.3217514},{"street":"Putseweg","housenumber":"67","lat":51.4198297,"lon":4.3294679},{"street":"Raadhuisstraat","housenumber":"67","lat":51.4261326,"lon":4.3222937},{"street":"Sondermanlaan","housenumber":"67","lat":51.4263726,"lon":4.3328336},{"street":"Wouwbaan","housenumber":"67","lat":51.4275402,"lon":4.3272183},{"street":"in d' Hoef","housenumber":"67","lat":51.4311992,"lon":4.3222627},{"street":"Raadhuisstraat","housenumber":"67a","lat":51.4261196,"lon":4.3222617},{"street":"Aalbersestraat","housenumber":"68","lat":51.420432,"lon":4.3235187},{"street":"Duinstraat","housenumber":"68","lat":51.4290507,"lon":4.3282473},{"street":"Huijbergseweg","housenumber":"68","lat":51.4230807,"lon":4.3311035},{"street":"Huijgensstraat","housenumber":"68","lat":51.4237154,"lon":4.3342119},{"street":"Laan Olieslagers","housenumber":"68","lat":51.4275702,"lon":4.3328137},{"street":"Maststraat","housenumber":"68","lat":51.4194087,"lon":4.3326119},{"street":"Minckelersweg","housenumber":"68","lat":51.4257736,"lon":4.3329527},{"street":"Ossendrechtseweg","housenumber":"68","lat":51.4171947,"lon":4.3175102},{"street":"Putseweg","housenumber":"68","lat":51.4170879,"lon":4.3334275},{"street":"Smirnofflaan","housenumber":"68","lat":51.4270079,"lon":4.3284376},{"street":"St Lucasplein","housenumber":"68","lat":51.4278496,"lon":4.3242349},{"street":"Wouwbaan","housenumber":"68","lat":51.4275596,"lon":4.3277453},{"street":"in d' Hoef","housenumber":"68","lat":51.4309516,"lon":4.3233649},{"street":"Ossendrechtseweg","housenumber":"68a","lat":51.4172498,"lon":4.3155516},{"street":"Huijbergseweg","housenumber":"69","lat":51.4235263,"lon":4.3336525},{"street":"Huijgensstraat","housenumber":"69","lat":51.4252524,"lon":4.3350504},{"street":"Mgr Poelsstraat","housenumber":"69","lat":51.4185613,"lon":4.3244222},{"street":"Burg Moorsstraat","housenumber":"7","lat":51.4222611,"lon":4.3298537},{"street":"Buys Ballotstraat","housenumber":"7","lat":51.4241968,"lon":4.3332488},{"street":"Cameronlaan","housenumber":"7","lat":51.4270107,"lon":4.3174668},{"street":"Canadalaan","housenumber":"7","lat":51.4259034,"lon":4.3172915},{"street":"Couwenberghstraat","housenumber":"7","lat":51.4187863,"lon":4.3323675},{"street":"Doctor de Bruijnlaan","housenumber":"7","lat":51.4195059,"lon":4.3314307},{"street":"Duinhoefplein","housenumber":"7","lat":51.4292463,"lon":4.3241497},{"street":"Duinstraat","housenumber":"7","lat":51.428826,"lon":4.3223279},{"street":"Duintjesplein","housenumber":"7","lat":51.4212438,"lon":4.3287737},{"street":"Edward Jennerstraat","housenumber":"7","lat":51.4282008,"lon":4.3237517},{"street":"Flemingstraat","housenumber":"7","lat":51.42744,"lon":4.3221446},{"street":"Fokkerlaan","housenumber":"7","lat":51.4284972,"lon":4.329655},{"street":"Garry Horselaan","housenumber":"7","lat":51.4276811,"lon":4.3121737},{"street":"Gemeynte","housenumber":"7","lat":51.4311126,"lon":4.3284709},{"street":"Geyssendorfferlaan","housenumber":"7","lat":51.426988,"lon":4.3326579},{"street":"Gravesandestraat","housenumber":"7","lat":51.4254965,"lon":4.3328305},{"street":"Hamiltonlaan","housenumber":"7","lat":51.4267148,"lon":4.31559},{"street":"Heideduinstede","housenumber":"7","lat":51.4288662,"lon":4.3269701},{"street":"Heistraat","housenumber":"7","lat":51.4262017,"lon":4.3253513},{"street":"Hugo de Grootstraat","housenumber":"7","lat":51.4263066,"lon":4.3369387},{"street":"Huijbergseweg","housenumber":"7","lat":51.4231845,"lon":4.327679},{"street":"Huijgensstraat","housenumber":"7","lat":51.4264603,"lon":4.335037},{"street":"Jef Adriaansenstraat","housenumber":"7","lat":51.4208706,"lon":4.3282647},{"street":"KLM laan","housenumber":"7","lat":51.4270673,"lon":4.3276175},{"street":"Kamerlingh Onnesstraat","housenumber":"7","lat":51.4254951,"lon":4.3339265},{"street":"Keesomstraat","housenumber":"7","lat":51.4241979,"lon":4.3323717},{"street":"Kloosterstraat","housenumber":"7","lat":51.4246688,"lon":4.3268105},{"street":"Kromstraat","housenumber":"7","lat":51.4247794,"lon":4.3261178},{"street":"Laan Olieslagers","housenumber":"7","lat":51.4268476,"lon":4.3311456},{"street":"Lammertiende","housenumber":"7","lat":51.4298402,"lon":4.3253587},{"street":"Lindberghlaan","housenumber":"7","lat":51.4260533,"lon":4.3311862},{"street":"Lorentzstraat","housenumber":"7","lat":51.4238783,"lon":4.3318183},{"street":"Maststraat","housenumber":"7","lat":51.4206731,"lon":4.3302822},{"street":"Meulenblock","housenumber":"7","lat":51.4225756,"lon":4.3256972},{"street":"Mgr Ariensstraat","housenumber":"7","lat":51.4219036,"lon":4.3261991},{"street":"Mgr Frenckenstraat","housenumber":"7","lat":51.4216584,"lon":4.3269237},{"street":"Mgr Nolensstraat","housenumber":"7","lat":51.4195708,"lon":4.324715},{"street":"Mgr Poelsstraat","housenumber":"7","lat":51.4205622,"lon":4.3249938},{"street":"Minckelersweg","housenumber":"7","lat":51.4247954,"lon":4.330484},{"street":"Molenstraat","housenumber":"7","lat":51.4221552,"lon":4.3283284},{"street":"Nieuwe Stee","housenumber":"7","lat":51.4358929,"lon":4.3244352},{"street":"Nieuweweg","housenumber":"7","lat":51.4284042,"lon":4.3184695},{"street":"Norbartstraat","housenumber":"7","lat":51.4176453,"lon":4.3235378},{"street":"Onderstal","housenumber":"7","lat":51.4245062,"lon":4.3217817},{"street":"Oostlaan","housenumber":"7","lat":51.427031,"lon":4.3355343},{"street":"Ossendrechtseweg","housenumber":"7","lat":51.421831,"lon":4.323167},{"street":"Ouwe Raedthuysplein","housenumber":"7","lat":51.4254829,"lon":4.3223483},{"street":"Parmentierlaan","housenumber":"7","lat":51.4280599,"lon":4.3290181},{"street":"Past van Roesselstraat","housenumber":"7","lat":51.4224775,"lon":4.331491},{"street":"Pasteurstraat","housenumber":"7","lat":51.4273856,"lon":4.3215868},{"street":"Philomenahof","housenumber":"7","lat":51.422997,"lon":4.3245098},{"street":"Plantagelaan","housenumber":"7","lat":51.4181253,"lon":4.3338348},{"street":"Plesmanlaan","housenumber":"7","lat":51.4268265,"lon":4.3288166},{"street":"Pr Bernhardstraat","housenumber":"7","lat":51.4265416,"lon":4.3231865},{"street":"Pr Clausstraat","housenumber":"7","lat":51.4241118,"lon":4.3298143},{"street":"Putseweg","housenumber":"7","lat":51.4219753,"lon":4.325191},{"street":"Raadhuisstraat","housenumber":"7","lat":51.428166,"lon":4.3199418},{"street":"Robert Kochstraat","housenumber":"7","lat":51.42685,"lon":4.3234956},{"street":"Rubertstraat","housenumber":"7","lat":51.4202752,"lon":4.3300183},{"street":"Schapendreef","housenumber":"7","lat":51.4194796,"lon":4.3275351},{"street":"De Vuurdoorn","housenumber":"7","lat":51.4326719,"lon":4.312358},{"street":"De Wilg","housenumber":"7","lat":51.4291942,"lon":4.313461},{"street":"De Zonnebloem","housenumber":"7","lat":51.4300394,"lon":4.3151648},{"street":"dokter van de Karplein","housenumber":"7","lat":51.4298614,"lon":4.3222072},{"street":"in d' Hoef","housenumber":"7","lat":51.42927,"lon":4.3227177},{"street":"van Houtenstraat","housenumber":"7","lat":51.4204794,"lon":4.3260336},{"street":"Van Weerden Poelmanlaan","housenumber":"7","lat":51.4264078,"lon":4.3282368},{"street":"Van de Moerstraat","housenumber":"7","lat":51.4198201,"lon":4.3323723},{"street":"van der Dilftstraat","housenumber":"7","lat":51.4225559,"lon":4.3287432},{"street":"Aalbersestraat","housenumber":"70","lat":51.4203717,"lon":4.323514},{"street":"Antwerpsestraatweg","housenumber":"70","lat":51.431862,"lon":4.3191075},{"street":"Duinstraat","housenumber":"70","lat":51.429089,"lon":4.3285052},{"street":"Huijbergseweg","housenumber":"70","lat":51.4230908,"lon":4.3312183},{"street":"Huijgensstraat","housenumber":"70","lat":51.4237169,"lon":4.3342548},{"street":"Maststraat","housenumber":"70","lat":51.4193643,"lon":4.3326704},{"street":"Minckelersweg","housenumber":"70","lat":51.4258154,"lon":4.3330346},{"street":"Putseweg","housenumber":"70","lat":51.4169499,"lon":4.3337065},{"street":"Smirnofflaan","housenumber":"70","lat":51.4270226,"lon":4.3284014},{"street":"St Lucasplein","housenumber":"70","lat":51.4277363,"lon":4.3244556},{"street":"Wouwbaan","housenumber":"70","lat":51.4276054,"lon":4.3277938},{"street":"Zandfort","housenumber":"70","lat":51.4354462,"lon":4.3277104},{"street":"in d' Hoef","housenumber":"70","lat":51.4309062,"lon":4.3235317},{"street":"Huijbergseweg","housenumber":"71","lat":51.423528,"lon":4.3338394},{"street":"Huijgensstraat","housenumber":"71","lat":51.425203,"lon":4.3350544},{"street":"Mgr Poelsstraat","housenumber":"71","lat":51.4185697,"lon":4.3243501},{"street":"Oostlaan","housenumber":"71","lat":51.4255967,"lon":4.3359629},{"street":"Ouwe Raedthuysplein","housenumber":"71","lat":51.4254767,"lon":4.3219252},{"street":"Putseweg","housenumber":"71","lat":51.4197328,"lon":4.3296858},{"street":"Raadhuisstraat","housenumber":"71","lat":51.4258461,"lon":4.3225407},{"street":"Sondermanlaan","housenumber":"71","lat":51.4264071,"lon":4.3329006},{"street":"Verlengde Duinstraat","housenumber":"71","lat":51.4279326,"lon":4.3348161},{"street":"Wouwbaan","housenumber":"71","lat":51.4277763,"lon":4.327486},{"street":"Zandfort","housenumber":"71","lat":51.4360133,"lon":4.3297683},{"street":"in d' Hoef","housenumber":"71","lat":51.4312451,"lon":4.3225204},{"street":"Raadhuisstraat","housenumber":"71a","lat":51.4257853,"lon":4.3225938},{"street":"Raadhuisstraat","housenumber":"71b","lat":51.4258705,"lon":4.3225767},{"street":"Raadhuisstraat","housenumber":"71c","lat":51.4258298,"lon":4.3226122},{"street":"Raadhuisstraat","housenumber":"71d","lat":51.4257892,"lon":4.3226478},{"street":"Aalbersestraat","housenumber":"72","lat":51.4203115,"lon":4.3235094},{"street":"Antwerpsestraatweg","housenumber":"72","lat":51.4321137,"lon":4.3191055},{"street":"Huijbergseweg","housenumber":"72","lat":51.4230927,"lon":4.3314339},{"street":"Huijgensstraat","housenumber":"72","lat":51.4237185,"lon":4.3342978},{"street":"KLM laan","housenumber":"72","lat":51.4256759,"lon":4.3292918},{"street":"Maststraat","housenumber":"72","lat":51.4193289,"lon":4.3327287},{"street":"Minckelersweg","housenumber":"72","lat":51.4258955,"lon":4.333192},{"street":"Putseweg","housenumber":"72","lat":51.416977,"lon":4.3340914},{"street":"Smirnofflaan","housenumber":"72","lat":51.4270374,"lon":4.3283651},{"street":"St Lucasplein","housenumber":"72","lat":51.4276854,"lon":4.3244635},{"street":"Wouwbaan","housenumber":"72","lat":51.4278095,"lon":4.3280086},{"street":"Zandfort","housenumber":"72","lat":51.4355116,"lon":4.3279821},{"street":"in d' Hoef","housenumber":"72","lat":51.4308803,"lon":4.323606},{"street":"Huijbergseweg","housenumber":"73","lat":51.4235298,"lon":4.3340407},{"street":"Huijgensstraat","housenumber":"73","lat":51.4252111,"lon":4.3353713},{"street":"Mgr Poelsstraat","housenumber":"73","lat":51.418578,"lon":4.3242781},{"street":"Oostlaan","housenumber":"73","lat":51.4255428,"lon":4.3359641},{"street":"Putseweg","housenumber":"73","lat":51.4196886,"lon":4.3297587},{"street":"Raadhuisstraat","housenumber":"73","lat":51.4257303,"lon":4.3226995},{"street":"Sondermanlaan","housenumber":"73","lat":51.4264243,"lon":4.3329342},{"street":"Verlengde Duinstraat","housenumber":"73","lat":51.4279065,"lon":4.3349174},{"street":"Wouwbaan","housenumber":"73","lat":51.4278761,"lon":4.3275843},{"street":"in d' Hoef","housenumber":"73","lat":51.4312065,"lon":4.3234941},{"street":"Raadhuisstraat","housenumber":"73a","lat":51.4257175,"lon":4.3226676},{"street":"Raadhuisstraat","housenumber":"73b","lat":51.4256952,"lon":4.322673},{"street":"Aalbersestraat","housenumber":"74","lat":51.4202515,"lon":4.3235048},{"street":"Antwerpsestraatweg","housenumber":"74","lat":51.4321915,"lon":4.319817},{"street":"Huijbergseweg","housenumber":"74","lat":51.4230936,"lon":4.3315345},{"street":"Huijgensstraat","housenumber":"74","lat":51.42372,"lon":4.3343408},{"street":"KLM laan","housenumber":"74","lat":51.4256541,"lon":4.3293237},{"street":"Maststraat","housenumber":"74","lat":51.4192935,"lon":4.3327871},{"street":"Minckelersweg","housenumber":"74","lat":51.4259325,"lon":4.3332645},{"street":"Putseweg","housenumber":"74","lat":51.4164715,"lon":4.3338586},{"street":"Smirnofflaan","housenumber":"74","lat":51.4270522,"lon":4.3283288},{"street":"St Lucasplein","housenumber":"74","lat":51.4275817,"lon":4.3244795},{"street":"Wouwbaan","housenumber":"74","lat":51.4278554,"lon":4.3280572},{"street":"in d' Hoef","housenumber":"74","lat":51.4308157,"lon":4.3237554},{"street":"Huijbergseweg","housenumber":"75","lat":51.4235406,"lon":4.3342417},{"street":"Huijgensstraat","housenumber":"75","lat":51.4252137,"lon":4.3354504},{"street":"Mgr Poelsstraat","housenumber":"75","lat":51.4185954,"lon":4.3242202},{"street":"Oostlaan","housenumber":"75","lat":51.4254978,"lon":4.3359651},{"street":"Ouwe Raedthuysplein","housenumber":"75","lat":51.4255321,"lon":4.3217986},{"street":"Putseweg","housenumber":"75","lat":51.4196534,"lon":4.3298458},{"street":"Raadhuisstraat","housenumber":"75","lat":51.4255849,"lon":4.3227631},{"street":"Verlengde Duinstraat","housenumber":"75","lat":51.4278633,"lon":4.3351053},{"street":"Wouwbaan","housenumber":"75","lat":51.4279669,"lon":4.3276829},{"street":"in d' Hoef","housenumber":"75","lat":51.4311473,"lon":4.3237168},{"street":"Aalbersestraat","housenumber":"76","lat":51.4201914,"lon":4.3235002},{"street":"Huijbergseweg","housenumber":"76","lat":51.4225228,"lon":4.3335984},{"street":"Huijgensstraat","housenumber":"76","lat":51.4237216,"lon":4.3343837},{"street":"KLM laan","housenumber":"76","lat":51.4256303,"lon":4.3293583},{"street":"Maststraat","housenumber":"76","lat":51.4192491,"lon":4.3328456},{"street":"Minckelersweg","housenumber":"76","lat":51.4260012,"lon":4.3333989},{"street":"Gemeynte","housenumber":"8","lat":51.4308364,"lon":4.3287178},{"street":"Gravesandestraat","housenumber":"8","lat":51.4248979,"lon":4.3322404},{"street":"Griblingstraat","housenumber":"8","lat":51.4283935,"lon":4.322787},{"street":"Heideduinstede","housenumber":"8","lat":51.4288532,"lon":4.3267946},{"street":"Heistraat","housenumber":"8","lat":51.4277184,"lon":4.3260637},{"street":"Hugo de Grootstraat","housenumber":"8","lat":51.4267727,"lon":4.3367841},{"street":"Huijgensstraat","housenumber":"8","lat":51.4256025,"lon":4.3346111},{"street":"Jef Adriaansenstraat","housenumber":"8","lat":51.420738,"lon":4.3285122},{"street":"KLM laan","housenumber":"8","lat":51.4267347,"lon":4.3276109},{"street":"Kamerlingh Onnesstraat","housenumber":"8","lat":51.4260502,"lon":4.3343616},{"street":"Keesomstraat","housenumber":"8","lat":51.4247173,"lon":4.3341426},{"street":"Kloosterstraat","housenumber":"8","lat":51.4238026,"lon":4.3274346},{"street":"Laan Olieslagers","housenumber":"8","lat":51.4260212,"lon":4.3303061},{"street":"Lammertiende","housenumber":"8","lat":51.4296295,"lon":4.3257328},{"street":"Lindberghlaan","housenumber":"8","lat":51.425875,"lon":4.3309525},{"street":"Maststraat","housenumber":"8","lat":51.4209859,"lon":4.3302655},{"street":"Matthias Wolffstraat","housenumber":"8","lat":51.4242961,"lon":4.328329},{"street":"Meulenblock","housenumber":"8","lat":51.4225903,"lon":4.3258393},{"street":"Mgr Ariensstraat","housenumber":"8","lat":51.4217622,"lon":4.3272995},{"street":"Mgr Frenckenstraat","housenumber":"8","lat":51.4216013,"lon":4.3265656},{"street":"Mgr Nolensstraat","housenumber":"8","lat":51.4191948,"lon":4.3248819},{"street":"Minckelersweg","housenumber":"8","lat":51.4246778,"lon":4.3307645},{"street":"Molenstraat","housenumber":"8","lat":51.4224262,"lon":4.3279182},{"street":"Nieuweweg","housenumber":"8","lat":51.4287029,"lon":4.3177147},{"street":"Norbartstraat","housenumber":"8","lat":51.4178198,"lon":4.3229587},{"street":"Onderstal","housenumber":"8","lat":51.424793,"lon":4.3216888},{"street":"Oostlaan","housenumber":"8","lat":51.4270594,"lon":4.3366769},{"street":"Ossendrechtseweg","housenumber":"8","lat":51.421981,"lon":4.3228616},{"street":"Parmentierlaan","housenumber":"8","lat":51.4278264,"lon":4.3288861},{"street":"Past van Roesselstraat","housenumber":"8","lat":51.4214638,"lon":4.3318584},{"street":"Pasteurstraat","housenumber":"8","lat":51.4278681,"lon":4.3217751},{"street":"Paus Leo XIIIestraat","housenumber":"8","lat":51.4210826,"lon":4.3278572},{"street":"Philomenahof","housenumber":"8","lat":51.4237125,"lon":4.3259896},{"street":"Plantagelaan","housenumber":"8","lat":51.4187112,"lon":4.3340082},{"street":"Plesmanlaan","housenumber":"8","lat":51.4268138,"lon":4.3303843},{"street":"Putseweg","housenumber":"76","lat":51.4161239,"lon":4.3351893},{"street":"Smirnofflaan","housenumber":"76","lat":51.427067,"lon":4.3282924},{"street":"St Lucasplein","housenumber":"76","lat":51.4279402,"lon":4.3243897},{"street":"Wouwbaan","housenumber":"76","lat":51.4279001,"lon":4.3281045},{"street":"in d' Hoef","housenumber":"76","lat":51.4307814,"lon":4.32382},{"street":"Huijbergseweg","housenumber":"76a","lat":51.4230862,"lon":4.3320107},{"street":"Huijbergseweg","housenumber":"77","lat":51.4235519,"lon":4.3345003},{"street":"Huijgensstraat","housenumber":"77","lat":51.4252163,"lon":4.3355279},{"street":"Mgr Poelsstraat","housenumber":"77","lat":51.4186038,"lon":4.3241481},{"street":"Oostlaan","housenumber":"77","lat":51.4254439,"lon":4.3359664},{"street":"Ouwe Raedthuysplein","housenumber":"77","lat":51.4254771,"lon":4.3217069},{"street":"Putseweg","housenumber":"77","lat":51.4195825,"lon":4.3299624},{"street":"Raadhuisstraat","housenumber":"77","lat":51.4254866,"lon":4.3228372},{"street":"Verlengde Duinstraat","housenumber":"77","lat":51.427811,"lon":4.3352935},{"street":"Wouwbaan","housenumber":"77","lat":51.4280304,"lon":4.3277533},{"street":"in d' Hoef","housenumber":"77","lat":51.4310164,"lon":4.3240256},{"street":"Aalbersestraat","housenumber":"78","lat":51.4206108,"lon":4.3235828},{"street":"Huijgensstraat","housenumber":"78","lat":51.4237231,"lon":4.3344267},{"street":"KLM laan","housenumber":"78","lat":51.4256062,"lon":4.3293934},{"street":"Maststraat","housenumber":"78","lat":51.4192136,"lon":4.3329039},{"street":"Minckelersweg","housenumber":"78","lat":51.426043,"lon":4.3334803},{"street":"Raadhuisstraat","housenumber":"78","lat":51.4256858,"lon":4.3223012},{"street":"Smirnofflaan","housenumber":"78","lat":51.4270688,"lon":4.3282167},{"street":"St Lucasplein","housenumber":"78","lat":51.4279301,"lon":4.3242238},{"street":"Wouwbaan","housenumber":"78","lat":51.4279462,"lon":4.3281532},{"street":"in d' Hoef","housenumber":"78","lat":51.4306995,"lon":4.3239467},{"street":"Huijbergseweg","housenumber":"79","lat":51.4235528,"lon":4.3346009},{"street":"Huijgensstraat","housenumber":"79","lat":51.4252189,"lon":4.3356071},{"street":"Mgr Poelsstraat","housenumber":"79","lat":51.4186204,"lon":4.3240039},{"street":"Oostlaan","housenumber":"79","lat":51.425381,"lon":4.3359678},{"street":"Ouwe Raedthuysplein","housenumber":"79","lat":51.4254482,"lon":4.3216145},{"street":"Putseweg","housenumber":"79","lat":51.4195384,"lon":4.3300497},{"street":"Wouwbaan","housenumber":"79","lat":51.4281214,"lon":4.3278662},{"street":"in d' Hoef","housenumber":"79","lat":51.4309524,"lon":4.3241433},{"street":"Antwerpsestraatweg","housenumber":"7a","lat":51.4291915,"lon":4.3176102},{"street":"Heistraat","housenumber":"7a","lat":51.4263003,"lon":4.3253203},{"street":"van Houtenstraat","housenumber":"7a","lat":51.4204325,"lon":4.3260431},{"street":"Antwerpsestraatweg","housenumber":"7b","lat":51.4291914,"lon":4.3176537},{"street":"Antwerpsestraatweg","housenumber":"7c","lat":51.4291912,"lon":4.3176971},{"street":"Antwerpsestraatweg","housenumber":"7d","lat":51.4291911,"lon":4.3177405},{"street":"Antwerpsestraatweg","housenumber":"7e","lat":51.4291909,"lon":4.317784},{"street":"Antwerpsestraatweg","housenumber":"7f","lat":51.4291907,"lon":4.3178274},{"street":"Antwerpsestraatweg","housenumber":"7h","lat":51.4291906,"lon":4.3178708},{"street":"Antwerpsestraatweg","housenumber":"7j","lat":51.4291904,"lon":4.3179143},{"street":"Antwerpsestraatweg","housenumber":"7k","lat":51.4291903,"lon":4.3179577},{"street":"Antwerpsestraatweg","housenumber":"7m","lat":51.4291901,"lon":4.3180012},{"street":"Antwerpsestraatweg","housenumber":"7n","lat":51.42919,"lon":4.3180446},{"street":"Aalbersestraat","housenumber":"8","lat":51.4213303,"lon":4.3238946},{"street":"Antwerpsestraatweg","housenumber":"8","lat":51.4289132,"lon":4.3190759},{"street":"Bijentiende","housenumber":"8","lat":51.4302019,"lon":4.3252642},{"street":"Binnenweg","housenumber":"8","lat":51.4256247,"lon":4.3241713},{"street":"Bloemenlaan","housenumber":"8","lat":51.4336414,"lon":4.3161175},{"street":"Blériotlaan","housenumber":"8","lat":51.4272722,"lon":4.3332141},{"street":"Buys Ballotstraat","housenumber":"8","lat":51.4240337,"lon":4.3341024},{"street":"Cameronlaan","housenumber":"8","lat":51.4270154,"lon":4.3179844},{"street":"Canadalaan","housenumber":"8","lat":51.4263286,"lon":4.3156279},{"street":"Couwenberghstraat","housenumber":"8","lat":51.4186797,"lon":4.3325884},{"street":"Dennenlaan","housenumber":"8","lat":51.4177301,"lon":4.3308824},{"street":"Doelstraat","housenumber":"8","lat":51.4343666,"lon":4.3167764},{"street":"Duinhoefplein","housenumber":"8","lat":51.4293144,"lon":4.3243113},{"street":"Duinstraat","housenumber":"8","lat":51.4284999,"lon":4.32107},{"street":"Flemingstraat","housenumber":"8","lat":51.427196,"lon":4.3220065},{"street":"Fokkerlaan","housenumber":"8","lat":51.4283205,"lon":4.3294598},{"street":"Garry Horselaan","housenumber":"8","lat":51.4277836,"lon":4.3125595},{"street":"in d' Hoef","housenumber":"80","lat":51.430658,"lon":4.3239994},{"street":"Huijbergseweg","housenumber":"81","lat":51.4237558,"lon":4.3361778},{"street":"Huijgensstraat","housenumber":"81","lat":51.4249961,"lon":4.3350764},{"street":"Mgr Poelsstraat","housenumber":"81","lat":51.4186286,"lon":4.3239175},{"street":"Oostlaan","housenumber":"81","lat":51.4253271,"lon":4.3359691},{"street":"Ossendrechtseweg","housenumber":"81","lat":51.4184053,"lon":4.3220968},{"street":"Ouwe Raedthuysplein","housenumber":"81","lat":51.4253848,"lon":4.3217037},{"street":"Putseweg","housenumber":"81","lat":51.4194942,"lon":4.330137},{"street":"in d' Hoef","housenumber":"81","lat":51.430855,"lon":4.3242888},{"street":"Aalbersestraat","housenumber":"82","lat":51.4204906,"lon":4.3235736},{"street":"Huijgensstraat","housenumber":"82","lat":51.4237262,"lon":4.3345126},{"street":"KLM laan","housenumber":"82","lat":51.4255591,"lon":4.3294625},{"street":"Minckelersweg","housenumber":"82","lat":51.4261561,"lon":4.3337011},{"street":"Smirnofflaan","housenumber":"82","lat":51.4270979,"lon":4.3281439},{"street":"St Lucasplein","housenumber":"82","lat":51.4279152,"lon":4.3239776},{"street":"Wouwbaan","housenumber":"82","lat":51.4283948,"lon":4.328631},{"street":"in d' Hoef","housenumber":"82","lat":51.4305617,"lon":4.3240979},{"street":"Huijbergseweg","housenumber":"83","lat":51.4236229,"lon":4.3365276},{"street":"Huijgensstraat","housenumber":"83","lat":51.4249986,"lon":4.335155},{"street":"Mgr Poelsstraat","housenumber":"83","lat":51.41854,"lon":4.3230713},{"street":"Oostlaan","housenumber":"83","lat":51.425282,"lon":4.3359557},{"street":"Ossendrechtseweg","housenumber":"83","lat":51.4182703,"lon":4.3220856},{"street":"Ouwe Raedthuysplein","housenumber":"83","lat":51.4254187,"lon":4.3217917},{"street":"Putseweg","housenumber":"83","lat":51.4194149,"lon":4.3303114},{"street":"in d' Hoef","housenumber":"83","lat":51.4307778,"lon":4.3243822},{"street":"Aalbersestraat","housenumber":"84","lat":51.4204305,"lon":4.323569},{"street":"Huijgensstraat","housenumber":"84","lat":51.4237278,"lon":4.3345556},{"street":"KLM laan","housenumber":"84","lat":51.4255358,"lon":4.3294967},{"street":"Minckelersweg","housenumber":"84","lat":51.4262243,"lon":4.3338345},{"street":"Raadhuisstraat","housenumber":"84","lat":51.4254296,"lon":4.3224935},{"street":"Smirnofflaan","housenumber":"84","lat":51.4271125,"lon":4.3281076},{"street":"St Lucasplein","housenumber":"84","lat":51.4279103,"lon":4.3238961},{"street":"Wouwbaan","housenumber":"84","lat":51.4284862,"lon":4.3287275},{"street":"in d' Hoef","housenumber":"84","lat":51.4305143,"lon":4.324136},{"street":"Huijgensstraat","housenumber":"85","lat":51.4250011,"lon":4.3352333},{"street":"Mgr Poelsstraat","housenumber":"85","lat":51.4185482,"lon":4.3229848},{"street":"Oostlaan","housenumber":"85","lat":51.4252282,"lon":4.3359713},{"street":"Ossendrechtseweg","housenumber":"85","lat":51.4181495,"lon":4.3220205},{"street":"Ouwe Raedthuysplein","housenumber":"85","lat":51.4254471,"lon":4.3218733},{"street":"Putseweg","housenumber":"85","lat":51.4193796,"lon":4.3303841},{"street":"Wouwbaan","housenumber":"85","lat":51.42833,"lon":4.3280771},{"street":"in d' Hoef","housenumber":"85","lat":51.4305643,"lon":4.3246016},{"street":"Aalbersestraat","housenumber":"86","lat":51.4203703,"lon":4.3235643},{"street":"Huijgensstraat","housenumber":"86","lat":51.4237293,"lon":4.3345986},{"street":"KLM laan","housenumber":"86","lat":51.4255121,"lon":4.3295319},{"street":"Minckelersweg","housenumber":"86","lat":51.4262589,"lon":4.3339025},{"street":"Raadhuisstraat","housenumber":"86","lat":51.4253581,"lon":4.3225383},{"street":"Smirnofflaan","housenumber":"86","lat":51.4271271,"lon":4.3280712},{"street":"St Lucasplein","housenumber":"86","lat":51.4279605,"lon":4.3237664},{"street":"Wouwbaan","housenumber":"86","lat":51.4285313,"lon":4.3287753},{"street":"in d' Hoef","housenumber":"86","lat":51.4304073,"lon":4.3242006},{"street":"Huijgensstraat","housenumber":"87","lat":51.4250036,"lon":4.3353113},{"street":"Mgr Poelsstraat","housenumber":"87","lat":51.4185465,"lon":4.322798},{"street":"Oostlaan","housenumber":"87","lat":51.4250283,"lon":4.3357315},{"street":"Ossendrechtseweg","housenumber":"87","lat":51.4180084,"lon":4.3219479},{"street":"Ouwe Raedthuysplein","housenumber":"87","lat":51.4254613,"lon":4.321941},{"street":"Putseweg","housenumber":"87","lat":51.4193444,"lon":4.3304711},{"street":"Raadhuisstraat","housenumber":"87","lat":51.4252278,"lon":4.3232122},{"street":"Wouwbaan","housenumber":"87","lat":51.4284667,"lon":4.3282752},{"street":"in d' Hoef","housenumber":"87","lat":51.4305161,"lon":4.3246252},{"street":"Aalbersestraat","housenumber":"88","lat":51.42031,"lon":4.3235597},{"street":"Antwerpsestraatweg","housenumber":"88","lat":51.4331194,"lon":4.3189917},{"street":"Huijgensstraat","housenumber":"88","lat":51.4237309,"lon":4.3346415},{"street":"KLM laan","housenumber":"88","lat":51.4254896,"lon":4.3295657},{"street":"Minckelersweg","housenumber":"88","lat":51.4262931,"lon":4.3339696},{"street":"Raadhuisstraat","housenumber":"88","lat":51.4251869,"lon":4.3226739},{"street":"Pr Bernhardstraat","housenumber":"8","lat":51.4263346,"lon":4.32238},{"street":"Pr Clausstraat","housenumber":"8","lat":51.4243133,"lon":4.3302266},{"street":"Putseweg","housenumber":"8","lat":51.4209489,"lon":4.3260056},{"street":"Raadhuisstraat","housenumber":"8","lat":51.4279549,"lon":4.3198169},{"street":"Robert Kochstraat","housenumber":"8","lat":51.4270053,"lon":4.3237652},{"street":"Rubertstraat","housenumber":"8","lat":51.4200934,"lon":4.3297924},{"street":"Schapendreef","housenumber":"8","lat":51.4194723,"lon":4.3267301},{"street":"Semmelweissstraat","housenumber":"8","lat":51.4271964,"lon":4.3240196},{"street":"Smirnofflaan","housenumber":"8","lat":51.4273267,"lon":4.3284599},{"street":"Sondermanlaan","housenumber":"8","lat":51.4262935,"lon":4.3316562},{"street":"Sportlaan","housenumber":"8","lat":51.4173472,"lon":4.3352617},{"street":"St Lucasplein","housenumber":"8","lat":51.4273695,"lon":4.3231054},{"street":"Struikenlaan","housenumber":"8","lat":51.4325086,"lon":4.313862},{"street":"Suijkerbuijkstraat","housenumber":"8","lat":51.4224477,"lon":4.3306868},{"street":"Torontolaan","housenumber":"8","lat":51.4279072,"lon":4.3171287},{"street":"Trefpunt","housenumber":"8","lat":51.4222079,"lon":4.3274729},{"street":"Valkestraat","housenumber":"8","lat":51.4347981,"lon":4.3158027},{"street":"Verlengde Duinstraat","housenumber":"8","lat":51.4288693,"lon":4.330049},{"street":"Vogelven","housenumber":"8","lat":51.4310888,"lon":4.3246847},{"street":"Zandfort","housenumber":"8","lat":51.4344533,"lon":4.3203555},{"street":"De Acacia","housenumber":"8","lat":51.4310513,"lon":4.3128371},{"street":"De Anjer","housenumber":"8","lat":51.4326557,"lon":4.3167693},{"street":"De Berk","housenumber":"8","lat":51.4311177,"lon":4.314408},{"street":"De Eik","housenumber":"8","lat":51.430274,"lon":4.3126015},{"street":"De Hazelaar","housenumber":"8","lat":51.4323644,"lon":4.3161248},{"street":"De Hortensia","housenumber":"8","lat":51.4330884,"lon":4.3156128},{"street":"De Jasmijn","housenumber":"8","lat":51.4320199,"lon":4.3146738},{"street":"De Narcis","housenumber":"8","lat":51.4317536,"lon":4.3170966},{"street":"De Papaver","housenumber":"8","lat":51.4311069,"lon":4.3164213},{"street":"De Roos","housenumber":"8","lat":51.4313409,"lon":4.3171782},{"street":"De Sering","housenumber":"8","lat":51.4304047,"lon":4.3172287},{"street":"De Tulp","housenumber":"8","lat":51.4295879,"lon":4.3163428},{"street":"De Vuurdoorn","housenumber":"8","lat":51.4327386,"lon":4.3131338},{"street":"de Wildert","housenumber":"8","lat":51.4307742,"lon":4.3252578},{"street":"De Wilg","housenumber":"8","lat":51.4292114,"lon":4.3133743},{"street":"De Zonnebloem","housenumber":"8","lat":51.4298727,"lon":4.3152421},{"street":"dokter van de Karplein","housenumber":"8","lat":51.4299122,"lon":4.3221963},{"street":"op den Duyn","housenumber":"8","lat":51.429661,"lon":4.3206818},{"street":"van 't Hoffstraat","housenumber":"8","lat":51.4241931,"lon":4.3308476},{"street":"van Houtenstraat","housenumber":"8","lat":51.4203504,"lon":4.3256132},{"street":"Van Weerden Poelmanlaan","housenumber":"8","lat":51.4260352,"lon":4.3287376},{"street":"van der Dilftstraat","housenumber":"8","lat":51.4221894,"lon":4.3289035},{"street":"Van der Meulenplein","housenumber":"8","lat":51.4220946,"lon":4.3238925},{"street":"Aalbersestraat","housenumber":"80","lat":51.4205507,"lon":4.3235782},{"street":"Antwerpsestraatweg","housenumber":"80","lat":51.432815,"lon":4.3191283},{"street":"Huijgensstraat","housenumber":"80","lat":51.4237247,"lon":4.3344697},{"street":"KLM laan","housenumber":"80","lat":51.4255827,"lon":4.329428},{"street":"Minckelersweg","housenumber":"80","lat":51.4261146,"lon":4.3336198},{"street":"Raadhuisstraat","housenumber":"80","lat":51.4255152,"lon":4.3224337},{"street":"Smirnofflaan","housenumber":"80","lat":51.4270834,"lon":4.3281802},{"street":"St Lucasplein","housenumber":"80","lat":51.4279252,"lon":4.3241422},{"street":"Wouwbaan","housenumber":"80","lat":51.4283475,"lon":4.3285808},{"street":"Smirnofflaan","housenumber":"88","lat":51.4271416,"lon":4.3280349},{"street":"St Lucasplein","housenumber":"88","lat":51.4279521,"lon":4.323629},{"street":"Wouwbaan","housenumber":"88","lat":51.4285783,"lon":4.328825},{"street":"in d' Hoef","housenumber":"88","lat":51.430356,"lon":4.3242223},{"street":"Raadhuisstraat","housenumber":"88a","lat":51.425266,"lon":4.3226266},{"street":"Huijgensstraat","housenumber":"89","lat":51.4250061,"lon":4.3353888},{"street":"Mgr Poelsstraat","housenumber":"89","lat":51.4185457,"lon":4.3227117},{"street":"Oostlaan","housenumber":"89","lat":51.4250289,"lon":4.3358034},{"street":"Ossendrechtseweg","housenumber":"89","lat":51.4178642,"lon":4.3219082},{"street":"Putseweg","housenumber":"89","lat":51.4193001,"lon":4.3305441},{"street":"Raadhuisstraat","housenumber":"89","lat":51.4246382,"lon":4.3234446},{"street":"Wouwbaan","housenumber":"89","lat":51.4286024,"lon":4.3283727},{"street":"in d' Hoef","housenumber":"89","lat":51.4304309,"lon":4.3246668},{"street":"St Lucasplein","housenumber":"8a","lat":51.4273383,"lon":4.3231116},{"street":"Sportlaan","housenumber":"8d-B","lat":51.4176613,"lon":4.3346275},{"street":"Sportlaan","housenumber":"8d-C","lat":51.4178136,"lon":4.335257},{"street":"Aalbersestraat","housenumber":"9","lat":51.4216281,"lon":4.3240012},{"street":"Antwerpsestraatweg","housenumber":"9","lat":51.4290556,"lon":4.3184317},{"street":"Bijentiende","housenumber":"9","lat":51.4304658,"lon":4.3256152},{"street":"Binnenweg","housenumber":"9","lat":51.4258383,"lon":4.3239362},{"street":"Blériotlaan","housenumber":"9","lat":51.4275416,"lon":4.3333296},{"street":"Burg Moorsstraat","housenumber":"9","lat":51.4221467,"lon":4.3298514},{"street":"Buys Ballotstraat","housenumber":"9","lat":51.424134,"lon":4.3332646},{"street":"Cameronlaan","housenumber":"9","lat":51.4272529,"lon":4.317418},{"street":"Canadalaan","housenumber":"9","lat":51.425864,"lon":4.3169186},{"street":"Couwenberghstraat","housenumber":"9","lat":51.4188227,"lon":4.3324241},{"street":"Doelstraat","housenumber":"9","lat":51.4337064,"lon":4.3143902},{"street":"Doctor de Bruijnlaan","housenumber":"9","lat":51.4195335,"lon":4.3315019},{"street":"Duinstraat","housenumber":"9","lat":51.428855,"lon":4.3225429},{"street":"Edward Jennerstraat","housenumber":"9","lat":51.4282197,"lon":4.3238519},{"street":"Flemingstraat","housenumber":"9","lat":51.4274499,"lon":4.322245},{"street":"Garry Horselaan","housenumber":"9","lat":51.4279678,"lon":4.3120663},{"street":"Geyssendorfferlaan","housenumber":"9","lat":51.4269468,"lon":4.3327122},{"street":"Gravesandestraat","housenumber":"9","lat":51.4254521,"lon":4.3328891},{"street":"Hamiltonlaan","housenumber":"9","lat":51.426758,"lon":4.3154021},{"street":"Heideduinstede","housenumber":"9","lat":51.4288427,"lon":4.3266537},{"street":"Heistraat","housenumber":"9","lat":51.4263988,"lon":4.3252748},{"street":"Hugo de Grootstraat","housenumber":"9","lat":51.4260457,"lon":4.3369654},{"street":"Huijbergseweg","housenumber":"9","lat":51.4231949,"lon":4.3278369},{"street":"Huijgensstraat","housenumber":"9","lat":51.426497,"lon":4.3351225},{"street":"Jef Adriaansenstraat","housenumber":"9","lat":51.4209162,"lon":4.3283356},{"street":"KLM laan","housenumber":"9","lat":51.4270594,"lon":4.3277327},{"street":"Kamerlingh Onnesstraat","housenumber":"9","lat":51.4254387,"lon":4.3339312},{"street":"Keesomstraat","housenumber":"9","lat":51.4241971,"lon":4.3322854},{"street":"Kloosterstraat","housenumber":"9","lat":51.424793,"lon":4.3266207},{"street":"Laan Olieslagers","housenumber":"9","lat":51.4269937,"lon":4.3313867},{"street":"Lammertiende","housenumber":"9","lat":51.4298468,"lon":4.3254385},{"street":"Lindberghlaan","housenumber":"9","lat":51.4260117,"lon":4.3312409},{"street":"Maststraat","housenumber":"9","lat":51.4206377,"lon":4.3303405},{"street":"Meulenblock","housenumber":"9","lat":51.4226051,"lon":4.3259812},{"street":"Mgr Ariensstraat","housenumber":"9","lat":51.4219587,"lon":4.3263272},{"street":"Mgr Frenckenstraat","housenumber":"9","lat":51.421623,"lon":4.326982},{"street":"Mgr Nolensstraat","housenumber":"9","lat":51.4195444,"lon":4.3247731},{"street":"Mgr Poelsstraat","housenumber":"9","lat":51.420453,"lon":4.3248526},{"street":"Minckelersweg","housenumber":"9","lat":51.4248833,"lon":4.3306436},{"street":"Molenstraat","housenumber":"9","lat":51.4221034,"lon":4.3283477},{"street":"Nieuweweg","housenumber":"9","lat":51.4284166,"lon":4.3182856},{"street":"Norbartstraat","housenumber":"9","lat":51.4176436,"lon":4.323351},{"street":"Onderstal","housenumber":"9","lat":51.4245117,"lon":4.3214077},{"street":"Oostlaan","housenumber":"9","lat":51.4270566,"lon":4.3355965},{"street":"Ossendrechtseweg","housenumber":"9","lat":51.4217678,"lon":4.3231397},{"street":"Ouwe Raedthuysplein","housenumber":"9","lat":51.4255486,"lon":4.3222899},{"street":"Parmentierlaan","housenumber":"9","lat":51.4280336,"lon":4.3290906},{"street":"Past van Roesselstraat","housenumber":"9","lat":51.4224276,"lon":4.331483},{"street":"Pasteurstraat","housenumber":"9","lat":51.4274166,"lon":4.3215742},{"street":"Philomenahof","housenumber":"9","lat":51.4230589,"lon":4.3245154},{"street":"Plantagelaan","housenumber":"9","lat":51.4182254,"lon":4.3339619},{"street":"Plesmanlaan","housenumber":"9","lat":51.4268791,"lon":4.3288867},{"street":"Pr Clausstraat","housenumber":"9","lat":51.4242197,"lon":4.3298118},{"street":"Putseweg","housenumber":"9","lat":51.4219133,"lon":4.325293},{"street":"Raadhuisstraat","housenumber":"9","lat":51.4281126,"lon":4.3200006},{"street":"Robert Kochstraat","housenumber":"9","lat":51.4269666,"lon":4.3234642},{"street":"Rubertstraat","housenumber":"9","lat":51.4202133,"lon":4.3301347},{"street":"Schapendreef","housenumber":"9","lat":51.4194324,"lon":4.3272917},{"street":"Smirnofflaan","housenumber":"9","lat":51.4275354,"lon":4.3286707},{"street":"Sondermanlaan","housenumber":"9","lat":51.4266811,"lon":4.3321177},{"street":"Sportlaan","housenumber":"9","lat":51.4193488,"lon":4.3378379},{"street":"St Lucasplein","housenumber":"9","lat":51.427722,"lon":4.3225118},{"street":"Suijkerbuijkstraat","housenumber":"9","lat":51.4223787,"lon":4.3310047},{"street":"Torontolaan","housenumber":"9","lat":51.4276824,"lon":4.3152366},{"street":"Trefpunt","housenumber":"9","lat":51.4224623,"lon":4.3274701},{"street":"Valkestraat","housenumber":"9","lat":51.4353453,"lon":4.3137188},{"street":"Wouwbaan","housenumber":"9","lat":51.4246728,"lon":4.3242798},{"street":"Zandfort","housenumber":"9","lat":51.4347612,"lon":4.3197518},{"street":"De Acacia","housenumber":"9","lat":51.4310857,"lon":4.31279},{"street":"De Anjer","housenumber":"9","lat":51.4328702,"lon":4.317321},{"street":"De Berk","housenumber":"9","lat":51.4311459,"lon":4.3145511},{"street":"De Eik","housenumber":"9","lat":51.4303275,"lon":4.3125571},{"street":"De Hazelaar","housenumber":"9","lat":51.4323126,"lon":4.3161257},{"street":"De Hortensia","housenumber":"9","lat":51.4330855,"lon":4.3152964},{"street":"De Jasmijn","housenumber":"9","lat":51.4319222,"lon":4.3146399},{"street":"De Narcis","housenumber":"9","lat":51.4319744,"lon":4.3178163},{"street":"De Papaver","housenumber":"9","lat":51.4310557,"lon":4.3164226},{"street":"De Roos","housenumber":"9","lat":51.4314919,"lon":4.3169877},{"street":"De Sering","housenumber":"9","lat":51.4303483,"lon":4.3172503},{"street":"De Tulp","housenumber":"9","lat":51.4295838,"lon":4.3164217},{"street":"De Vuurdoorn","housenumber":"9","lat":51.43278,"lon":4.3123842},{"street":"De Wilg","housenumber":"9","lat":51.4292107,"lon":4.3133024},{"street":"De Zonnebloem","housenumber":"9","lat":51.429872,"lon":4.3151592},{"street":"dokter van de Karplein","housenumber":"9","lat":51.4299621,"lon":4.3221856},{"street":"in d' Hoef","housenumber":"9","lat":51.4292793,"lon":4.3225388},{"street":"op den Duyn","housenumber":"9","lat":51.4291444,"lon":4.3209573},{"street":"van Houtenstraat","housenumber":"9","lat":51.4203379,"lon":4.3260342},{"street":"Van Weerden Poelmanlaan","housenumber":"9","lat":51.4264442,"lon":4.3282935},{"street":"Aalbersestraat","housenumber":"90","lat":51.42025,"lon":4.3235551},{"street":"Antwerpsestraatweg","housenumber":"90","lat":51.4332097,"lon":4.3192244},{"street":"Huijgensstraat","housenumber":"90","lat":51.4237329,"lon":4.3346842},{"street":"KLM laan","housenumber":"90","lat":51.4254668,"lon":4.3295999},{"street":"Minckelersweg","housenumber":"90","lat":51.4263271,"lon":4.3340365},{"street":"Raadhuisstraat","housenumber":"90","lat":51.4252028,"lon":4.322604},{"street":"Smirnofflaan","housenumber":"90","lat":51.4271561,"lon":4.3279987},{"street":"St Lucasplein","housenumber":"90","lat":51.4278339,"lon":4.3236391},{"street":"Wouwbaan","housenumber":"90","lat":51.4287614,"lon":4.3290143},{"street":"Zandfort","housenumber":"90","lat":51.435947,"lon":4.3313806},{"street":"in d' Hoef","housenumber":"90","lat":51.4301866,"lon":4.3242795},{"street":"Antwerpsestraatweg","housenumber":"90a","lat":51.4332239,"lon":4.3189783},{"street":"Huijgensstraat","housenumber":"91","lat":51.4250086,"lon":4.3354658},{"street":"Mgr Poelsstraat","housenumber":"91","lat":51.4185588,"lon":4.3221795},{"street":"Oostlaan","housenumber":"91","lat":51.4250296,"lon":4.3358753},{"street":"Ossendrechtseweg","housenumber":"91","lat":51.4177463,"lon":4.3217959},{"street":"Putseweg","housenumber":"91","lat":51.4192206,"lon":4.3306897},{"street":"Raadhuisstraat","housenumber":"91","lat":51.4251013,"lon":4.3232057},{"street":"in d' Hoef","housenumber":"91","lat":51.4303827,"lon":4.3246902},{"street":"Raadhuisstraat","housenumber":"91a","lat":51.4250335,"lon":4.3232441},{"street":"Raadhuisstraat","housenumber":"91b","lat":51.4249413,"lon":4.323251},{"street":"Raadhuisstraat","housenumber":"91c","lat":51.424871,"lon":4.3232909},{"street":"Aalbersestraat","housenumber":"92","lat":51.42019,"lon":4.3235505},{"street":"Antwerpsestraatweg","housenumber":"92","lat":51.4333079,"lon":4.3189585},{"street":"Huijgensstraat","housenumber":"92","lat":51.4237342,"lon":4.3347264},{"street":"KLM laan","housenumber":"92","lat":51.4254423,"lon":4.3296365},{"street":"Minckelersweg","housenumber":"92","lat":51.4263612,"lon":4.3341034},{"street":"Raadhuisstraat","housenumber":"92","lat":51.4251161,"lon":4.3227357},{"street":"Smirnofflaan","housenumber":"92","lat":51.4271706,"lon":4.3279624},{"street":"St Lucasplein","housenumber":"92","lat":51.4277459,"lon":4.3236512},{"street":"Wouwbaan","housenumber":"92","lat":51.4288053,"lon":4.329064},{"street":"Zandfort","housenumber":"92","lat":51.4362174,"lon":4.3338321},{"street":"in d' Hoef","housenumber":"92","lat":51.4301341,"lon":4.3242908},{"street":"Raadhuisstraat","housenumber":"92a","lat":51.4250614,"lon":4.3227803},{"street":"Zandfort","housenumber":"92a","lat":51.4361162,"lon":4.332515},{"street":"Huijgensstraat","housenumber":"93","lat":51.4250111,"lon":4.3355444},{"street":"Oostlaan","housenumber":"93","lat":51.4250401,"lon":4.3360476},{"street":"Ossendrechtseweg","housenumber":"93","lat":51.4176198,"lon":4.321727},{"street":"Putseweg","housenumber":"93","lat":51.4191853,"lon":4.3307624},{"street":"Raadhuisstraat","housenumber":"93","lat":51.4248058,"lon":4.3233277},{"street":"Wouwbaan","housenumber":"93","lat":51.4288387,"lon":4.3286549},{"street":"in d' Hoef","housenumber":"93","lat":51.4301486,"lon":4.3247069},{"street":"Raadhuisstraat","housenumber":"93a","lat":51.424739,"lon":4.3233656},{"street":"Raadhuisstraat","housenumber":"93b","lat":51.424673,"lon":4.323403},{"street":"Raadhuisstraat","housenumber":"93c","lat":51.4246088,"lon":4.3234394},{"street":"KLM laan","housenumber":"94","lat":51.4254196,"lon":4.3296699},{"street":"Minckelersweg","housenumber":"94","lat":51.4263954,"lon":4.3341706},{"street":"Raadhuisstraat","housenumber":"94","lat":51.4250192,"lon":4.3228338},{"street":"Smirnofflaan","housenumber":"94","lat":51.4271852,"lon":4.327926},{"street":"St Lucasplein","housenumber":"94","lat":51.427711,"lon":4.3236591},{"street":"Wouwbaan","housenumber":"94","lat":51.4288546,"lon":4.3291165},{"street":"Zandfort","housenumber":"94","lat":51.4364366,"lon":4.3348355},{"street":"in d' Hoef","housenumber":"94","lat":51.4300108,"lon":4.3243171},{"street":"Raadhuisstraat","housenumber":"94a","lat":51.4250014,"lon":4.3228156},{"street":"Huijgensstraat","housenumber":"95","lat":51.4247826,"lon":4.3350876},{"street":"Oostlaan","housenumber":"95","lat":51.4250409,"lon":4.3361338},{"street":"Ossendrechtseweg","housenumber":"95","lat":51.4174845,"lon":4.3216726},{"street":"Putseweg","housenumber":"95","lat":51.41915,"lon":4.3308351},{"street":"Raadhuisstraat","housenumber":"95","lat":51.4245445,"lon":4.3234758},{"street":"Wouwbaan","housenumber":"95","lat":51.4288933,"lon":4.3287255},{"street":"in d' Hoef","housenumber":"95","lat":51.4300969,"lon":4.324718},{"street":"Raadhuisstraat","housenumber":"95a","lat":51.4244751,"lon":4.3235151},{"street":"Raadhuisstraat","housenumber":"95b","lat":51.4244143,"lon":4.3235496},{"street":"Raadhuisstraat","housenumber":"95c","lat":51.4243526,"lon":4.3235845},{"street":"Raadhuisstraat","housenumber":"95d","lat":51.4244108,"lon":4.3237984},{"street":"Antwerpsestraatweg","housenumber":"96","lat":51.4336144,"lon":4.319052},{"street":"KLM laan","housenumber":"96","lat":51.4253977,"lon":4.3297018},{"street":"Minckelersweg","housenumber":"96","lat":51.4264294,"lon":4.3342374},{"street":"Raadhuisstraat","housenumber":"96","lat":51.4249784,"lon":4.3228781},{"street":"Smirnofflaan","housenumber":"96","lat":51.4271999,"lon":4.3278893},{"street":"St Lucasplein","housenumber":"96","lat":51.4276243,"lon":4.3236709},{"street":"Wouwbaan","housenumber":"96","lat":51.428904,"lon":4.329169},{"street":"Zandfort","housenumber":"96","lat":51.4364308,"lon":4.3351808},{"street":"in d' Hoef","housenumber":"96","lat":51.4299583,"lon":4.3243286},{"street":"Raadhuisstraat","housenumber":"96a","lat":51.4249486,"lon":4.3229061},{"street":"Huijgensstraat","housenumber":"97","lat":51.4247328,"lon":4.3350915},{"street":"Oostlaan","housenumber":"97","lat":51.4250503,"lon":4.3361768},{"street":"Putseweg","housenumber":"97","lat":51.4191147,"lon":4.3309078},{"street":"Raadhuisstraat","housenumber":"97","lat":51.4249533,"lon":4.3233052},{"street":"Wouwbaan","housenumber":"97","lat":51.4289658,"lon":4.3287957},{"street":"in d' Hoef","housenumber":"97","lat":51.4300469,"lon":4.3247287},{"street":"Raadhuisstraat","housenumber":"97a","lat":51.4248829,"lon":4.323345},{"street":"Raadhuisstraat","housenumber":"97b","lat":51.4248178,"lon":4.3233819},{"street":"KLM laan","housenumber":"98","lat":51.4253771,"lon":4.3297328},{"street":"Minckelersweg","housenumber":"98","lat":51.4264641,"lon":4.3343056},{"street":"Raadhuisstraat","housenumber":"98","lat":51.4248107,"lon":4.3229826},{"street":"St Lucasplein","housenumber":"98","lat":51.4275893,"lon":4.3236788},{"street":"Wouwbaan","housenumber":"98","lat":51.4289533,"lon":4.3292215},{"street":"in d' Hoef","housenumber":"98","lat":51.4296874,"lon":4.3243943},{"street":"Huijgensstraat","housenumber":"99","lat":51.4246839,"lon":4.3350953},{"street":"Oostlaan","housenumber":"99","lat":51.4250424,"lon":4.3363063},{"street":"Ossendrechtseweg","housenumber":"99","lat":51.4172835,"lon":4.3223099},{"street":"Raadhuisstraat","housenumber":"99","lat":51.424751,"lon":4.3234198},{"street":"Verlengde Duinstraat","housenumber":"99","lat":51.429622,"lon":4.335755},{"street":"Wouwbaan","housenumber":"99","lat":51.4290294,"lon":4.3288661},{"street":"in d' Hoef","housenumber":"99","lat":51.4299962,"lon":4.3247395},{"street":"Raadhuisstraat","housenumber":"99a","lat":51.424685,"lon":4.3234571},{"street":"Raadhuisstraat","housenumber":"99b","lat":51.4246207,"lon":4.3234935},{"street":"Antwerpsestraatweg","housenumber":"9a","lat":51.4290552,"lon":4.3183814},{"street":"Nieuweweg","housenumber":"9a","lat":51.4283265,"lon":4.3182929},{"street":"Antwerpsestraatweg","housenumber":"9b","lat":51.4291001,"lon":4.3180707},{"street":"Nieuweweg","housenumber":"9b","lat":51.4282135,"lon":4.3182583},{"street":"Antwerpsestraatweg","housenumber":"9c","lat":51.4290731,"lon":4.3180708},{"street":"Antwerpsestraatweg","housenumber":"9d","lat":51.4290452,"lon":4.3180709},{"street":"Antwerpsestraatweg","housenumber":"9e","lat":51.4290176,"lon":4.3180712},{"street":"Lindonk","housenumber":"1","lat":51.4493934,"lon":4.3067774},{"street":"Vossenweg","housenumber":"1","lat":51.4555639,"lon":4.3022206},{"street":"Beukendreef","housenumber":"12","lat":51.4541488,"lon":4.2999331},{"street":"Beukendreef","housenumber":"14","lat":51.4540244,"lon":4.2990775},{"street":"Antwerpsestraatweg","housenumber":"151","lat":51.4446485,"lon":4.3136291},{"street":"Antwerpsestraatweg","housenumber":"153","lat":51.445105,"lon":4.3134169},{"street":"Antwerpsestraatweg","housenumber":"155","lat":51.4457178,"lon":4.3135895},{"street":"Antwerpsestraatweg","housenumber":"157","lat":51.4459417,"lon":4.3134979},{"street":"Antwerpsestraatweg","housenumber":"159","lat":51.4460919,"lon":4.3133734},{"street":"Beukendreef","housenumber":"16","lat":51.4539577,"lon":4.2986762},{"street":"Antwerpsestraatweg","housenumber":"161","lat":51.4476291,"lon":4.3126897},{"street":"Antwerpsestraatweg","housenumber":"162","lat":51.4449316,"lon":4.3142822},{"street":"Antwerpsestraatweg","housenumber":"166","lat":51.4454001,"lon":4.3142299},{"street":"Antwerpsestraatweg","housenumber":"170","lat":51.4462507,"lon":4.3138646},{"street":"Antwerpsestraatweg","housenumber":"170a","lat":51.4463773,"lon":4.313948},{"street":"Antwerpsestraatweg","housenumber":"173","lat":51.4480515,"lon":4.3124178},{"street":"Antwerpsestraatweg","housenumber":"174","lat":51.4471314,"lon":4.3138295},{"street":"Antwerpsestraatweg","housenumber":"175","lat":51.4485672,"lon":4.3125872},{"street":"Antwerpsestraatweg","housenumber":"175a","lat":51.4486301,"lon":4.3125857},{"street":"Antwerpsestraatweg","housenumber":"176","lat":51.4473208,"lon":4.313897},{"street":"Antwerpsestraatweg","housenumber":"177","lat":51.4482939,"lon":4.3112772},{"street":"Antwerpsestraatweg","housenumber":"179","lat":51.4491778,"lon":4.3124507},{"street":"Beukendreef","housenumber":"18","lat":51.4541077,"lon":4.2983704},{"street":"Antwerpsestraatweg","housenumber":"183","lat":51.4558401,"lon":4.3116674},{"street":"Antwerpsestraatweg","housenumber":"183a","lat":51.455793,"lon":4.3114909},{"street":"Antwerpsestraatweg","housenumber":"183b","lat":51.4558257,"lon":4.3114852},{"street":"Antwerpsestraatweg","housenumber":"183c","lat":51.4558584,"lon":4.3114795},{"street":"Antwerpsestraatweg","housenumber":"183d","lat":51.4558911,"lon":4.3114738},{"street":"Antwerpsestraatweg","housenumber":"185","lat":51.4561662,"lon":4.3114948},{"street":"Lindonk","housenumber":"1a","lat":51.4496914,"lon":4.306806},{"street":"Vossenweg","housenumber":"1a","lat":51.4548597,"lon":4.3021016},{"street":"Beukendreef","housenumber":"2","lat":51.4545472,"lon":4.3021297},{"street":"Spoorbaan","housenumber":"2","lat":51.4452931,"lon":4.2959054},{"street":"Beukendreef","housenumber":"20","lat":51.4536864,"lon":4.2984956},{"street":"Beukendreef","housenumber":"22","lat":51.45345,"lon":4.2982135},{"street":"Lindonk","housenumber":"3","lat":51.4499107,"lon":4.3049025},{"street":"Vossenweg","housenumber":"3","lat":51.459981,"lon":4.3016117},{"street":"Vossenweg","housenumber":"4","lat":51.4644431,"lon":4.301016},{"street":"Lindonk","housenumber":"5","lat":51.4515544,"lon":4.302201},{"street":"Beukendreef","housenumber":"6","lat":51.4548129,"lon":4.2997637},{"street":"Beukendreef","housenumber":"8","lat":51.454562,"lon":4.299856},{"street":"Burg Moorsstraat","housenumber":"35","lat":51.4207893,"lon":4.3295877},{"street":"Scheidreef","housenumber":"4","lat":51.4157753,"lon":4.3430168},{"street":"Hof van Holland","housenumber":"2","lat":51.4240189,"lon":4.3231046},{"street":"Voltweg","housenumber":"3","lat":51.4299755,"lon":4.3520996},{"street":"op d'Hei","housenumber":"10","lat":51.424878,"lon":4.3279444},{"street":"op d'Hei","housenumber":"11","lat":51.4249599,"lon":4.3282675},{"street":"op d'Hei","housenumber":"12","lat":51.4249568,"lon":4.3280607},{"street":"op d'Hei","housenumber":"3","lat":51.4246756,"lon":4.3283805},{"street":"op d'Hei","housenumber":"4","lat":51.4246718,"lon":4.327953},{"street":"op d'Hei","housenumber":"5","lat":51.4247265,"lon":4.3283825},{"street":"op d'Hei","housenumber":"6","lat":51.4247219,"lon":4.3279499},{"street":"op d'Hei","housenumber":"7","lat":51.4248298,"lon":4.3283801},{"street":"op d'Hei","housenumber":"8","lat":51.4248255,"lon":4.3279475},{"street":"op d'Hei","housenumber":"9","lat":51.4248807,"lon":4.3283796},{"street":"de Groenling","housenumber":"11","lat":51.4315484,"lon":4.3203557},{"street":"de Groenling","housenumber":"13","lat":51.4316633,"lon":4.3203244},{"street":"de Groenling","housenumber":"15","lat":51.4317873,"lon":4.3203552},{"street":"de Groenling","housenumber":"17","lat":51.4319227,"lon":4.320351},{"street":"de Groenling","housenumber":"19","lat":51.4320688,"lon":4.3203576},{"street":"de Groenling","housenumber":"21","lat":51.4322292,"lon":4.3202958},{"street":"de Groenling","housenumber":"22","lat":51.4324516,"lon":4.3202872},{"street":"de Groenling","housenumber":"23","lat":51.4324496,"lon":4.319969},{"street":"de Groenling","housenumber":"24","lat":51.4325022,"lon":4.3202783},{"street":"de Groenling","housenumber":"25","lat":51.4324895,"lon":4.3199697},{"street":"de Groenling","housenumber":"26","lat":51.4326053,"lon":4.3202744},{"street":"de Groenling","housenumber":"27","lat":51.4325822,"lon":4.3199874},{"street":"de Groenling","housenumber":"28","lat":51.4326573,"lon":4.3202714},{"street":"de Groenling","housenumber":"29","lat":51.4326262,"lon":4.3199882},{"street":"de Groenling","housenumber":"30","lat":51.4327628,"lon":4.3202636},{"street":"de Groenling","housenumber":"31","lat":51.432748,"lon":4.3199686},{"street":"de Groenling","housenumber":"32","lat":51.4328148,"lon":4.3202587},{"street":"de Groenling","housenumber":"33","lat":51.432792,"lon":4.3199694},{"street":"de Groenling","housenumber":"34","lat":51.432922,"lon":4.3202526},{"street":"de Groenling","housenumber":"35","lat":51.4328868,"lon":4.3199643},{"street":"de Groenling","housenumber":"36","lat":51.4329723,"lon":4.3202498},{"street":"de Groenling","housenumber":"37","lat":51.4329321,"lon":4.3199632},{"street":"de Groenling","housenumber":"39","lat":51.433027,"lon":4.319958},{"street":"de Groenling","housenumber":"41","lat":51.4330722,"lon":4.3199626},{"street":"de Groenling","housenumber":"43","lat":51.4332216,"lon":4.319931},{"street":"de Groenling","housenumber":"45","lat":51.4332687,"lon":4.3199289},{"street":"de Groenling","housenumber":"47","lat":51.4333608,"lon":4.3199114},{"street":"de Groenling","housenumber":"49","lat":51.4334055,"lon":4.3199036},{"street":"de Groenling","housenumber":"5","lat":51.4311153,"lon":4.3206692},{"street":"de Groenling","housenumber":"53","lat":51.4332316,"lon":4.3204955},{"street":"de Groenling","housenumber":"55","lat":51.4331406,"lon":4.320773},{"street":"de Groenling","housenumber":"59","lat":51.4331076,"lon":4.3213824},{"street":"de Groenling","housenumber":"63","lat":51.4329453,"lon":4.3211478},{"street":"de Groenling","housenumber":"65","lat":51.4327492,"lon":4.3211841},{"street":"de Groenling","housenumber":"67","lat":51.4326303,"lon":4.3211261},{"street":"de Groenling","housenumber":"69","lat":51.4324223,"lon":4.3211658},{"street":"de Groenling","housenumber":"7","lat":51.4312246,"lon":4.3204642},{"street":"Voltweg","housenumber":"1","lat":51.430415,"lon":4.3513504},{"street":"Middenweg","housenumber":"10","lat":51.4282651,"lon":4.3508709},{"street":"Voltweg","housenumber":"13","lat":51.4286474,"lon":4.3526475},{"street":"Zandfort","housenumber":"17a","lat":51.4355726,"lon":4.3209405},{"street":"Vogelven","housenumber":"18","lat":51.4312848,"lon":4.3249038},{"street":"Torontolaan","housenumber":"1a","lat":51.4277096,"lon":4.3182063},{"street":"Vogelven","housenumber":"20","lat":51.4313768,"lon":4.3247432},{"street":"Kooiweg","housenumber":"26a","lat":51.4305569,"lon":4.3516648},{"street":"Zandfort","housenumber":"29a","lat":51.4352502,"lon":4.3248921},{"street":"Aviolandalaan","housenumber":"31w-11","lat":51.4425805,"lon":4.3293898},{"street":"Aviolandalaan","housenumber":"31w-13","lat":51.4432482,"lon":4.3308057},{"street":"Aviolandalaan","housenumber":"31w-15","lat":51.4433123,"lon":4.3301316},{"street":"Aviolandalaan","housenumber":"31w-158","lat":51.4411937,"lon":4.3302296},{"street":"Aviolandalaan","housenumber":"31w-22","lat":51.4421314,"lon":4.3277535},{"street":"Aviolandalaan","housenumber":"31w-29","lat":51.4429951,"lon":4.3316029},{"street":"Aviolandalaan","housenumber":"31w-31","lat":51.4426611,"lon":4.3284475},{"street":"Aviolandalaan","housenumber":"31w-37","lat":51.444053,"lon":4.3305755},{"street":"Aviolandalaan","housenumber":"31w-43","lat":51.4401083,"lon":4.32904},{"street":"Aviolandalaan","housenumber":"31w-51","lat":51.4438389,"lon":4.3303037},{"street":"Aviolandalaan","housenumber":"31w-57","lat":51.441273,"lon":4.3267413},{"street":"Aviolandalaan","housenumber":"31w-6","lat":51.4419619,"lon":4.330779},{"street":"Aviolandalaan","housenumber":"31w-60","lat":51.4427659,"lon":4.3285068},{"street":"Aviolandalaan","housenumber":"31w-61","lat":51.4423158,"lon":4.3322091},{"street":"Aviolandalaan","housenumber":"31w-67","lat":51.4433265,"lon":4.3275901},{"street":"Aviolandalaan","housenumber":"31w-68","lat":51.4417346,"lon":4.3250952},{"street":"Aviolandalaan","housenumber":"31w-7","lat":51.4421934,"lon":4.3312681},{"street":"Aviolandalaan","housenumber":"31w-8","lat":51.4427674,"lon":4.3318083},{"street":"Aviolandalaan","housenumber":"33w-1","lat":51.4410423,"lon":4.3323212},{"street":"Aviolandalaan","housenumber":"33w-3","lat":51.4418051,"lon":4.3337155},{"street":"Aviolandalaan","housenumber":"33w-52","lat":51.4405576,"lon":4.3321031},{"street":"Aviolandalaan","housenumber":"33w-53","lat":51.43997,"lon":4.3320086},{"street":"Aviolandalaan","housenumber":"35","lat":51.4407224,"lon":4.3296716},{"street":"Nijverheidstraat","housenumber":"36","lat":51.4323607,"lon":4.3313929},{"street":"Aviolandalaan","housenumber":"37","lat":51.4417388,"lon":4.330194},{"street":"in d' Hoef","housenumber":"37","lat":51.4301288,"lon":4.3211287},{"street":"Aviolandalaan","housenumber":"39a","lat":51.4410366,"lon":4.327387},{"street":"Aviolandalaan","housenumber":"39b","lat":51.4409471,"lon":4.3274849},{"street":"Aviolandalaan","housenumber":"39c","lat":51.4408481,"lon":4.3275962},{"street":"Aviolandalaan","housenumber":"39d","lat":51.4407633,"lon":4.327684},{"street":"Aviolandalaan","housenumber":"39e","lat":51.4406767,"lon":4.3277776},{"street":"Kooiweg","housenumber":"40","lat":51.4307849,"lon":4.3485304},{"street":"Kooiweg","housenumber":"40d-007","lat":51.4368188,"lon":4.3426357},{"street":"Kooiweg","housenumber":"40d-009","lat":51.4383093,"lon":4.3430393},{"street":"Kooiweg","housenumber":"40d-10","lat":51.438645,"lon":4.343217},{"street":"Kooiweg","housenumber":"40d-100","lat":51.4378479,"lon":4.3506125},{"street":"Kooiweg","housenumber":"40d-101","lat":51.4381175,"lon":4.3479139},{"street":"Kooiweg","housenumber":"40d-102","lat":51.4381479,"lon":4.3475559},{"street":"Kooiweg","housenumber":"40d-103","lat":51.4380952,"lon":4.346898},{"street":"Kooiweg","housenumber":"40d-104","lat":51.4386368,"lon":4.3486838},{"street":"Kooiweg","housenumber":"40d-105","lat":51.4389121,"lon":4.3451473},{"street":"Kooiweg","housenumber":"40d-107","lat":51.4438892,"lon":4.3299373},{"street":"Kooiweg","housenumber":"40d-109","lat":51.4460103,"lon":4.3400211},{"street":"Kooiweg","housenumber":"40d-11","lat":51.4390838,"lon":4.3430729},{"street":"Kooiweg","housenumber":"40d-12","lat":51.4395043,"lon":4.3427159},{"street":"Kooiweg","housenumber":"40d-121","lat":51.4398877,"lon":4.3428966},{"street":"Kooiweg","housenumber":"40d-127","lat":51.4383757,"lon":4.3470524},{"street":"Kooiweg","housenumber":"40d-128","lat":51.4388572,"lon":4.3581263},{"street":"Kooiweg","housenumber":"40d-13","lat":51.4397995,"lon":4.3424269},{"street":"Kooiweg","housenumber":"40d-133","lat":51.4413416,"lon":4.3351938},{"street":"Kooiweg","housenumber":"40d-134","lat":51.4344875,"lon":4.3563935},{"street":"Kooiweg","housenumber":"40d-135","lat":51.4351836,"lon":4.3555955},{"street":"Kooiweg","housenumber":"40d-136","lat":51.4360106,"lon":4.3543699},{"street":"Kooiweg","housenumber":"40d-137","lat":51.4344207,"lon":4.3573185},{"street":"Kooiweg","housenumber":"40d-138","lat":51.4339352,"lon":4.3552108},{"street":"Kooiweg","housenumber":"40d-139","lat":51.4345794,"lon":4.355532},{"street":"Kooiweg","housenumber":"40d-140","lat":51.4355642,"lon":4.3568215},{"street":"Kooiweg","housenumber":"40d-141","lat":51.4358636,"lon":4.3560745},{"street":"Kooiweg","housenumber":"40d-142","lat":51.4357052,"lon":4.3551759},{"street":"Kooiweg","housenumber":"40d-149","lat":51.4433338,"lon":4.3417785},{"street":"Kooiweg","housenumber":"40d-161","lat":51.4398806,"lon":4.3435471},{"street":"Kooiweg","housenumber":"40d-166","lat":51.4394379,"lon":4.3413968},{"street":"Kooiweg","housenumber":"40d-17","lat":51.438524,"lon":4.3434323},{"street":"Kooiweg","housenumber":"40d-184","lat":51.4367174,"lon":4.3466666},{"street":"Kooiweg","housenumber":"40d-186","lat":51.438517,"lon":4.3419479},{"street":"Kooiweg","housenumber":"40d-187","lat":51.4397386,"lon":4.3431108},{"street":"Kooiweg","housenumber":"40d-191","lat":51.4419157,"lon":4.341982},{"street":"Kooiweg","housenumber":"40d-192","lat":51.4419643,"lon":4.3416572},{"street":"Kooiweg","housenumber":"40d-194","lat":51.4354263,"lon":4.3509634},{"street":"Kooiweg","housenumber":"40d-20","lat":51.4404475,"lon":4.3346353},{"street":"Kooiweg","housenumber":"40d-228","lat":51.4407711,"lon":4.3419337},{"street":"Kooiweg","housenumber":"40d-24","lat":51.4408472,"lon":4.3347268},{"street":"Kooiweg","housenumber":"40d-245","lat":51.4358288,"lon":4.3426561},{"street":"Kooiweg","housenumber":"40d-256","lat":51.4399632,"lon":4.3361066},{"street":"Kooiweg","housenumber":"40d-259","lat":51.4403078,"lon":4.3375362},{"street":"Kooiweg","housenumber":"40d-26","lat":51.4399344,"lon":4.3349453},{"street":"Kooiweg","housenumber":"40d-260","lat":51.4400507,"lon":4.3376639},{"street":"Kooiweg","housenumber":"40d-261","lat":51.4391422,"lon":4.335684},{"street":"Kooiweg","housenumber":"40d-262","lat":51.4400232,"lon":4.3391264},{"street":"Kooiweg","housenumber":"40d-263","lat":51.4394929,"lon":4.3443537},{"street":"Kooiweg","housenumber":"40d-27","lat":51.4390343,"lon":4.3338391},{"street":"Kooiweg","housenumber":"40d-28","lat":51.4382522,"lon":4.3425627},{"street":"Kooiweg","housenumber":"40d-281","lat":51.4389978,"lon":4.3387882},{"street":"Kooiweg","housenumber":"40d-29","lat":51.4406873,"lon":4.336443},{"street":"Kooiweg","housenumber":"40d-297","lat":51.441319,"lon":4.3346956},{"street":"Kooiweg","housenumber":"40d-301","lat":51.4302169,"lon":4.3423671},{"street":"Kooiweg","housenumber":"40d-304","lat":51.4374033,"lon":4.3428928},{"street":"Kooiweg","housenumber":"40d-306","lat":51.4395839,"lon":4.3340952},{"street":"Kooiweg","housenumber":"40d-307","lat":51.4399342,"lon":4.3332337},{"street":"Kooiweg","housenumber":"40d-308","lat":51.4400079,"lon":4.3340112},{"street":"Kooiweg","housenumber":"40d-309","lat":51.4396641,"lon":4.3336808},{"street":"Kooiweg","housenumber":"40d-31","lat":51.4393132,"lon":4.3375243},{"street":"Kooiweg","housenumber":"40d-32","lat":51.4409413,"lon":4.3356616},{"street":"Kooiweg","housenumber":"40d-33","lat":51.4389071,"lon":4.3375671},{"street":"Kooiweg","housenumber":"40d-331","lat":51.4386425,"lon":4.3423423},{"street":"Kooiweg","housenumber":"40d-332","lat":51.4413475,"lon":4.3352693},{"street":"Kooiweg","housenumber":"40d-333","lat":51.4389612,"lon":4.3422753},{"street":"Kooiweg","housenumber":"40d-337","lat":51.439811,"lon":4.3397502},{"street":"Kooiweg","housenumber":"40d-34","lat":51.4356883,"lon":4.3418964},{"street":"Kooiweg","housenumber":"40d-340","lat":51.4389035,"lon":4.3357439},{"street":"Kooiweg","housenumber":"40d-350","lat":51.4336409,"lon":4.3475216},{"street":"Kooiweg","housenumber":"40d-351","lat":51.4336202,"lon":4.3462282},{"street":"Kooiweg","housenumber":"40d-363","lat":51.4393175,"lon":4.3393602},{"street":"Kooiweg","housenumber":"40d-37","lat":51.4401242,"lon":4.3365091},{"street":"Kooiweg","housenumber":"40d-371","lat":51.4439512,"lon":4.329705},{"street":"Kooiweg","housenumber":"40d-374","lat":51.4407327,"lon":4.3433262},{"street":"Kooiweg","housenumber":"40d-376","lat":51.4400634,"lon":4.3432147},{"street":"Kooiweg","housenumber":"40d-382","lat":51.4373268,"lon":4.3473305},{"street":"Kooiweg","housenumber":"40d-383","lat":51.437256,"lon":4.3481868},{"street":"Kooiweg","housenumber":"40d-384","lat":51.4372527,"lon":4.3489254},{"street":"Kooiweg","housenumber":"40d-386","lat":51.438154,"lon":4.3471428},{"street":"Kooiweg","housenumber":"40d-404","lat":51.4341149,"lon":4.3513441},{"street":"Kooiweg","housenumber":"40d-405","lat":51.4340565,"lon":4.3500842},{"street":"Kooiweg","housenumber":"40d-406","lat":51.4341306,"lon":4.3513954},{"street":"Kooiweg","housenumber":"40d-407","lat":51.4333076,"lon":4.3513002},{"street":"Kooiweg","housenumber":"40d-408","lat":51.4332817,"lon":4.3513142},{"street":"Kooiweg","housenumber":"40d-409","lat":51.4332558,"lon":4.3513282},{"street":"Kooiweg","housenumber":"40d-41","lat":51.4391575,"lon":4.3383118},{"street":"Kooiweg","housenumber":"40d-410","lat":51.4342813,"lon":4.3505643},{"street":"Kooiweg","housenumber":"40d-417","lat":51.4385946,"lon":4.3528255},{"street":"Kooiweg","housenumber":"40d-419","lat":51.4396368,"lon":4.3517962},{"street":"Kooiweg","housenumber":"40d-420","lat":51.4378715,"lon":4.3524704},{"street":"Kooiweg","housenumber":"40d-423","lat":51.4363184,"lon":4.3450327},{"street":"Kooiweg","housenumber":"40d-425","lat":51.4367705,"lon":4.3466779},{"street":"Kooiweg","housenumber":"40d-426","lat":51.4394502,"lon":4.3420302},{"street":"Kooiweg","housenumber":"40d-427","lat":51.4394679,"lon":4.3421241},{"street":"Kooiweg","housenumber":"40d-428","lat":51.4391494,"lon":4.345062},{"street":"Kooiweg","housenumber":"40d-429","lat":51.4391506,"lon":4.3451123},{"street":"Kooiweg","housenumber":"40d-43","lat":51.4390246,"lon":4.3393981},{"street":"Kooiweg","housenumber":"40d-430","lat":51.4381427,"lon":4.3526485},{"street":"Kooiweg","housenumber":"40d-431","lat":51.4364485,"lon":4.3452135},{"street":"Kooiweg","housenumber":"40d-432","lat":51.4398725,"lon":4.3396917},{"street":"Kooiweg","housenumber":"40d-435","lat":51.4417232,"lon":4.3443597},{"street":"Kooiweg","housenumber":"40d-437","lat":51.434205,"lon":4.3475872},{"street":"Kooiweg","housenumber":"40d-438","lat":51.4352734,"lon":4.3477012},{"street":"Kooiweg","housenumber":"40d-439","lat":51.4367473,"lon":4.3455013},{"street":"Kooiweg","housenumber":"40d-441","lat":51.4304574,"lon":4.3465889},{"street":"Kooiweg","housenumber":"40d-442","lat":51.4300522,"lon":4.3442798},{"street":"Kooiweg","housenumber":"40d-444","lat":51.4303264,"lon":4.3420825},{"street":"Kooiweg","housenumber":"40d-445","lat":51.4388456,"lon":4.3458971},{"street":"Kooiweg","housenumber":"40d-446","lat":51.4323911,"lon":4.3433102},{"street":"Kooiweg","housenumber":"40d-447","lat":51.4339598,"lon":4.3438065},{"street":"Kooiweg","housenumber":"40d-448","lat":51.4339954,"lon":4.3454617},{"street":"Kooiweg","housenumber":"40d-449","lat":51.4348517,"lon":4.3468787},{"street":"Kooiweg","housenumber":"40d-450","lat":51.4363947,"lon":4.3456032},{"street":"Kooiweg","housenumber":"40d-451","lat":51.4361508,"lon":4.3488393},{"street":"Kooiweg","housenumber":"40d-452","lat":51.4342642,"lon":4.3476061},{"street":"Kooiweg","housenumber":"40d-453","lat":51.4332646,"lon":4.3502572},{"street":"Kooiweg","housenumber":"40d-454","lat":51.4332358,"lon":4.3501223},{"street":"Kooiweg","housenumber":"40d-456","lat":51.4326351,"lon":4.3481576},{"street":"Kooiweg","housenumber":"40d-457","lat":51.4321235,"lon":4.347402},{"street":"Kooiweg","housenumber":"40d-458","lat":51.4313142,"lon":4.3478644},{"street":"Kooiweg","housenumber":"40d-46","lat":51.4359228,"lon":4.3410953},{"street":"Kooiweg","housenumber":"40d-461","lat":51.4453896,"lon":4.339504},{"street":"Kooiweg","housenumber":"40d-462","lat":51.4451048,"lon":4.3369321},{"street":"Kooiweg","housenumber":"40d-463","lat":51.4442773,"lon":4.3374508},{"street":"Kooiweg","housenumber":"40d-464","lat":51.4452309,"lon":4.3379379},{"street":"Kooiweg","housenumber":"40d-465","lat":51.4452474,"lon":4.3393676},{"street":"Kooiweg","housenumber":"40d-466","lat":51.4434803,"lon":4.3395593},{"street":"Kooiweg","housenumber":"40d-47","lat":51.4377467,"lon":4.3390832},{"street":"Kooiweg","housenumber":"40d-48","lat":51.4396604,"lon":4.337285},{"street":"Kooiweg","housenumber":"40d-481","lat":51.4362409,"lon":4.3464315},{"street":"Kooiweg","housenumber":"40d-485","lat":51.4374942,"lon":4.3467158},{"street":"Kooiweg","housenumber":"40d-486","lat":51.4444802,"lon":4.3370881},{"street":"Kooiweg","housenumber":"40d-487","lat":51.4399487,"lon":4.3515819},{"street":"Kooiweg","housenumber":"40d-491","lat":51.4325896,"lon":4.3491194},{"street":"Kooiweg","housenumber":"40d-492","lat":51.432619,"lon":4.349679},{"street":"Kooiweg","housenumber":"40d-493","lat":51.4327208,"lon":4.3503756},{"street":"Kooiweg","housenumber":"40d-494","lat":51.4330016,"lon":4.3495255},{"street":"Kooiweg","housenumber":"40d-495","lat":51.4330462,"lon":4.350256},{"street":"Kooiweg","housenumber":"40d-496","lat":51.4330095,"lon":4.3507513},{"street":"Kooiweg","housenumber":"40d-497","lat":51.4306009,"lon":4.3408322},{"street":"Kooiweg","housenumber":"40d-498","lat":51.4330036,"lon":4.3499437},{"street":"Kooiweg","housenumber":"40d-50","lat":51.4384325,"lon":4.3366522},{"street":"Kooiweg","housenumber":"40d-52","lat":51.4397022,"lon":4.3365185},{"street":"Kooiweg","housenumber":"40d-600","lat":51.4403455,"lon":4.3507774},{"street":"Kooiweg","housenumber":"40d-602","lat":51.4457592,"lon":4.3393458},{"street":"Kooiweg","housenumber":"40d-604","lat":51.4306466,"lon":4.3495165},{"street":"Kooiweg","housenumber":"40d-605","lat":51.4353782,"lon":4.3464904},{"street":"Kooiweg","housenumber":"40d-606","lat":51.4347161,"lon":4.3460897},{"street":"Kooiweg","housenumber":"40d-607","lat":51.4395686,"lon":4.3472097},{"street":"Kooiweg","housenumber":"40d-62","lat":51.4362437,"lon":4.3415546},{"street":"Kooiweg","housenumber":"40d-623","lat":51.4381111,"lon":4.3418441},{"street":"Kooiweg","housenumber":"40d-624","lat":51.4381087,"lon":4.3418029},{"street":"Kooiweg","housenumber":"40d-631","lat":51.4409375,"lon":4.3445813},{"street":"Kooiweg","housenumber":"40d-632","lat":51.4409128,"lon":4.344593},{"street":"Kooiweg","housenumber":"40d-633","lat":51.4408879,"lon":4.3446048},{"street":"Kooiweg","housenumber":"40d-634","lat":51.4408632,"lon":4.3446166},{"street":"Kooiweg","housenumber":"40d-635","lat":51.4408384,"lon":4.3446283},{"street":"Kooiweg","housenumber":"40d-636","lat":51.4408137,"lon":4.34464},{"street":"Kooiweg","housenumber":"40d-64","lat":51.4381731,"lon":4.3408375},{"street":"Kooiweg","housenumber":"40d-651","lat":51.4445949,"lon":4.3340185},{"street":"Kooiweg","housenumber":"40d-654","lat":51.4394651,"lon":4.3429115},{"street":"Kooiweg","housenumber":"40d-656","lat":51.4386577,"lon":4.3436471},{"street":"Kooiweg","housenumber":"40d-659","lat":51.4379114,"lon":4.3533676},{"street":"Kooiweg","housenumber":"40d-66","lat":51.4361577,"lon":4.3414097},{"street":"Kooiweg","housenumber":"40d-660","lat":51.4378592,"lon":4.353379},{"street":"Kooiweg","housenumber":"40d-663","lat":51.4321406,"lon":4.3428066},{"street":"Kooiweg","housenumber":"40d-664","lat":51.4321328,"lon":4.342846},{"street":"Kooiweg","housenumber":"40d-665","lat":51.4321251,"lon":4.3428853},{"street":"Kooiweg","housenumber":"40d-666","lat":51.4321173,"lon":4.3429247},{"street":"Kooiweg","housenumber":"40d-667","lat":51.4317392,"lon":4.3427332},{"street":"Kooiweg","housenumber":"40d-668","lat":51.4317468,"lon":4.3426938},{"street":"Kooiweg","housenumber":"40d-669","lat":51.4317544,"lon":4.3426545},{"street":"Kooiweg","housenumber":"40d-67","lat":51.4362769,"lon":4.3424277},{"street":"Kooiweg","housenumber":"40d-670","lat":51.431762,"lon":4.3426151},{"street":"Kooiweg","housenumber":"40d-671","lat":51.4386204,"lon":4.3425466},{"street":"Kooiweg","housenumber":"40d-674","lat":51.440414,"lon":4.3434526},{"street":"Kooiweg","housenumber":"40d-68","lat":51.438357,"lon":4.3417225},{"street":"Kooiweg","housenumber":"40d-695","lat":51.435325,"lon":4.3470956},{"street":"Kooiweg","housenumber":"40d-697","lat":51.4403284,"lon":4.3411697},{"street":"Kooiweg","housenumber":"40d-702","lat":51.4327371,"lon":4.3469873},{"street":"Kooiweg","housenumber":"40d-703","lat":51.4375027,"lon":4.3449141},{"street":"Kooiweg","housenumber":"40d-705","lat":51.4369511,"lon":4.3365626},{"street":"Kooiweg","housenumber":"40d-708","lat":51.4358141,"lon":4.346671},{"street":"Kooiweg","housenumber":"40d-709","lat":51.4389948,"lon":4.3461004},{"street":"Kooiweg","housenumber":"40d-74","lat":51.4384398,"lon":4.3450503},{"street":"Kooiweg","housenumber":"40d-77","lat":51.4359028,"lon":4.3423336},{"street":"Kooiweg","housenumber":"40d-78","lat":51.435694,"lon":4.3420685},{"street":"Kooiweg","housenumber":"40d-85","lat":51.4318455,"lon":4.3435135},{"street":"Kooiweg","housenumber":"40d-86","lat":51.4313345,"lon":4.3432571},{"street":"Kooiweg","housenumber":"40d-90","lat":51.4329765,"lon":4.3436518},{"street":"Kooiweg","housenumber":"40d-99","lat":51.4388045,"lon":4.3486459},{"street":"Kooiweg","housenumber":"40d-B01B","lat":51.4379543,"lon":4.3532171},{"street":"Kooiweg","housenumber":"40d-B03","lat":51.4311927,"lon":4.3467684},{"street":"Kooiweg","housenumber":"40d-B04","lat":51.4316641,"lon":4.3476101},{"street":"Kooiweg","housenumber":"40d-B05","lat":51.430781,"lon":4.3474522},{"street":"Kooiweg","housenumber":"40d-B06","lat":51.4337896,"lon":4.3453026},{"street":"Kooiweg","housenumber":"40d-B08","lat":51.434626,"lon":4.3472938},{"street":"Kooiweg","housenumber":"40d-B102","lat":51.4380633,"lon":4.3518892},{"street":"Kooiweg","housenumber":"40d-B104","lat":51.4399554,"lon":4.3511813},{"street":"Kooiweg","housenumber":"40d-B105","lat":51.4390889,"lon":4.351321},{"street":"Kooiweg","housenumber":"40d-B106","lat":51.4400566,"lon":4.3542236},{"street":"Kooiweg","housenumber":"40d-B107","lat":51.439142,"lon":4.3538821},{"street":"Kooiweg","housenumber":"40d-B108","lat":51.4403659,"lon":4.3521601},{"street":"Kooiweg","housenumber":"40d-B109","lat":51.438673,"lon":4.3527853},{"street":"Kooiweg","housenumber":"40d-B110","lat":51.4374897,"lon":4.3541426},{"street":"Kooiweg","housenumber":"40d-B111","lat":51.4405188,"lon":4.3510046},{"street":"Kooiweg","housenumber":"40d-B112","lat":51.4307944,"lon":4.3424816},{"street":"Kooiweg","housenumber":"40d-B113","lat":51.4306421,"lon":4.3461124},{"street":"Kooiweg","housenumber":"40d-B114","lat":51.4362256,"lon":4.3469713},{"street":"Kooiweg","housenumber":"40d-B15","lat":51.4360416,"lon":4.3452851},{"street":"Kooiweg","housenumber":"40d-B15A","lat":51.4362938,"lon":4.3476396},{"street":"Kooiweg","housenumber":"40d-B15B","lat":51.4363988,"lon":4.3480538},{"street":"Kooiweg","housenumber":"40d-B18","lat":51.4363204,"lon":4.3505176},{"street":"Kooiweg","housenumber":"40d-B22","lat":51.4367455,"lon":4.3451741},{"street":"Kooiweg","housenumber":"40d-B24","lat":51.4360321,"lon":4.3480448},{"street":"Kooiweg","housenumber":"40d-B25","lat":51.432935,"lon":4.3479115},{"street":"Kooiweg","housenumber":"40d-B30","lat":51.4342009,"lon":4.3482957},{"street":"Kooiweg","housenumber":"40d-B33A","lat":51.4308743,"lon":4.3482819},{"street":"Kooiweg","housenumber":"40d-B53","lat":51.433272,"lon":4.343874},{"street":"Kooiweg","housenumber":"40d-B68A","lat":51.4365192,"lon":4.3499105},{"street":"Kooiweg","housenumber":"40d-B68B","lat":51.436504,"lon":4.350091},{"street":"Kooiweg","housenumber":"41","lat":51.4322052,"lon":4.3552175},{"street":"op den Duyn","housenumber":"53","lat":51.4318358,"lon":4.3223232},{"street":"Voltweg","housenumber":"6","lat":51.4284615,"lon":4.3519195},{"street":"op den Duyn","housenumber":"7","lat":51.429159,"lon":4.3211323},{"street":"Mgr Poelsstraat","housenumber":"10","lat":51.4211458,"lon":4.3251281},{"street":"Raadhuisstraat","housenumber":"100b","lat":51.4247235,"lon":4.3227913},{"street":"Raadhuisstraat","housenumber":"102","lat":51.4245767,"lon":4.3230411},{"street":"Hof van Holland","housenumber":"12","lat":51.4241458,"lon":4.3226508},{"street":"Mgr Poelsstraat","housenumber":"12","lat":51.420993,"lon":4.3249527},{"street":"Raadhuisstraat","housenumber":"128","lat":51.4235003,"lon":4.3231353},{"street":"Raadhuisstraat","housenumber":"128a","lat":51.4235309,"lon":4.3225719},{"street":"Hof van Holland","housenumber":"13","lat":51.4238643,"lon":4.3227232},{"street":"Raadhuisstraat","housenumber":"130a","lat":51.4232875,"lon":4.3232451},{"street":"Raadhuisstraat","housenumber":"130b","lat":51.4232868,"lon":4.3229765},{"street":"Raadhuisstraat","housenumber":"130e","lat":51.4232905,"lon":4.3232022},{"street":"Raadhuisstraat","housenumber":"133b","lat":51.4229488,"lon":4.323464},{"street":"Raadhuisstraat","housenumber":"134","lat":51.422907,"lon":4.3228687},{"street":"Raadhuisstraat","housenumber":"135a","lat":51.4228686,"lon":4.3234922},{"street":"Hof van Holland","housenumber":"14","lat":51.4240743,"lon":4.3226387},{"street":"Mgr Poelsstraat","housenumber":"14","lat":51.4209353,"lon":4.3249007},{"street":"Hof van Holland","housenumber":"16","lat":51.4240028,"lon":4.3226266},{"street":"Mgr Poelsstraat","housenumber":"16","lat":51.4208837,"lon":4.3248399},{"street":"Hof van Holland","housenumber":"17","lat":51.4240752,"lon":4.3232432},{"street":"Hof van Holland","housenumber":"18","lat":51.4239313,"lon":4.3226145},{"street":"Mgr Poelsstraat","housenumber":"18","lat":51.4206068,"lon":4.3244823},{"street":"Hof van Holland","housenumber":"19","lat":51.4240078,"lon":4.3232365},{"street":"Matthias Wolffstraat","housenumber":"1a","lat":51.4245161,"lon":4.3278826},{"street":"Huijbergseweg","housenumber":"1b","lat":51.4227,"lon":4.3238028},{"street":"Kromstraat","housenumber":"2","lat":51.4246196,"lon":4.3253372},{"street":"Ossendrechtseweg","housenumber":"2","lat":51.4222509,"lon":4.322884},{"street":"Hof van Holland","housenumber":"20","lat":51.4238598,"lon":4.3226024},{"street":"Mgr Poelsstraat","housenumber":"20","lat":51.420555,"lon":4.3244233},{"street":"Aalbersestraat","housenumber":"21","lat":51.4213044,"lon":4.324636},{"street":"Hof van Holland","housenumber":"21","lat":51.4239149,"lon":4.3232231},{"street":"Huijbergseweg","housenumber":"21","lat":51.4233978,"lon":4.3289216},{"street":"Huijbergseweg","housenumber":"21a","lat":51.4233831,"lon":4.3292162},{"street":"Hof van Holland","housenumber":"22","lat":51.4237883,"lon":4.3225902},{"street":"Mgr Poelsstraat","housenumber":"22","lat":51.4205041,"lon":4.3243596},{"street":"Aalbersestraat","housenumber":"23","lat":51.4213517,"lon":4.3247024},{"street":"Hof van Holland","housenumber":"23","lat":51.4238478,"lon":4.3232118},{"street":"Hof van Holland","housenumber":"24","lat":51.4237168,"lon":4.3225781},{"street":"Mgr Poelsstraat","housenumber":"24","lat":51.4204569,"lon":4.3242976},{"street":"Aalbersestraat","housenumber":"25","lat":51.4213937,"lon":4.3247747},{"street":"Hof van Holland","housenumber":"25","lat":51.4237808,"lon":4.3232004},{"street":"Hof van Holland","housenumber":"26","lat":51.4241419,"lon":4.3226862},{"street":"Mgr Poelsstraat","housenumber":"26","lat":51.4204049,"lon":4.3242358},{"street":"Aalbersestraat","housenumber":"27","lat":51.4214417,"lon":4.3248268},{"street":"Hof van Holland","housenumber":"27","lat":51.4240719,"lon":4.3232788},{"street":"Hof van Holland","housenumber":"28","lat":51.4240704,"lon":4.3226741},{"street":"Mgr Poelsstraat","housenumber":"28","lat":51.4203544,"lon":4.3241778},{"street":"Aalbersestraat","housenumber":"29","lat":51.4214958,"lon":4.3248921},{"street":"Hof van Holland","housenumber":"29","lat":51.4240045,"lon":4.3232721},{"street":"Huijbergseweg","housenumber":"3","lat":51.4231698,"lon":4.325934},{"street":"Matthias Wolffstraat","housenumber":"3","lat":51.4245162,"lon":4.3284465},{"street":"Hof van Holland","housenumber":"30","lat":51.4239989,"lon":4.322662},{"street":"Mgr Poelsstraat","housenumber":"30","lat":51.4203098,"lon":4.3241103},{"street":"Hof van Holland","housenumber":"31","lat":51.4239116,"lon":4.3232587},{"street":"Hof van Holland","housenumber":"32","lat":51.4239274,"lon":4.3226499},{"street":"Hof van Holland","housenumber":"33","lat":51.4238445,"lon":4.3232473},{"street":"Hof van Holland","housenumber":"34","lat":51.4238559,"lon":4.3226378},{"street":"Hof van Holland","housenumber":"35","lat":51.4237775,"lon":4.323236},{"street":"Hof van Holland","housenumber":"36","lat":51.4237844,"lon":4.3226257},{"street":"Ossendrechtseweg","housenumber":"36","lat":51.4205744,"lon":4.3223912},{"street":"Hof van Holland","housenumber":"38","lat":51.4237129,"lon":4.3226135},{"street":"Hof van Holland","housenumber":"4","lat":51.4240224,"lon":4.3230729},{"street":"Mgr Poelsstraat","housenumber":"4","lat":51.4212949,"lon":4.3253217},{"street":"Burg Moorsstraat","housenumber":"47","lat":51.4204093,"lon":4.3289782},{"street":"Hof van Holland","housenumber":"5","lat":51.4238246,"lon":4.3232579},{"street":"Molenstraat","housenumber":"5","lat":51.422209,"lon":4.3283083},{"street":"Hof van Holland","housenumber":"6","lat":51.4240355,"lon":4.3228746},{"street":"Mgr Poelsstraat","housenumber":"6","lat":51.4212394,"lon":4.3252573},{"street":"Hof van Holland","housenumber":"7","lat":51.4238955,"lon":4.3232516},{"street":"Mgr Poelsstraat","housenumber":"8","lat":51.421192,"lon":4.3251937},{"street":"Doctor de Bruijnlaan","housenumber":"10","lat":51.4190347,"lon":4.3316984},{"street":"Putseweg","housenumber":"101","lat":51.4189324,"lon":4.3312568},{"street":"Putseweg","housenumber":"101a","lat":51.4188986,"lon":4.3313234},{"street":"Putseweg","housenumber":"103","lat":51.4188609,"lon":4.3313898},{"street":"Putseweg","housenumber":"105","lat":51.4188147,"lon":4.3314922},{"street":"Putseweg","housenumber":"107","lat":51.4187805,"lon":4.3315599},{"street":"Putseweg","housenumber":"107a","lat":51.4187475,"lon":4.3316331},{"street":"Putseweg","housenumber":"109","lat":51.4187072,"lon":4.3317056},{"street":"Doctor de Bruijnlaan","housenumber":"12","lat":51.4189937,"lon":4.3317795},{"street":"Doctor de Bruijnlaan","housenumber":"14","lat":51.41896,"lon":4.3318941},{"street":"Doctor de Bruijnlaan","housenumber":"16","lat":51.4190571,"lon":4.3320398},{"street":"Doctor de Bruijnlaan","housenumber":"18","lat":51.4191281,"lon":4.3319874},{"street":"Doctor de Bruijnlaan","housenumber":"20","lat":51.419176,"lon":4.3319132},{"street":"Doctor de Bruijnlaan","housenumber":"22","lat":51.4192273,"lon":4.3318428},{"street":"Doctor de Bruijnlaan","housenumber":"24","lat":51.4192785,"lon":4.3317724},{"street":"Doctor de Bruijnlaan","housenumber":"26","lat":51.4193281,"lon":4.331704},{"street":"Doctor de Bruijnlaan","housenumber":"4","lat":51.4191624,"lon":4.3314429},{"street":"Maststraat","housenumber":"45","lat":51.4195006,"lon":4.331991},{"street":"Maststraat","housenumber":"47","lat":51.4194576,"lon":4.3320504},{"street":"Maststraat","housenumber":"49","lat":51.4194162,"lon":4.3321121},{"street":"Maststraat","housenumber":"51","lat":51.4193589,"lon":4.3321981},{"street":"Maststraat","housenumber":"53","lat":51.4193187,"lon":4.3322552},{"street":"Maststraat","housenumber":"55","lat":51.4192731,"lon":4.3323217},{"street":"Doctor de Bruijnlaan","housenumber":"6","lat":51.4191215,"lon":4.331532},{"street":"Doctor de Bruijnlaan","housenumber":"8","lat":51.4190745,"lon":4.3316106},{"street":"Putseweg","housenumber":"99","lat":51.4189689,"lon":4.3311828},{"street":"Lindonk","housenumber":"173a","lat":51.4487081,"lon":4.3124441},{"street":"Jan van der Heijdenstraat","housenumber":"1","lat":51.4255809,"lon":4.3212675},{"street":"Hugo de Grootstraat","housenumber":"10a","lat":51.4267544,"lon":4.3368714},{"street":"Jan van der Heijdenstraat","housenumber":"11","lat":51.425335,"lon":4.3214677},{"street":"Jan van der Heijdenstraat","housenumber":"13","lat":51.4252997,"lon":4.3213696},{"street":"Ouwe Raedthuysplein","housenumber":"13","lat":51.4256676,"lon":4.322184},{"street":"Ouwe Raedthuysplein","housenumber":"14","lat":51.4258867,"lon":4.3213838},{"street":"Jac Jansenweg","housenumber":"15","lat":51.4252026,"lon":4.3415318},{"street":"Jan van der Heijdenstraat","housenumber":"15","lat":51.4252067,"lon":4.3212177},{"street":"Ouwe Raedthuysplein","housenumber":"16","lat":51.4258539,"lon":4.3212646},{"street":"Jan van der Heijdenstraat","housenumber":"17","lat":51.425148,"lon":4.3211753},{"street":"Ouwe Raedthuysplein","housenumber":"18","lat":51.4257395,"lon":4.3212779},{"street":"Jan van der Heijdenstraat","housenumber":"19","lat":51.4250669,"lon":4.3211506},{"street":"Pr Bernhardstraat","housenumber":"1a","lat":51.4264723,"lon":4.3223133},{"street":"Ouwe Raedthuysplein","housenumber":"2","lat":51.4260421,"lon":4.3219048},{"street":"Pr Bernhardstraat","housenumber":"2","lat":51.4263568,"lon":4.3223746},{"street":"Ouwe Raedthuysplein","housenumber":"20","lat":51.4257007,"lon":4.3213207},{"street":"Jan van der Heijdenstraat","housenumber":"21","lat":51.4252977,"lon":4.3212821},{"street":"Ouwe Raedthuysplein","housenumber":"24","lat":51.4255976,"lon":4.3214065},{"street":"Middenweg","housenumber":"2c","lat":51.427385,"lon":4.3470831},{"street":"Jan van der Heijdenstraat","housenumber":"3","lat":51.4255285,"lon":4.3213274},{"street":"Wattweg","housenumber":"3","lat":51.4275388,"lon":4.3509714},{"street":"Ouwe Raedthuysplein","housenumber":"32","lat":51.4261986,"lon":4.3217942},{"street":"Ouwe Raedthuysplein","housenumber":"34","lat":51.4261328,"lon":4.3218544},{"street":"Ouwe Raedthuysplein","housenumber":"36","lat":51.4261262,"lon":4.3217249},{"street":"Ouwe Raedthuysplein","housenumber":"38","lat":51.4260952,"lon":4.3216363},{"street":"de Groenling","housenumber":"38","lat":51.4328849,"lon":4.3208682},{"street":"Ouwe Raedthuysplein","housenumber":"40","lat":51.4260636,"lon":4.321546},{"street":"de Groenling","housenumber":"40","lat":51.4328355,"lon":4.3208676},{"street":"Ouwe Raedthuysplein","housenumber":"42","lat":51.426032,"lon":4.3214557},{"street":"de Groenling","housenumber":"42","lat":51.432704,"lon":4.3208705},{"street":"Ouwe Raedthuysplein","housenumber":"43a","lat":51.425519,"lon":4.3218093},{"street":"Ouwe Raedthuysplein","housenumber":"43b","lat":51.4254871,"lon":4.3217016},{"street":"Ouwe Raedthuysplein","housenumber":"43c","lat":51.4254258,"lon":4.321762},{"street":"Ouwe Raedthuysplein","housenumber":"43d","lat":51.4254553,"lon":4.3218715},{"street":"Ouwe Raedthuysplein","housenumber":"44","lat":51.4260004,"lon":4.3213653},{"street":"de Groenling","housenumber":"44","lat":51.432651,"lon":4.3208681},{"street":"Ouwe Raedthuysplein","housenumber":"46","lat":51.4259716,"lon":4.3212829},{"street":"de Groenling","housenumber":"46","lat":51.4325255,"lon":4.3208823},{"street":"Ouwe Raedthuysplein","housenumber":"48","lat":51.42594,"lon":4.3211925},{"street":"de Groenling","housenumber":"48","lat":51.4324725,"lon":4.3208761},{"street":"Valkestraat","housenumber":"4c","lat":51.4341781,"lon":4.3143602},{"street":"Jan van der Heijdenstraat","housenumber":"5","lat":51.4254925,"lon":4.321419},{"street":"Ouwe Raedthuysplein","housenumber":"50","lat":51.425951,"lon":4.3209996},{"street":"de Groenling","housenumber":"51","lat":51.4332628,"lon":4.3202435},{"street":"Ouwe Raedthuysplein","housenumber":"52","lat":51.4258377,"lon":4.3210993},{"street":"Putseweg","housenumber":"52","lat":51.4184551,"lon":4.3301766},{"street":"Ouwe Raedthuysplein","housenumber":"54","lat":51.4257033,"lon":4.3212134},{"street":"Ouwe Raedthuysplein","housenumber":"56","lat":51.4256179,"lon":4.3212894},{"street":"de Groenling","housenumber":"57","lat":51.433141,"lon":4.321065},{"street":"op den Duyn","housenumber":"57","lat":51.4318641,"lon":4.3229904},{"street":"Ouwe Raedthuysplein","housenumber":"58","lat":51.4255304,"lon":4.3213672},{"street":"Ouwe Raedthuysplein","housenumber":"59","lat":51.4255298,"lon":4.3218241},{"street":"Ouwe Raedthuysplein","housenumber":"6","lat":51.4260193,"lon":4.321758},{"street":"Postweg","housenumber":"6","lat":51.4255554,"lon":4.3447654},{"street":"Ouwe Raedthuysplein","housenumber":"60","lat":51.4262139,"lon":4.3218382},{"street":"Ouwe Raedthuysplein","housenumber":"62","lat":51.4261053,"lon":4.3218788},{"street":"Raadhuisstraat","housenumber":"62","lat":51.4261738,"lon":4.3218693},{"street":"Ouwe Raedthuysplein","housenumber":"64","lat":51.4260987,"lon":4.3217494},{"street":"Raadhuisstraat","housenumber":"65","lat":51.4261642,"lon":4.3222175},{"street":"Ouwe Raedthuysplein","housenumber":"66","lat":51.4260677,"lon":4.3216608},{"street":"Ouwe Raedthuysplein","housenumber":"68","lat":51.4260361,"lon":4.3215705},{"street":"Ouwe Raedthuysplein","housenumber":"70","lat":51.4260045,"lon":4.3214801},{"street":"Ouwe Raedthuysplein","housenumber":"72","lat":51.4259729,"lon":4.3213898},{"street":"Ouwe Raedthuysplein","housenumber":"74","lat":51.4259441,"lon":4.3213073},{"street":"Antwerpsestraatweg","housenumber":"76","lat":51.432422,"lon":4.3196112},{"street":"Ouwe Raedthuysplein","housenumber":"76","lat":51.4259125,"lon":4.321217},{"street":"Ouwe Raedthuysplein","housenumber":"78","lat":51.4259357,"lon":4.3209556},{"street":"Ouwe Raedthuysplein","housenumber":"8","lat":51.425963,"lon":4.3215922},{"street":"Ouwe Raedthuysplein","housenumber":"80","lat":51.4258224,"lon":4.3210553},{"street":"Ouwe Raedthuysplein","housenumber":"82","lat":51.4257186,"lon":4.3212573},{"street":"Ouwe Raedthuysplein","housenumber":"84","lat":51.4256331,"lon":4.3213333},{"street":"Ouwe Raedthuysplein","housenumber":"86","lat":51.4255456,"lon":4.3214112},{"street":"Jan van der Heijdenstraat","housenumber":"9","lat":51.4253375,"lon":4.3213497},{"street":"de Groenling","housenumber":"9","lat":51.4313881,"lon":4.3203391},{"street":"Groene Papegaai","housenumber":"19h","lat":51.4159179,"lon":4.3483101},{"street":"Groene Papegaai","housenumber":"19f","lat":51.4148355,"lon":4.3482862},{"street":"Groene Papegaai","housenumber":"427","lat":51.4158221,"lon":4.3526437},{"street":"Groene Papegaai","housenumber":"429","lat":51.415761,"lon":4.3524587},{"street":"Groene Papegaai","housenumber":"473","lat":51.4168067,"lon":4.3518302},{"street":"Groene Papegaai","housenumber":"449","lat":51.4162127,"lon":4.3525702},{"street":"Groene Papegaai","housenumber":"486","lat":51.416646,"lon":4.3532868},{"street":"Groene Papegaai","housenumber":"443","lat":51.4158373,"lon":4.3519492},{"street":"Groene Papegaai","housenumber":"474","lat":51.416778,"lon":4.3515474},{"street":"Groene Papegaai","housenumber":"407","lat":51.4153827,"lon":4.3534285},{"street":"Groene Papegaai","housenumber":"420","lat":51.415549,"lon":4.3524217},{"street":"Groene Papegaai","housenumber":"425","lat":51.4159579,"lon":4.352943},{"street":"Groene Papegaai","housenumber":"480","lat":51.416886,"lon":4.3525948},{"street":"Groene Papegaai","housenumber":"475","lat":51.4166449,"lon":4.3515543},{"street":"Groene Papegaai","housenumber":"455","lat":51.4159942,"lon":4.351666},{"street":"Groene Papegaai","housenumber":"441","lat":51.4156646,"lon":4.3519189},{"street":"Groene Papegaai","housenumber":"401","lat":51.415096,"lon":4.3527703},{"street":"Groene Papegaai","housenumber":"424","lat":51.4158149,"lon":4.3531744},{"street":"Groene Papegaai","housenumber":"467","lat":51.4164735,"lon":4.3522143},{"street":"Groene Papegaai","housenumber":"471","lat":51.4165472,"lon":4.3518094},{"street":"Groene Papegaai","housenumber":"476","lat":51.4165242,"lon":4.3514961},{"street":"Groene Papegaai","housenumber":"450","lat":51.4161871,"lon":4.3523729},{"street":"Groene Papegaai","housenumber":"470","lat":51.416502,"lon":4.3519398},{"street":"Groene Papegaai","housenumber":"453","lat":51.4161519,"lon":4.3517537},{"street":"Groene Papegaai","housenumber":"409","lat":51.415192,"lon":4.3526618},{"street":"Groene Papegaai","housenumber":"442","lat":51.4157835,"lon":4.3519143},{"street":"Groene Papegaai","housenumber":"493","lat":51.4165609,"lon":4.354428},{"street":"Groene Papegaai","housenumber":"414","lat":51.4154882,"lon":4.3532142},{"street":"Groene Papegaai","housenumber":"422","lat":51.4156244,"lon":4.3526458},{"street":"Groene Papegaai","housenumber":"490","lat":51.4166795,"lon":4.3539898},{"street":"Groene Papegaai","housenumber":"468","lat":51.4166383,"lon":4.3522885},{"street":"Groene Papegaai","housenumber":"440","lat":51.4155621,"lon":4.3518927},{"street":"op den Duyn","housenumber":"19","lat":51.4294289,"lon":4.3203481},{"street":"Gemeynte","housenumber":"9","lat":51.4310748,"lon":4.3287236},{"street":"Nijverheidstraat","housenumber":"28b","lat":51.4313051,"lon":4.3293704},{"street":"Pr Hendrikstraat","housenumber":"10","lat":51.4247461,"lon":4.3298322},{"street":"op den Duyn","housenumber":"51","lat":51.431796,"lon":4.3220383},{"street":"Raadhuisstraat","housenumber":"36a","lat":51.4272451,"lon":4.32075},{"street":"Raadhuisstraat","housenumber":"44a","lat":51.4269477,"lon":4.3211246},{"street":"Raadhuisstraat","housenumber":"50b","lat":51.4267375,"lon":4.3212855},{"street":"Raadhuisstraat","housenumber":"46b","lat":51.4268613,"lon":4.3211779},{"street":"Raadhuisstraat","housenumber":"34a","lat":51.4272757,"lon":4.3207151},{"street":"Raadhuisstraat","housenumber":"34b","lat":51.4272624,"lon":4.3206964},{"street":"Raadhuisstraat","housenumber":"50a","lat":51.4267366,"lon":4.3213178},{"street":"Raadhuisstraat","housenumber":"52b","lat":51.4266644,"lon":4.3213633},{"street":"Raadhuisstraat","housenumber":"44b","lat":51.4269368,"lon":4.3211058},{"street":"Raadhuisstraat","housenumber":"36b","lat":51.4272294,"lon":4.3207276},{"street":"Raadhuisstraat","housenumber":"48b","lat":51.4267964,"lon":4.3212327},{"street":"Raadhuisstraat","housenumber":"52","lat":51.426679,"lon":4.3213934},{"street":"Raadhuisstraat","housenumber":"52a","lat":51.4266765,"lon":4.3213801},{"street":"Raadhuisstraat","housenumber":"38b","lat":51.4271483,"lon":4.3208322},{"street":"Raadhuisstraat","housenumber":"46a","lat":51.4268485,"lon":4.3212087},{"street":"Beukendreef","housenumber":"22a","lat":51.4536903,"lon":4.2981327},{"street":"Sportlaan","housenumber":"9a","lat":51.4194497,"lon":4.337837},{"street":"Raadhuisstraat","housenumber":"126","lat":51.4235847,"lon":4.3232555},{"street":"Arendsberg","housenumber":"17","lat":51.4266677,"lon":4.3204963},{"street":"Arendsberg","housenumber":"7","lat":51.4266911,"lon":4.3204731},{"street":"Arendsberg","housenumber":"11","lat":51.4267939,"lon":4.3208813},{"street":"Arendsberg","housenumber":"13","lat":51.4267532,"lon":4.3207615},{"street":"Arendsberg","housenumber":"5","lat":51.4267338,"lon":4.3206004},{"street":"Arendsberg","housenumber":"9","lat":51.4266494,"lon":4.3203502},{"street":"Haviksberg","housenumber":"51","lat":51.4264578,"lon":4.3204574},{"street":"Haviksberg","housenumber":"55","lat":51.4262596,"lon":4.3206343},{"street":"Haviksberg","housenumber":"53","lat":51.4263398,"lon":4.3205598},{"street":"Arendsberg","housenumber":"3","lat":51.4267803,"lon":4.3207352},{"street":"Arendsberg","housenumber":"19","lat":51.4266241,"lon":4.320375},{"street":"Arendsberg","housenumber":"15","lat":51.4267113,"lon":4.3206206},{"street":"Arendsberg","housenumber":"1","lat":51.4268239,"lon":4.3208535},{"street":"Jac Jansenweg","housenumber":"1","lat":51.4278309,"lon":4.3418714},{"street":"Postweg","housenumber":"5a","lat":51.426741,"lon":4.3438397},{"street":"Jac Jansenweg","housenumber":"7","lat":51.4267574,"lon":4.3417046},{"street":"Doelstraat","housenumber":"3a","lat":51.4338974,"lon":4.3172444},{"street":"Doelstraat","housenumber":"3b","lat":51.4337572,"lon":4.3172318},{"street":"Jac Jansenweg","housenumber":"11","lat":51.4259703,"lon":4.3415143},{"street":"Wouwbaan","housenumber":"49","lat":51.4270094,"lon":4.3266515},{"street":"Antwerpsestraatweg","housenumber":"181a","lat":51.454975,"lon":4.3104731},{"street":"Haviksberg","housenumber":"4","lat":51.4268588,"lon":4.3195466},{"street":"Buitendreef","housenumber":"3a","lat":51.4255583,"lon":4.3471681},{"street":"Ouwe Raedthuysplein","housenumber":"22","lat":51.4256159,"lon":4.3213865},{"street":"Raadhuisstraat","housenumber":"112","lat":51.424169,"lon":4.3233122},{"street":"Aviolandalaan","housenumber":"31w-47","lat":51.4410563,"lon":4.3287362},{"street":"Aviolandalaan","housenumber":"10d-30","lat":51.4379662,"lon":4.3363978},{"street":"Kooiweg","housenumber":"40d-603","lat":51.4307857,"lon":4.3485639},{"street":"Raadhuisstraat","housenumber":"110","lat":51.4242042,"lon":4.3233283},{"street":"Antwerpsestraatweg","housenumber":"80a","lat":51.4326632,"lon":4.319663},{"street":"Antwerpsestraatweg","housenumber":"64j","lat":51.4316793,"lon":4.3190362},{"street":"Antwerpsestraatweg","housenumber":"64h","lat":51.4316216,"lon":4.3190456},{"street":"Antwerpsestraatweg","housenumber":"64f","lat":51.4315726,"lon":4.3190428},{"street":"Antwerpsestraatweg","housenumber":"64e","lat":51.4315274,"lon":4.3190438},{"street":"Antwerpsestraatweg","housenumber":"64d","lat":51.4316776,"lon":4.3189901},{"street":"Antwerpsestraatweg","housenumber":"64c","lat":51.4316174,"lon":4.3189955},{"street":"Antwerpsestraatweg","housenumber":"64b","lat":51.4315697,"lon":4.3189966},{"street":"Antwerpsestraatweg","housenumber":"64a","lat":51.4315245,"lon":4.3189997},{"street":"Kooiweg","housenumber":"25","lat":51.4302186,"lon":4.3507695},{"street":"Antwerpsestraatweg","housenumber":"78","lat":51.4325028,"lon":4.3191608},{"street":"Ouwe Raedthuysplein","housenumber":"91","lat":51.4256174,"lon":4.3217184},{"street":"Uilenberg","housenumber":"68","lat":51.4251903,"lon":4.3195762},{"street":"Uilenberg","housenumber":"66","lat":51.4251959,"lon":4.3196184},{"street":"Uilenberg","housenumber":"64","lat":51.4252453,"lon":4.319584},{"street":"Uilenberg","housenumber":"62","lat":51.425315,"lon":4.3195703},{"street":"Uilenberg","housenumber":"60","lat":51.4252007,"lon":4.3196726},{"street":"Uilenberg","housenumber":"58","lat":51.4252526,"lon":4.3196623},{"street":"Uilenberg","housenumber":"56","lat":51.4253195,"lon":4.3196472},{"street":"Uilenberg","housenumber":"54","lat":51.4253854,"lon":4.319632},{"street":"Uilenberg","housenumber":"52","lat":51.42544,"lon":4.3196172},{"street":"Uilenberg","housenumber":"50","lat":51.4254823,"lon":4.3196026},{"street":"Uilenberg","housenumber":"48","lat":51.4252023,"lon":4.319748},{"street":"Uilenberg","housenumber":"46","lat":51.4252598,"lon":4.3197346},{"street":"Uilenberg","housenumber":"44","lat":51.4253277,"lon":4.3197194},{"street":"Uilenberg","housenumber":"42","lat":51.4253889,"lon":4.3197074},{"street":"Uilenberg","housenumber":"40","lat":51.4254473,"lon":4.3196955},{"street":"Uilenberg","housenumber":"38","lat":51.4254944,"lon":4.3196823},{"street":"Uilenberg","housenumber":"36","lat":51.4251253,"lon":4.3197619},{"street":"Uilenberg","housenumber":"34","lat":51.4259655,"lon":4.3192326},{"street":"Uilenberg","housenumber":"32","lat":51.4258743,"lon":4.3193812},{"street":"Uilenberg","housenumber":"30","lat":51.4259258,"lon":4.3193302},{"street":"Uilenberg","housenumber":"28","lat":51.4259762,"lon":4.3192761},{"street":"Uilenberg","housenumber":"26","lat":51.425683,"lon":4.3196197},{"street":"Uilenberg","housenumber":"24","lat":51.4257579,"lon":4.3195485},{"street":"Uilenberg","housenumber":"22","lat":51.4258215,"lon":4.3194881},{"street":"Uilenberg","housenumber":"20","lat":51.4258889,"lon":4.3194307},{"street":"Uilenberg","housenumber":"18","lat":51.4259413,"lon":4.3193766},{"street":"Uilenberg","housenumber":"16","lat":51.4259947,"lon":4.3193301},{"street":"Uilenberg","housenumber":"14","lat":51.4256976,"lon":4.3196647},{"street":"Uilenberg","housenumber":"12","lat":51.4257707,"lon":4.3196116},{"street":"Uilenberg","housenumber":"10","lat":51.4258381,"lon":4.3195451},{"street":"Uilenberg","housenumber":"8","lat":51.4259045,"lon":4.3194817},{"street":"Uilenberg","housenumber":"6","lat":51.4259616,"lon":4.3194275},{"street":"Uilenberg","housenumber":"4","lat":51.4260102,"lon":4.319381},{"street":"Uilenberg","housenumber":"2","lat":51.4256644,"lon":4.3196081},{"street":"Doelstraat","housenumber":"3","lat":51.4340094,"lon":4.3173244},{"street":"Raadhuisstraat","housenumber":"44","lat":51.4269465,"lon":4.3211533},{"street":"Oude Hof","housenumber":"6","lat":51.4201568,"lon":4.3212737},{"street":"Oude Hof","housenumber":"4","lat":51.4203792,"lon":4.3213756},{"street":"Hof van Brabant","housenumber":"1","lat":51.4293219,"lon":4.3316424},{"street":"Raadhuisstraat","housenumber":"133","lat":51.4229988,"lon":4.3234717},{"street":"Canadalaan","housenumber":"28a","lat":51.4284666,"lon":4.3147914},{"street":"Hamiltonlaan","housenumber":"8","lat":51.4265578,"lon":4.3166144},{"street":"op den Duyn","housenumber":"49","lat":51.4317201,"lon":4.3217392},{"street":"Doelstraat","housenumber":"3","lat":51.434021,"lon":4.3174607},{"street":"Hof van Brabant","housenumber":"31","lat":51.428965,"lon":4.3335718},{"street":"Hof van Brabant","housenumber":"11","lat":51.4301138,"lon":4.3322572},{"street":"Hof van Brabant","housenumber":"32","lat":51.4295407,"lon":4.3335073},{"street":"Hof van Brabant","housenumber":"29","lat":51.429016,"lon":4.3332953},{"street":"Hof van Brabant","housenumber":"28","lat":51.429732,"lon":4.3328375},{"street":"Hof van Brabant","housenumber":"26","lat":51.4298185,"lon":4.3324698},{"street":"Hof van Brabant","housenumber":"36","lat":51.4293666,"lon":4.3342366},{"street":"Hof van Brabant","housenumber":"7","lat":51.4297888,"lon":4.332004},{"street":"Dennenlaan","housenumber":"6","lat":51.4178354,"lon":4.3314219},{"street":"Hof van Brabant","housenumber":"16","lat":51.4286855,"lon":4.3336404},{"street":"Hof van Brabant","housenumber":"12","lat":51.4288235,"lon":4.3331047},{"street":"Hof van Brabant","housenumber":"9","lat":51.4299578,"lon":4.3321},{"street":"Hof van Brabant","housenumber":"14","lat":51.4287547,"lon":4.33337},{"street":"Oude Hof","housenumber":"2","lat":51.4206502,"lon":4.321286},{"street":"Oude Hof","housenumber":"8","lat":51.4201962,"lon":4.3221239},{"street":"Kooiweg","housenumber":"40d-732","lat":51.4393959,"lon":4.3454377},{"street":"Onderstal","housenumber":"30","lat":51.4254585,"lon":4.3150674},{"street":"Raadhuisstraat","housenumber":"79a","lat":51.4253318,"lon":4.3230201},{"street":"Raadhuisstraat","housenumber":"79b","lat":51.4252893,"lon":4.3230435},{"street":"Raadhuisstraat","housenumber":"79j","lat":51.4251794,"lon":4.3232258},{"street":"Raadhuisstraat","housenumber":"79d","lat":51.425204,"lon":4.3230904},{"street":"Raadhuisstraat","housenumber":"79e","lat":51.4251616,"lon":4.3231126},{"street":"Raadhuisstraat","housenumber":"79f","lat":51.4253516,"lon":4.3231188},{"street":"Raadhuisstraat","housenumber":"79h","lat":51.4252679,"lon":4.3231734},{"street":"Raadhuisstraat","housenumber":"79c","lat":51.4252468,"lon":4.3230668},{"street":"Hof van Brabant","housenumber":"2","lat":51.4291357,"lon":4.3319613},{"street":"Hof van Brabant","housenumber":"6","lat":51.4289987,"lon":4.3325288},{"street":"Hof van Brabant","housenumber":"21","lat":51.4293628,"lon":4.332114},{"street":"Hof van Brabant","housenumber":"30","lat":51.4296117,"lon":4.333193},{"street":"Hof van Brabant","housenumber":"38","lat":51.4292662,"lon":4.3344279},{"street":"Postweg","housenumber":"1a","lat":51.4252421,"lon":4.3442174},{"street":"Postweg","housenumber":"1","lat":51.4250938,"lon":4.3442191},{"street":"Sportlaan","housenumber":"5","lat":51.4193425,"lon":4.3371262},{"street":"Sportlaan","housenumber":"8d-A","lat":51.4173471,"lon":4.3352618},{"street":"Dennenlaan","housenumber":"53","lat":51.4168934,"lon":4.3274184},{"street":"Westerstraat","housenumber":"62d-24","lat":51.4267607,"lon":4.36202},{"street":"Westerstraat","housenumber":"62d-20","lat":51.426962,"lon":4.36174},{"street":"Aviolandalaan","housenumber":"35w-42","lat":51.4407227,"lon":4.3296848},{"street":"Aviolandalaan","housenumber":"33","lat":51.4409391,"lon":4.3318271},{"street":"Aviolandalaan","housenumber":"37w-5","lat":51.4417664,"lon":4.3301726},{"street":"Aviolandalaan","housenumber":"33w-4","lat":51.4409039,"lon":4.3317533},{"street":"Kooiweg","housenumber":"40d-147","lat":51.437212,"lon":4.3364784},{"street":"Kooiweg","housenumber":"23","lat":51.4301344,"lon":4.3495816},{"street":"Hof van Brabant","housenumber":"27","lat":51.4291232,"lon":4.3329671},{"street":"Hof van Brabant","housenumber":"4","lat":51.4290728,"lon":4.332261},{"street":"Middenweg","housenumber":"1b","lat":51.429126,"lon":4.3446463},{"street":"Middenweg","housenumber":"1","lat":51.4291302,"lon":4.3446745},{"street":"Jac Jansenweg","housenumber":"29","lat":51.4248743,"lon":4.3432679},{"street":"Hof van Brabant","housenumber":"8","lat":51.4289239,"lon":4.3328375},{"street":"Hof van Brabant","housenumber":"5","lat":51.4295962,"lon":4.3318881},{"street":"Nijverheidstraat","housenumber":"20a","lat":51.4320716,"lon":4.329363},{"street":"Hof van Holland","housenumber":"13","lat":51.4238643,"lon":4.3227233},{"street":"Raadhuisstraat","housenumber":"33e","lat":51.4273544,"lon":4.3212091},{"street":"Raadhuisstraat","housenumber":"33a","lat":51.4273231,"lon":4.3211437},{"street":"Raadhuisstraat","housenumber":"33b","lat":51.4273314,"lon":4.3211599},{"street":"Hof van Holland","housenumber":"8","lat":51.424053,"lon":4.3226093},{"street":"Raadhuisstraat","housenumber":"33c","lat":51.4273385,"lon":4.3211747},{"street":"Raadhuisstraat","housenumber":"33d","lat":51.4273464,"lon":4.3211903},{"street":"Hof van Holland","housenumber":"2","lat":51.424009,"lon":4.3232739},{"street":"Hof van Brabant","housenumber":"23","lat":51.4292549,"lon":4.3324117},{"street":"Hof van Brabant","housenumber":"3","lat":51.429427,"lon":4.3317489},{"street":"Hof van Brabant","housenumber":"34","lat":51.4294273,"lon":4.3337612},{"street":"Antwerpsestraatweg","housenumber":"161a","lat":51.4476363,"lon":4.3123713},{"street":"Raadhuisstraat","housenumber":"98","lat":51.424836,"lon":4.3229599},{"street":"Raadhuisstraat","housenumber":"28v","lat":51.4271809,"lon":4.3199896},{"street":"Raadhuisstraat","housenumber":"32t","lat":51.4272322,"lon":4.3204462},{"street":"Raadhuisstraat","housenumber":"32u","lat":51.4272651,"lon":4.320406},{"street":"Raadhuisstraat","housenumber":"32v","lat":51.4272964,"lon":4.3204615},{"street":"Raadhuisstraat","housenumber":"16","lat":51.4276492,"lon":4.3202649},{"street":"Onderstal","housenumber":"2f","lat":51.424823,"lon":4.3222513},{"street":"Onderstal","housenumber":"2c","lat":51.4247838,"lon":4.3223585},{"street":"Onderstal","housenumber":"2b","lat":51.4247847,"lon":4.3224483},{"street":"Onderstal","housenumber":"2h","lat":51.4248256,"lon":4.3221595},{"street":"Onderstal","housenumber":"2e","lat":51.4247832,"lon":4.3221596},{"street":"Onderstal","housenumber":"2d","lat":51.4247817,"lon":4.3222531},{"street":"Onderstal","housenumber":"2a","lat":51.4247443,"lon":4.3223612},{"street":"Nieuweweg","housenumber":"41a","lat":51.4284821,"lon":4.3154366},{"street":"Huijbergseweg","housenumber":"140","lat":51.424526,"lon":4.3536975},{"street":"Middenweg","housenumber":"2a-1","lat":51.4270116,"lon":4.3449126},{"street":"Past van Roesselstraat","housenumber":"31b","lat":51.4214934,"lon":4.3315042},{"street":"Past van Roesselstraat","housenumber":"31d","lat":51.4213906,"lon":4.3315059},{"street":"Nieuweweg","housenumber":"41b","lat":51.42849,"lon":4.3151718},{"street":"Past van Roesselstraat","housenumber":"31a","lat":51.4215414,"lon":4.3315035},{"street":"Middenweg","housenumber":"2a-2","lat":51.4270619,"lon":4.3450886},{"street":"Middenweg","housenumber":"2a-3","lat":51.4270985,"lon":4.3452509},{"street":"Hamiltonlaan","housenumber":"12","lat":51.4269177,"lon":4.3166569},{"street":"Nieuweweg","housenumber":"41c","lat":51.4285059,"lon":4.3149519},{"street":"Middenweg","housenumber":"2a-4","lat":51.4266658,"lon":4.3450554},{"street":"Gemeynte","housenumber":"15","lat":51.4308592,"lon":4.3291325},{"street":"Past van Roesselstraat","housenumber":"31c","lat":51.4214412,"lon":4.3315051},{"street":"Kooiweg","housenumber":"30","lat":51.4311346,"lon":4.3566305},{"street":"Antwerpsestraatweg","housenumber":"126-a","lat":51.4375046,"lon":4.3188056},{"street":"Middenweg","housenumber":"9a","lat":51.4285272,"lon":4.3484427},{"street":"Raadhuisstraat","housenumber":"16-4A6","lat":51.4271948,"lon":4.3200265},{"street":"Raadhuisstraat","housenumber":"16-15A1","lat":51.4273702,"lon":4.3197176},{"street":"Raadhuisstraat","housenumber":"16-2A8","lat":51.427134,"lon":4.3198827},{"street":"Raadhuisstraat","housenumber":"16-10A8","lat":51.4275862,"lon":4.3200528},{"street":"Raadhuisstraat","housenumber":"16-16A3","lat":51.4275052,"lon":4.3198215},{"street":"Raadhuisstraat","housenumber":"16-7A3","lat":51.4269058,"lon":4.3202164},{"street":"Raadhuisstraat","housenumber":"16-4A7","lat":51.427475,"lon":4.3196125},{"street":"Raadhuisstraat","housenumber":"16-7A4","lat":51.4268758,"lon":4.3201464},{"street":"Raadhuisstraat","housenumber":"16-11A2","lat":51.4276155,"lon":4.320155},{"street":"Raadhuisstraat","housenumber":"16-2A1","lat":51.4268661,"lon":4.3201554},{"street":"Raadhuisstraat","housenumber":"16-11A6","lat":51.4274546,"lon":4.3204959},{"street":"Raadhuisstraat","housenumber":"16-12A2","lat":51.4272238,"lon":4.3204581},{"street":"Raadhuisstraat","housenumber":"16-8A2","lat":51.4271408,"lon":4.3199013},{"street":"Raadhuisstraat","housenumber":"16-13A7","lat":51.4270373,"lon":4.3200201},{"street":"Raadhuisstraat","housenumber":"16-12A1","lat":51.427325,"lon":4.320666},{"street":"Raadhuisstraat","housenumber":"16-13A5","lat":51.4269632,"lon":4.3200875},{"street":"Raadhuisstraat","housenumber":"16-1A7","lat":51.4269158,"lon":4.3202881},{"street":"Raadhuisstraat","housenumber":"16-9A2","lat":51.4274009,"lon":4.319665},{"street":"Raadhuisstraat","housenumber":"16-3A8","lat":51.4273471,"lon":4.3206099},{"street":"Raadhuisstraat","housenumber":"16-10A2","lat":51.42725,"lon":4.3200872},{"street":"Raadhuisstraat","housenumber":"16-9A9","lat":51.4273436,"lon":4.3200875},{"street":"Raadhuisstraat","housenumber":"16-10A7","lat":51.4275142,"lon":4.3201121},{"street":"Raadhuisstraat","housenumber":"16-7A6","lat":51.4269931,"lon":4.3200355},{"street":"Raadhuisstraat","housenumber":"16-17A8","lat":51.4273077,"lon":4.3204883},{"street":"Raadhuisstraat","housenumber":"16-13A8","lat":51.4270735,"lon":4.3199872},{"street":"Raadhuisstraat","housenumber":"16-5A3","lat":51.4275478,"lon":4.3198668},{"street":"Raadhuisstraat","housenumber":"16-8A5","lat":51.4271773,"lon":4.3198681},{"street":"Raadhuisstraat","housenumber":"16-10A6","lat":51.4275007,"lon":4.3200648},{"street":"Raadhuisstraat","housenumber":"16-6A7","lat":51.4269897,"lon":4.3204524},{"street":"Raadhuisstraat","housenumber":"16-7A8","lat":51.4270659,"lon":4.3199694},{"street":"Raadhuisstraat","housenumber":"16-9A7","lat":51.4275356,"lon":4.3198759},{"street":"Raadhuisstraat","housenumber":"16-1A5","lat":51.4269573,"lon":4.320405},{"street":"Raadhuisstraat","housenumber":"16-9A5","lat":51.4275,"lon":4.3197516},{"street":"Raadhuisstraat","housenumber":"16-5A8","lat":51.4273339,"lon":4.3206822},{"street":"Raadhuisstraat","housenumber":"16-12A4","lat":51.4273215,"lon":4.3204699},{"street":"Raadhuisstraat","housenumber":"16-7A5","lat":51.4269553,"lon":4.3200699},{"street":"Raadhuisstraat","housenumber":"16-11A4","lat":51.427602,"lon":4.3202994},{"street":"Raadhuisstraat","housenumber":"16-2A5","lat":51.4270228,"lon":4.3199838},{"street":"Raadhuisstraat","housenumber":"16-15A2","lat":51.4274064,"lon":4.3196848},{"street":"Raadhuisstraat","housenumber":"16-4A8","lat":51.4274944,"lon":4.3196802},{"street":"Raadhuisstraat","housenumber":"16-12A6","lat":51.4270224,"lon":4.3205008},{"street":"Raadhuisstraat","housenumber":"16-13A2","lat":51.4269391,"lon":4.3202662},{"street":"Raadhuisstraat","housenumber":"16-5A2","lat":51.4275296,"lon":4.3198032},{"street":"Raadhuisstraat","housenumber":"16-3A4","lat":51.4272448,"lon":4.319782},{"street":"Raadhuisstraat","housenumber":"16-17A3","lat":51.4275932,"lon":4.3202831},{"street":"Raadhuisstraat","housenumber":"16-12A7","lat":51.4270013,"lon":4.3204415},{"street":"Raadhuisstraat","housenumber":"16-4A4","lat":51.4272383,"lon":4.3200979},{"street":"Raadhuisstraat","housenumber":"16-10A1","lat":51.4272727,"lon":4.3201511},{"street":"Raadhuisstraat","housenumber":"16-17A5","lat":51.4275259,"lon":4.3203717},{"street":"Raadhuisstraat","housenumber":"16-16A8","lat":51.4275741,"lon":4.3200622},{"street":"Raadhuisstraat","housenumber":"16-1A6","lat":51.4269363,"lon":4.3203459},{"street":"Raadhuisstraat","housenumber":"16-4A5","lat":51.4271581,"lon":4.3200599},{"street":"Raadhuisstraat","housenumber":"16-12A3","lat":51.427279,"lon":4.3203879},{"street":"Raadhuisstraat","housenumber":"16-3A1","lat":51.4271704,"lon":4.3198496},{"street":"Raadhuisstraat","housenumber":"16-5A7","lat":51.4273642,"lon":4.3206425},{"street":"Raadhuisstraat","housenumber":"16-14A8","lat":51.4273328,"lon":4.3197516},{"street":"Raadhuisstraat","housenumber":"16-3A2","lat":51.4272069,"lon":4.3198164},{"street":"Raadhuisstraat","housenumber":"16-16A9","lat":51.4275265,"lon":4.320103},{"street":"Raadhuisstraat","housenumber":"16-13A4","lat":51.4268857,"lon":4.3201379},{"street":"Raadhuisstraat","housenumber":"16-15A3","lat":51.4273111,"lon":4.3200398},{"street":"Raadhuisstraat","housenumber":"16-17A6","lat":51.4274934,"lon":4.3204141},{"street":"Raadhuisstraat","housenumber":"16-6A3","lat":51.427286,"lon":4.3203788},{"street":"Raadhuisstraat","housenumber":"16-8A6","lat":51.4272138,"lon":4.319835},{"street":"Raadhuisstraat","housenumber":"16-5A1","lat":51.4275121,"lon":4.319742},{"street":"Raadhuisstraat","housenumber":"16-12A8","lat":51.4269808,"lon":4.3203839},{"street":"Raadhuisstraat","housenumber":"16-14A3","lat":51.4271843,"lon":4.3198866},{"street":"Raadhuisstraat","housenumber":"16-9A8","lat":51.4273228,"lon":4.320029},{"street":"Raadhuisstraat","housenumber":"16-13A6","lat":51.4270006,"lon":4.3200535},{"street":"Raadhuisstraat","housenumber":"16-17A1","lat":51.4276034,"lon":4.3201647},{"street":"Raadhuisstraat","housenumber":"16-17A2","lat":51.4276328,"lon":4.3202306},{"street":"Raadhuisstraat","housenumber":"16-1A8","lat":51.4268941,"lon":4.3202271},{"street":"Raadhuisstraat","housenumber":"16-16A5","lat":51.4274893,"lon":4.3199732},{"street":"Raadhuisstraat","housenumber":"16-1A3","lat":51.4269987,"lon":4.3205214},{"street":"Raadhuisstraat","housenumber":"16-17A7","lat":51.4274465,"lon":4.3204786},{"street":"Raadhuisstraat","housenumber":"16-14A4","lat":51.4271447,"lon":4.3200224},{"street":"Raadhuisstraat","housenumber":"16-17A8","lat":51.4274121,"lon":4.3205239},{"street":"Raadhuisstraat","housenumber":"16-2A7","lat":51.4270965,"lon":4.3199168},{"street":"Raadhuisstraat","housenumber":"16-8A8","lat":51.4272886,"lon":4.319767},{"street":"Raadhuisstraat","housenumber":"16-7A2","lat":51.4269274,"lon":4.3202772},{"street":"Raadhuisstraat","housenumber":"16-15A7","lat":51.4272618,"lon":4.3200768},{"street":"Raadhuisstraat","housenumber":"16-4A2","lat":51.4273556,"lon":4.3200778},{"street":"Raadhuisstraat","housenumber":"16-2A6","lat":51.4270592,"lon":4.3199506},{"street":"Raadhuisstraat","housenumber":"16-3A5","lat":51.4272802,"lon":4.3197499},{"street":"Raadhuisstraat","housenumber":"16-2A2","lat":51.4269099,"lon":4.3200987},{"street":"Raadhuisstraat","housenumber":"16-6A2","lat":51.4272492,"lon":4.3204786},{"street":"Raadhuisstraat","housenumber":"16-4A1","lat":51.4273343,"lon":4.3200178},{"street":"Raadhuisstraat","housenumber":"16-16A4","lat":51.4275235,"lon":4.3198854},{"street":"Raadhuisstraat","housenumber":"16-16A7","lat":51.4275129,"lon":4.3200557},{"street":"Raadhuisstraat","housenumber":"16-16A1","lat":51.42747,"lon":4.3196985},{"street":"Raadhuisstraat","housenumber":"16-9A3","lat":51.4274626,"lon":4.3196208},{"street":"Raadhuisstraat","housenumber":"16-11A5","lat":51.4275701,"lon":4.3203416},{"street":"Raadhuisstraat","housenumber":"16-6A6","lat":51.4270105,"lon":4.3205111},{"street":"Raadhuisstraat","housenumber":"16-8A7","lat":51.4272513,"lon":4.3198009},{"street":"Raadhuisstraat","housenumber":"16-10A3","lat":51.4271885,"lon":4.3200075},{"street":"Raadhuisstraat","housenumber":"16-2A4","lat":51.4269862,"lon":4.320017},{"street":"Raadhuisstraat","housenumber":"16-14A5","lat":51.427221,"lon":4.3198532},{"street":"Raadhuisstraat","housenumber":"16-5A6","lat":51.4273968,"lon":4.3205997},{"street":"Raadhuisstraat","housenumber":"16-12A5","lat":51.4270704,"lon":4.3204602},{"street":"Raadhuisstraat","housenumber":"16-11A8","lat":51.4273883,"lon":4.320583},{"street":"Raadhuisstraat","housenumber":"16-13A3","lat":51.4269173,"lon":4.320205},{"street":"Raadhuisstraat","housenumber":"16-8A1","lat":51.4271033,"lon":4.3199354},{"street":"Raadhuisstraat","housenumber":"16-15A6","lat":51.4272843,"lon":4.3201401},{"street":"Raadhuisstraat","housenumber":"16-9A4","lat":51.4274822,"lon":4.3196893},{"street":"Raadhuisstraat","housenumber":"16-6A4","lat":51.4273284,"lon":4.3204607},{"street":"Raadhuisstraat","housenumber":"16-3A6","lat":51.4273186,"lon":4.3197149},{"street":"Raadhuisstraat","housenumber":"16-2A3","lat":51.4269487,"lon":4.320051},{"street":"Raadhuisstraat","housenumber":"16-11A1","lat":51.4276021,"lon":4.3201081},{"street":"Raadhuisstraat","housenumber":"16-13A1","lat":51.4269599,"lon":4.320325},{"street":"Raadhuisstraat","housenumber":"16-14A7","lat":51.4272949,"lon":4.319786},{"street":"Raadhuisstraat","housenumber":"16-17A4","lat":51.4275608,"lon":4.3203258},{"street":"Raadhuisstraat","housenumber":"16-9A6","lat":51.4275176,"lon":4.3198129},{"street":"Raadhuisstraat","housenumber":"16-11A7","lat":51.4274215,"lon":4.3205394},{"street":"Raadhuisstraat","housenumber":"16-5A5","lat":51.4274304,"lon":4.3205556},{"street":"Raadhuisstraat","housenumber":"16-7A7","lat":51.4270293,"lon":4.3200026},{"street":"Raadhuisstraat","housenumber":"16-11A9","lat":51.4273556,"lon":4.3206259},{"street":"Raadhuisstraat","housenumber":"16-10A4","lat":51.4271511,"lon":4.3200415},{"street":"Raadhuisstraat","housenumber":"16-6A8","lat":51.426969,"lon":4.3203942},{"street":"Raadhuisstraat","housenumber":"16-16A2","lat":51.4274877,"lon":4.3197604},{"street":"Raadhuisstraat","housenumber":"16-14A2","lat":51.4271492,"lon":4.3199185},{"street":"Raadhuisstraat","housenumber":"16-A10","lat":51.4275894,"lon":4.3201156},{"street":"Raadhuisstraat","housenumber":"16-1A4","lat":51.4269781,"lon":4.3204634},{"street":"Raadhuisstraat","housenumber":"16-3A3","lat":51.4273558,"lon":4.3196811},{"street":"Raadhuisstraat","housenumber":"16-9A1","lat":51.4273267,"lon":4.3197324},{"street":"Raadhuisstraat","housenumber":"16-14A1","lat":51.4271114,"lon":4.3199529},{"street":"Raadhuisstraat","housenumber":"16-1A2","lat":51.4270935,"lon":4.320438},{"street":"Raadhuisstraat","housenumber":"16-15A5","lat":51.427332,"lon":4.3200987},{"street":"Raadhuisstraat","housenumber":"16-11A3","lat":51.4276413,"lon":4.3202474},{"street":"Raadhuisstraat","housenumber":"16-7A1","lat":51.426948,"lon":4.3203351},{"street":"Raadhuisstraat","housenumber":"16-1A1","lat":51.4272024,"lon":4.3203765},{"street":"Raadhuisstraat","housenumber":"16-15A8","lat":51.4274502,"lon":4.3196293},{"street":"Raadhuisstraat","housenumber":"16-14A6","lat":51.4272583,"lon":4.3198193},{"street":"Raadhuisstraat","housenumber":"16-5A4","lat":51.427463,"lon":4.3205128},{"street":"Raadhuisstraat","housenumber":"16-4A3","lat":51.4272609,"lon":4.3201615},{"street":"Raadhuisstraat","housenumber":"16-3A7","lat":51.4273793,"lon":4.3205668},{"street":"Raadhuisstraat","housenumber":"16-10A5","lat":51.427477,"lon":4.319982},{"street":"Raadhuisstraat","housenumber":"16-6A5","lat":51.427082,"lon":4.3204494},{"street":"Ossendrechtseweg","housenumber":"67a","lat":51.4194601,"lon":4.3237213},{"street":"Ossendrechtseweg","housenumber":"63a","lat":51.4195254,"lon":4.3230297},{"street":"Ossendrechtseweg","housenumber":"69","lat":51.4192669,"lon":4.3231977},{"street":"Ossendrechtseweg","housenumber":"69a","lat":51.4192532,"lon":4.3232866},{"street":"Ossendrechtseweg","housenumber":"71a","lat":51.4192062,"lon":4.3236292},{"street":"Ossendrechtseweg","housenumber":"67","lat":51.4194673,"lon":4.323641},{"street":"Ossendrechtseweg","housenumber":"65a","lat":51.4194832,"lon":4.3233645},{"street":"Ossendrechtseweg","housenumber":"73","lat":51.4191146,"lon":4.3226869},{"street":"Ossendrechtseweg","housenumber":"63b","lat":51.4195084,"lon":4.3230824},{"street":"Ossendrechtseweg","housenumber":"71b","lat":51.4191978,"lon":4.32372},{"street":"Ossendrechtseweg","housenumber":"63","lat":51.4195317,"lon":4.3228896},{"street":"Raadhuisstraat","housenumber":"16-15A4","lat":51.4275894,"lon":4.3201155},{"street":"Raadhuisstraat","housenumber":"16-8A4","lat":51.4272721,"lon":4.3203969},{"street":"Raadhuisstraat","housenumber":"16-8A3","lat":51.4273146,"lon":4.3204791},{"street":"Raadhuisstraat","housenumber":"16-14A5","lat":51.427221,"lon":4.3198531},{"street":"Raadhuisstraat","housenumber":"16-6A1","lat":51.427316,"lon":4.3206498},{"street":"Raadhuisstraat","housenumber":"16-15A5","lat":51.427332,"lon":4.3200986},{"street":"Raadhuisstraat","housenumber":"16-16A6","lat":51.4272322,"lon":4.3204461},{"street":"Raadhuisstraat","housenumber":"16A-10","lat":51.4271809,"lon":4.3199895},{"street":"Ossendrechtseweg","housenumber":"67b","lat":51.4194477,"lon":4.3237893},{"street":"Ossendrechtseweg","housenumber":"65","lat":51.4195029,"lon":4.3232515},{"street":"Ossendrechtseweg","housenumber":"65b","lat":51.4194837,"lon":4.3234768},{"street":"Ossendrechtseweg","housenumber":"71","lat":51.419211,"lon":4.3235466},{"street":"Ossendrechtseweg","housenumber":"69b","lat":51.4192344,"lon":4.3233642},{"street":"Ossendrechtseweg","housenumber":"73a","lat":51.4190596,"lon":4.3226561},{"street":"Ossendrechtseweg","housenumber":"75","lat":51.4188991,"lon":4.3230236},{"street":"Ossendrechtseweg","housenumber":"75a","lat":51.418894,"lon":4.3231094},{"street":"Ossendrechtseweg","housenumber":"77","lat":51.4189007,"lon":4.323281},{"street":"Ossendrechtseweg","housenumber":"77a","lat":51.4188932,"lon":4.3233562},{"street":"Ossendrechtseweg","housenumber":"79a","lat":51.4188773,"lon":4.3235198},{"street":"Ossendrechtseweg","housenumber":"79b","lat":51.4188639,"lon":4.323619},{"street":"Putseweg","housenumber":"39a","lat":51.4206748,"lon":4.3278821},{"street":"Gemeynte","housenumber":"11","lat":51.4309797,"lon":4.3289905},{"street":"Wouwbaan","housenumber":"23","lat":51.425249,"lon":4.3247922},{"street":"Antwerpsestraatweg","housenumber":"163","lat":51.4478821,"lon":4.3129782},{"street":"Wouwbaan","housenumber":"25","lat":51.4253841,"lon":4.324954},{"street":"Ouwe Raedthuysplein","housenumber":"45a","lat":51.4255322,"lon":4.3218076},{"street":"Jac Jansenweg","housenumber":"19","lat":51.4247575,"lon":4.3421988},{"street":"Raadhuisstraat","housenumber":"135","lat":51.4228976,"lon":4.3234431},{"street":"Onderstal","housenumber":"14h","lat":51.424824,"lon":4.3211498},{"street":"Onderstal","housenumber":"14a","lat":51.4247344,"lon":4.3213525},{"street":"Onderstal","housenumber":"14b","lat":51.4247335,"lon":4.3212513},{"street":"Onderstal","housenumber":"14d","lat":51.4247653,"lon":4.3211474},{"street":"Onderstal","housenumber":"14e","lat":51.4247952,"lon":4.3213417},{"street":"Onderstal","housenumber":"14f","lat":51.4247955,"lon":4.321248},{"street":"Onderstal","housenumber":"14c","lat":51.424762,"lon":4.3210444},{"street":"Onderstal","housenumber":"14g","lat":51.4248242,"lon":4.3210467},{"street":"Groene Papegaai","housenumber":"428","lat":51.4157349,"lon":4.3526039},{"street":"Aviolandalaan","housenumber":"31w-16","lat":51.4432553,"lon":4.3295004},{"street":"Ossendrechtseweg","housenumber":"73b","lat":51.4189327,"lon":4.3226565},{"street":"Postweg","housenumber":"12a","lat":51.4267083,"lon":4.3446369},{"street":"Middenweg","housenumber":"12b","lat":51.4268519,"lon":4.3446179},{"street":"Groene Papegaai","housenumber":"431","lat":51.4156445,"lon":4.3523359},{"street":"Kooiweg","housenumber":"40d-B33B","lat":51.4322276,"lon":4.3552064},{"street":"Haviksberg","housenumber":"51","lat":51.426468,"lon":4.320467},{"street":"Hof van Holland","housenumber":"2","lat":51.4240286,"lon":4.3230267},{"street":"Middenweg","housenumber":"9","lat":51.428186,"lon":4.34787},{"street":"Jac Jansenweg","housenumber":"9a","lat":51.4263531,"lon":4.3416059},{"street":"Buitendreef","housenumber":"8d","lat":51.4255161,"lon":4.3500296},{"street":"Buitendreef","housenumber":"8c","lat":51.4255091,"lon":4.349848},{"street":"Jac Jansenweg","housenumber":"9","lat":51.4264435,"lon":4.3416038},{"street":"Pr Clausstraat","housenumber":"2a","lat":51.4237911,"lon":4.3302107},{"street":"Raadhuisstraat","housenumber":"87 PBA","lat":51.4253213,"lon":4.323464},{"street":"Torontolaan","housenumber":"5","lat":51.4275738,"lon":4.3162048},{"street":"Sportlaan","housenumber":"2a","lat":51.4206166,"lon":4.3344923},{"street":"Raadhuisstraat","housenumber":"69d","lat":51.4259804,"lon":4.3224375},{"street":"Hof van Brabant","housenumber":"25","lat":51.4291814,"lon":4.3327148}],"streetCoords":{"KLM laan":{"lat":51.426372,"lon":4.3287999},"Antwerpsestraatweg":{"lat":51.455173,"lon":4.311831},"Kooiweg":{"lat":51.4301532,"lon":4.3482979},"Huijbergseweg":{"lat":51.4232902,"lon":4.3255204},"Groene Papegaai":{"lat":51.4167497,"lon":4.3489786},"Voltweg":{"lat":51.4277433,"lon":4.3528528},"Middenweg":{"lat":51.4280731,"lon":4.3470335},"Buitendreef":{"lat":51.4257565,"lon":4.3477789},"Edisonweg":{"lat":51.4258101,"lon":4.346728},"Postweg":{"lat":51.4263358,"lon":4.343193},"Wattweg":{"lat":51.427048,"lon":4.3514838},"Ampèreweg":{"lat":51.4279279,"lon":4.349355},"Scheidreef":{"lat":51.4159562,"lon":4.3444209},"Abdijlaan":{"lat":51.4229797,"lon":4.3641471},"Westerstraat":{"lat":51.4274419,"lon":4.360346},"Cleirenbaantje":{"lat":51.4387315,"lon":4.3177285},"Lange Steen":{"lat":51.4585387,"lon":4.3206835},"Oude Steenstraat":{"lat":51.4389962,"lon":4.3158047},"Aviolandalaan":{"lat":51.4379361,"lon":4.3363898},"Oude Stee":{"lat":51.4375433,"lon":4.3279924},"Zuidgeest":{"lat":51.4606941,"lon":4.3263748},"Groeneweg":{"lat":51.4449494,"lon":4.3170313},"De Zonnebloem":{"lat":51.4299878,"lon":4.3141787},"dokter van de Karplein":{"lat":51.4305535,"lon":4.3225466},"in d' Hoef":{"lat":51.4294856,"lon":4.3219868},"op den Duyn":{"lat":51.4303211,"lon":4.3205981},"van Houtenstraat":{"lat":51.4201577,"lon":4.3250032},"Van Weerden Poelmanlaan":{"lat":51.4259232,"lon":4.3285434},"van der Dilftstraat":{"lat":51.4218531,"lon":4.3289069},"Van der Meulenplein":{"lat":51.421976,"lon":4.3242974},"Wouwbaan":{"lat":51.4335841,"lon":4.3335207},"Bijentiende":{"lat":51.4305551,"lon":4.3266769},"Binnenweg":{"lat":51.4260382,"lon":4.324176},"Blériotlaan":{"lat":51.4272992,"lon":4.3345036},"Burg Moorsstraat":{"lat":51.4214962,"lon":4.3298462},"Canadalaan":{"lat":51.4261836,"lon":4.3145241},"Doelstraat":{"lat":51.4333178,"lon":4.3122133},"Duinhoefplein":{"lat":51.4294,"lon":4.324102},"Edward Jennerstraat":{"lat":51.4282344,"lon":4.3244843},"Fokkerlaan":{"lat":51.4282773,"lon":4.3301922},"Gemeynte":{"lat":51.4304574,"lon":4.3289701},"Geyssendorfferlaan":{"lat":51.4266993,"lon":4.333038},"Gravesandestraat":{"lat":51.4248846,"lon":4.3330656},"Heideduinstede":{"lat":51.42866,"lon":4.3270955},"Hugo de Grootstraat":{"lat":51.4255321,"lon":4.3369589},"Huijgensstraat":{"lat":51.4267075,"lon":4.3355346},"Kamerlingh Onnesstraat":{"lat":51.4252366,"lon":4.3344166},"Kloosterstraat":{"lat":51.4252023,"lon":4.3261654},"Lammertiende":{"lat":51.4299257,"lon":4.3260257},"Lindberghlaan":{"lat":51.4257616,"lon":4.3315703},"Maststraat":{"lat":51.420274,"lon":4.3308809},"Meulenblock":{"lat":51.4225239,"lon":4.3264912},"Mgr Ariensstraat":{"lat":51.4220711,"lon":4.3268278},"Mgr Frenckenstraat":{"lat":51.4213404,"lon":4.3275349},"Mgr Nolensstraat":{"lat":51.4192619,"lon":4.3253404},"Mgr Poelsstraat":{"lat":51.419882,"lon":4.3243339},"Minckelersweg":{"lat":51.4253221,"lon":4.3314398},"Molenstraat":{"lat":51.4217376,"lon":4.3287896},"Nieuweweg":{"lat":51.4283841,"lon":4.317262},"Norbartstraat":{"lat":51.4175717,"lon":4.3223607},"Oostlaan":{"lat":51.427153,"lon":4.3357852},"Ossendrechtseweg":{"lat":51.4212836,"lon":4.3229844},"Ouwe Raedthuysplein":{"lat":51.4254982,"lon":4.3223923},"Parmentierlaan":{"lat":51.4278312,"lon":4.3295698},"Past van Roesselstraat":{"lat":51.4219015,"lon":4.3314917},"Pasteurstraat":{"lat":51.4276915,"lon":4.321463},"Plesmanlaan":{"lat":51.4272202,"lon":4.3295984},"Pr Bernhardstraat":{"lat":51.426686,"lon":4.3242328},"Pr Hendrikstraat":{"lat":51.4249937,"lon":4.3289311},"Putseweg":{"lat":51.4214453,"lon":4.3262241},"Raadhuisstraat":{"lat":51.4276685,"lon":4.3205862},"Rubertstraat":{"lat":51.4199567,"lon":4.3305864},"Schapendreef":{"lat":51.4185549,"lon":4.3266796},"Smirnofflaan":{"lat":51.427333,"lon":4.32915},"Sondermanlaan":{"lat":51.4265502,"lon":4.332625},"St Lucasplein":{"lat":51.4281559,"lon":4.3227749},"Suijkerbuijkstraat":{"lat":51.4220294,"lon":4.3310098},"Trefpunt":{"lat":51.4223518,"lon":4.3276936},"De Acacia":{"lat":51.4315721,"lon":4.3124204},"De Anjer":{"lat":51.4329841,"lon":4.3177062},"Nijverheidstraat":{"lat":51.432094,"lon":4.3294208},"Onderstal":{"lat":51.4247833,"lon":4.3207034},"Paus Leo XIIIestraat":{"lat":51.4213374,"lon":4.3281964},"Robert Kochstraat":{"lat":51.4270534,"lon":4.3245148},"Semmelweissstraat":{"lat":51.427228,"lon":4.3245222},"Struikenlaan":{"lat":51.432396,"lon":4.3134064},"Torontolaan":{"lat":51.427983,"lon":4.3156753},"Aalbersestraat":{"lat":51.4216353,"lon":4.3237076},"Bloemenlaan":{"lat":51.4339682,"lon":4.3164694},"Flemingstraat":{"lat":51.4269028,"lon":4.3223219},"De Hazelaar":{"lat":51.4320928,"lon":4.3160198},"Heistraat":{"lat":51.428411,"lon":4.3264409},"Buys Ballotstraat":{"lat":51.4240891,"lon":4.3332657},"Cameronlaan":{"lat":51.4275219,"lon":4.3173398},"Couwenberghstraat":{"lat":51.4188591,"lon":4.3324664},"Doctor de Bruijnlaan":{"lat":51.41957,"lon":4.3315586},"Duinstraat":{"lat":51.4288671,"lon":4.3228877},"Hamiltonlaan":{"lat":51.4269186,"lon":4.3153105},"Jef Adriaansenstraat":{"lat":51.4209707,"lon":4.3284062},"Keesomstraat":{"lat":51.4241965,"lon":4.3322135},"Laan Olieslagers":{"lat":51.4271304,"lon":4.3315992},"Philomenahof":{"lat":51.423116,"lon":4.3245192},"Plantagelaan":{"lat":51.4183436,"lon":4.3341173},"Pr Clausstraat":{"lat":51.4243724,"lon":4.3298082},"Sportlaan":{"lat":51.4184943,"lon":4.3396104},"Wipstraat":{"lat":51.4340589,"lon":4.3263907},"Zandfort":{"lat":51.4347749,"lon":4.3201322},"De Berk":{"lat":51.4312753,"lon":4.3149364},"De Eik":{"lat":51.4304264,"lon":4.3125547},"De Papaver":{"lat":51.4314924,"lon":4.3163849},"De Roos":{"lat":51.4309908,"lon":4.3172296},"De Sering":{"lat":51.4302519,"lon":4.3163224},"De Tulp":{"lat":51.4297856,"lon":4.3157344},"De Vuurdoorn":{"lat":51.4324287,"lon":4.3123062},"De Wilg":{"lat":51.4292073,"lon":4.3139065},"Van Ostaayland":{"lat":51.43078,"lon":4.3270783},"Van de Moerstraat":{"lat":51.4197106,"lon":4.3321879},"Duintjesplein":{"lat":51.4214555,"lon":4.3283374},"Garry Horselaan":{"lat":51.4273601,"lon":4.3134323},"Griblingstraat":{"lat":51.428407,"lon":4.3234432},"Kromstraat":{"lat":51.4248337,"lon":4.3251587},"Lorentzstraat":{"lat":51.4247752,"lon":4.3315962},"Matthias Wolffstraat":{"lat":51.4245236,"lon":4.3276479},"Olympialaan":{"lat":51.4175887,"lon":4.3341347},"Platengastraat":{"lat":51.4284275,"lon":4.3247368},"Valkestraat":{"lat":51.4341428,"lon":4.3139484},"Verlengde Duinstraat":{"lat":51.4292189,"lon":4.3299403},"Vogelven":{"lat":51.4313195,"lon":4.3239172},"De Hortensia":{"lat":51.4328966,"lon":4.3152865},"De Jasmijn":{"lat":51.4324091,"lon":4.3146387},"De Narcis":{"lat":51.4320948,"lon":4.3170455},"de Wildert":{"lat":51.430832,"lon":4.3254337},"van 't Hoffstraat":{"lat":51.4240584,"lon":4.3308651},"Steenstraat":{"lat":51.4385336,"lon":4.3133992},"Dennenlaan":{"lat":51.4177953,"lon":4.3301476},"Jan van der Heijdenstraat":{"lat":51.425478,"lon":4.3209106},"Nieuwe Stee":{"lat":51.4359528,"lon":4.3250954},"Rozenlaan":{"lat":51.4305681,"lon":4.316808},"Lindonk":{"lat":51.4493934,"lon":4.3067774},"Vossenweg":{"lat":51.4555639,"lon":4.3022206},"Beukendreef":{"lat":51.4541488,"lon":4.2999331},"Spoorbaan":{"lat":51.4452931,"lon":4.2959054},"Hof van Holland":{"lat":51.4240189,"lon":4.3231046},"op d'Hei":{"lat":51.424878,"lon":4.3279444},"de Groenling":{"lat":51.4315484,"lon":4.3203557},"Jac Jansenweg":{"lat":51.4252026,"lon":4.3415318},"Arendsberg":{"lat":51.4266677,"lon":4.3204963},"Haviksberg":{"lat":51.4264578,"lon":4.3204574},"Uilenberg":{"lat":51.4251903,"lon":4.3195762},"Oude Hof":{"lat":51.4201568,"lon":4.3212737},"Hof van Brabant":{"lat":51.4293219,"lon":4.3316424}},"fetched_at":"2026-04-29T16:52:33.801312"} \ No newline at end of file diff --git a/fetch_addresses_overpass.dart b/fetch_addresses_overpass.dart new file mode 100644 index 0000000..aa47f2a --- /dev/null +++ b/fetch_addresses_overpass.dart @@ -0,0 +1,109 @@ +// Fetch all addresses in Hoogerheide using Overpass API +// Run with: dart fetch_addresses_overpass.dart + +import 'dart:convert'; +import 'dart:io'; +import 'package:http/http.dart' as http; + +const hoogerheideRelationId = 2716716; +const overpassUrl = 'https://overpass-api.de/api/interpreter'; + +// Overpass query to get all addresses (nodes with addr:housenumber) in Hoogerheide +const overpassQuery = ''' +[out:json][timeout:60]; +relation($hoogerheideRelationId); +map_to_area -> .searchArea; +( + node["addr:housenumber"]["addr:street"](area.searchArea); + way["addr:housenumber"]["addr:street"](area.searchArea); +); +out body; +>; +out skel qt; +'''; + +Future main() async { + print('Fetching addresses from Hoogerheide (OSM relation $hoogerheideRelationId)...'); + + try { + final response = await http.post( + Uri.parse(overpassUrl), + body: {'data': overpassQuery}, + headers: {'User-Agent': 'DeliveryApp/1.0'}, + ).timeout(const Duration(seconds: 60)); + + if (response.statusCode != 200) { + print('Error: HTTP ${response.statusCode}'); + print(response.body); + exit(1); + } + + final data = jsonDecode(response.body); + final elements = data['elements'] as List; + + // Parse addresses + final addresses = >[]; + final streetCoords = >{}; + + for (final el in elements) { + if (el['type'] == 'node') { + final tags = el['tags'] ?? {}; + final street = tags['addr:street'] ?? tags['name']; + final housenumber = tags['addr:housenumber']; + final lat = el['lat']; + final lon = el['lon']; + + if (street != null && housenumber != null && lat != null && lon != null) { + addresses.add({ + 'street': street, + 'housenumber': housenumber, + 'lat': lat, + 'lon': lon, + }); + + // Store first coord for each street + if (!streetCoords.containsKey(street)) { + streetCoords[street] = [lat, lon]; + } + } + } + } + + print('Found ${addresses.length} addresses on ${streetCoords.length} streets.'); + + // Save to JSON + final output = { + 'addresses': addresses, + 'streetCoords': streetCoords.map((k, v) => MapEntry(k, {'lat': v[0], 'lon': v[1]})), + 'fetched_at': DateTime.now().toIso8601String(), + }; + + final file = File('assets/hoogerheide_addresses.json'); + await file.create(recursive: true); + await file.writeAsString(jsonEncode(output)); + print('Saved to ${file.path}'); + + // Also create a Dart file with streetCoords for easy import + final dartContent = StringBuffer(); + dartContent.writeln('// Auto-generated from Overpass API'); + dartContent.writeln('// Hoogerheide addresses fetched from OSM'); + dartContent.writeln(); + dartContent.writeln('class HoogerheideStreets {'); + dartContent.writeln(' static const streetCoords = {'); + + streetCoords.forEach((street, coords) { + dartContent.writeln(" '$street': [${coords[0]}, ${coords[1]}],"); + }); + + dartContent.writeln(' };'); + dartContent.writeln('}'); + + final dartFile = File('lib/hoogerheide_streets.dart'); + await dartFile.writeAsString(dartContent.toString()); + print('Saved Dart file to ${dartFile.path}'); + + } catch (e) { + print('Error: $e'); + exit(1); + } +} diff --git a/ios/.gitignore b/ios/.gitignore new file mode 100644 index 0000000..7a7f987 --- /dev/null +++ b/ios/.gitignore @@ -0,0 +1,34 @@ +**/dgph +*.mode1v3 +*.mode2v3 +*.moved-aside +*.pbxuser +*.perspectivev3 +**/*sync/ +.sconsign.dblite +.tags* +**/.vagrant/ +**/DerivedData/ +Icon? +**/Pods/ +**/.symlinks/ +profile +xcuserdata +**/.generated/ +Flutter/App.framework +Flutter/Flutter.framework +Flutter/Flutter.podspec +Flutter/Generated.xcconfig +Flutter/ephemeral/ +Flutter/app.flx +Flutter/app.zip +Flutter/flutter_assets/ +Flutter/flutter_export_environment.sh +ServiceDefinitions.json +Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!default.mode1v3 +!default.mode2v3 +!default.pbxuser +!default.perspectivev3 diff --git a/ios/Flutter/AppFrameworkInfo.plist b/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 0000000..391a902 --- /dev/null +++ b/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + + diff --git a/ios/Flutter/Debug.xcconfig b/ios/Flutter/Debug.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/ios/Flutter/Debug.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/ios/Flutter/Release.xcconfig b/ios/Flutter/Release.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/ios/Flutter/Release.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..3030cfa --- /dev/null +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,620 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXBuildFile section */ + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; + 7884E8682EC3CC0700C636F2 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */; }; + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 97C146E61CF9000F007C117D /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C146ED1CF9000F007C117D; + remoteInfo = Runner; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 9705A1C41CF9048500538489 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; + 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; + 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; + 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 331C8082294A63A400263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C807B294A618700263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + ); + name = Flutter; + sourceTree = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + 331C8082294A63A400263BE5 /* RunnerTests */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + 331C8081294A63A400263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 97C146F01CF9000F007C117D /* Runner */ = { + isa = PBXGroup; + children = ( + 97C146FA1CF9000F007C117D /* Main.storyboard */, + 97C146FD1CF9000F007C117D /* Assets.xcassets */, + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, + 97C147021CF9000F007C117D /* Info.plist */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, + 7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */, + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, + ); + path = Runner; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C8080294A63A400263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + 331C807D294A63A400263BE5 /* Sources */, + 331C807F294A63A400263BE5 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 331C8086294A63A400263BE5 /* PBXTargetDependency */, + ); + name = RunnerTests; + productName = RunnerTests; + productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 97C146ED1CF9000F007C117D /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 9740EEB61CF901F6004384FC /* Run Script */, + 97C146EA1CF9000F007C117D /* Sources */, + 97C146EB1CF9000F007C117D /* Frameworks */, + 97C146EC1CF9000F007C117D /* Resources */, + 9705A1C41CF9048500538489 /* Embed Frameworks */, + 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Runner; + productName = Runner; + productReference = 97C146EE1CF9000F007C117D /* Runner.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 97C146E61CF9000F007C117D /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastUpgradeCheck = 1510; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C8080294A63A400263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 97C146ED1CF9000F007C117D; + }; + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + LastSwiftMigration = 1100; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 97C146E51CF9000F007C117D; + productRefGroup = 97C146EF1CF9000F007C117D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 97C146ED1CF9000F007C117D /* Runner */, + 331C8080294A63A400263BE5 /* RunnerTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C807F294A63A400263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EC1CF9000F007C117D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}", + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C807D294A63A400263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + 7884E8682EC3CC0700C636F2 /* SceneDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C8086294A63A400263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 97C146ED1CF9000F007C117D /* Runner */; + targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 97C146FA1CF9000F007C117D /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C146FB1CF9000F007C117D /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C147001CF9000F007C117D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 249021D3217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Profile; + }; + 249021D4217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.deliveryApp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Profile; + }; + 331C8088294A63A400263BE5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.deliveryApp.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Debug; + }; + 331C8089294A63A400263BE5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.deliveryApp.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Release; + }; + 331C808A294A63A400263BE5 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.deliveryApp.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Profile; + }; + 97C147031CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 97C147061CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.deliveryApp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 97C147071CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.deliveryApp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C8088294A63A400263BE5 /* Debug */, + 331C8089294A63A400263BE5 /* Release */, + 331C808A294A63A400263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147031CF9000F007C117D /* Debug */, + 97C147041CF9000F007C117D /* Release */, + 249021D3217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147061CF9000F007C117D /* Debug */, + 97C147071CF9000F007C117D /* Release */, + 249021D4217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 97C146E61CF9000F007C117D /* Project object */; +} diff --git a/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..e3773d4 --- /dev/null +++ b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/ios/Runner/AppDelegate.swift b/ios/Runner/AppDelegate.swift new file mode 100644 index 0000000..c30b367 --- /dev/null +++ b/ios/Runner/AppDelegate.swift @@ -0,0 +1,16 @@ +import Flutter +import UIKit + +@main +@objc class AppDelegate: FlutterAppDelegate, FlutterImplicitEngineDelegate { + override func application( + _ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? + ) -> Bool { + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } + + func didInitializeImplicitFlutterEngine(_ engineBridge: FlutterImplicitEngineBridge) { + GeneratedPluginRegistrant.register(with: engineBridge.pluginRegistry) + } +} diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..d36b1fa --- /dev/null +++ b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,122 @@ +{ + "images" : [ + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@3x.png", + "scale" : "3x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@3x.png", + "scale" : "3x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@3x.png", + "scale" : "3x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@2x.png", + "scale" : "2x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@3x.png", + "scale" : "3x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@1x.png", + "scale" : "1x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@1x.png", + "scale" : "1x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@1x.png", + "scale" : "1x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@2x.png", + "scale" : "2x" + }, + { + "size" : "83.5x83.5", + "idiom" : "ipad", + "filename" : "Icon-App-83.5x83.5@2x.png", + "scale" : "2x" + }, + { + "size" : "1024x1024", + "idiom" : "ios-marketing", + "filename" : "Icon-App-1024x1024@1x.png", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..dc9ada4725e9b0ddb1deab583e5b5102493aa332 GIT binary patch literal 10932 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 literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..797d452e458972bab9d994556c8305db4c827017 GIT binary patch literal 406 zcmV;H0crk;P))>cdjpWt&rLJgVp-t?DREyuq1A%0Z4)6_WsQ7{nzjN zo!X zGXV)2i3kcZIL~_j>uIKPK_zib+3T+Nt3Mb&Br)s)UIaA}@p{wDda>7=Q|mGRp7pqY zkJ!7E{MNz$9nOwoVqpFb)}$IP24Wn2JJ=Cw(!`OXJBr45rP>>AQr$6c7slJWvbpNW z@KTwna6d?PP>hvXCcp=4F;=GR@R4E7{4VU^0p4F>v^#A|>07*qoM6N<$f*5nx ACIA2c literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..6ed2d933e1120817fe9182483a228007b18ab6ae GIT binary patch literal 450 zcmV;z0X_bSP)iGWQ_5NJQ_~rNh*z)}eT%KUb z`7gNk0#AwF^#0T0?hIa^`~Ck;!}#m+_uT050aTR(J!bU#|IzRL%^UsMS#KsYnTF*!YeDOytlP4VhV?b} z%rz_<=#CPc)tU1MZTq~*2=8~iZ!lSa<{9b@2Jl;?IEV8)=fG217*|@)CCYgFze-x? zIFODUIA>nWKpE+bn~n7;-89sa>#DR>TSlqWk*!2hSN6D~Qb#VqbP~4Fk&m`@1$JGr zXPIdeRE&b2Thd#{MtDK$px*d3-Wx``>!oimf%|A-&-q*6KAH)e$3|6JV%HX{Hig)k suLT-RhftRq8b9;(V=235Wa|I=027H2wCDra;{X5v07*qoM6N<$f;9x^2LJ#7 literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..4cd7b0099ca80c806f8fe495613e8d6c69460d76 GIT binary patch literal 282 zcmV+#0p(^bcu7P-R4C8Q z&e;xxFbF_Vrezo%_kH*OKhshZ6BFpG-Y1e10`QXJKbND7AMQ&cMj60B5TNObaZxYybcN07*qoM6N<$g3m;S%K!iX literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..fe730945a01f64a61e2235dbe3f45b08f7729182 GIT binary patch literal 462 zcmV;<0WtoGP)-}iV`2<;=$?g5M=KQbZ{F&YRNy7Nn@%_*5{gvDM0aKI4?ESmw z{NnZg)A0R`+4?NF_RZexyVB&^^ZvN!{I28tr{Vje;QNTz`dG&Jz0~Ek&f2;*Z7>B|cg}xYpxEFY+0YrKLF;^Q+-HreN0P{&i zK~zY`?b7ECf-n?@;d<&orQ*Q7KoR%4|C>{W^h6@&01>0SKS`dn{Q}GT%Qj_{PLZ_& zs`MFI#j-(>?bvdZ!8^xTwlY{qA)T4QLbY@j(!YJ7aXJervHy6HaG_2SB`6CC{He}f zHVw(fJWApwPq!6VY7r1w-Fs)@ox~N+q|w~e;JI~C4Vf^@d>Wvj=fl`^u9x9wd9 zR%3*Q+)t%S!MU_`id^@&Y{y7-r98lZX0?YrHlfmwb?#}^1b{8g&KzmkE(L>Z&)179 zp<)v6Y}pRl100G2FL_t(o!|l{-Q-VMg#&MKg7c{O0 z2wJImOS3Gy*Z2Qifdv~JYOp;v+U)a|nLoc7hNH;I$;lzDt$}rkaFw1mYK5_0Q(Sut zvbEloxON7$+HSOgC9Z8ltuC&0OSF!-mXv5caV>#bc3@hBPX@I$58-z}(ZZE!t-aOG zpjNkbau@>yEzH(5Yj4kZiMH32XI!4~gVXNnjAvRx;Sdg^`>2DpUEwoMhTs_st8pKG z(%SHyHdU&v%f36~uERh!bd`!T2dw;z6PrOTQ7Vt*#9F2uHlUVnb#ev_o^fh}Dzmq} zWtlk35}k=?xj28uO|5>>$yXadTUE@@IPpgH`gJ~Ro4>jd1IF|(+IX>8M4Ps{PNvmI zNj4D+XgN83gPt_Gm}`Ybv{;+&yu-C(Grdiahmo~BjG-l&mWM+{e5M1sm&=xduwgM9 z`8OEh`=F3r`^E{n_;%9weN{cf2%7=VzC@cYj+lg>+3|D|_1C@{hcU(DyQG_BvBWe? zvTv``=%b1zrol#=R`JB)>cdjpWt&rLJgVp-t?DREyuq1A%0Z4)6_WsQ7{nzjN zo!X zGXV)2i3kcZIL~_j>uIKPK_zib+3T+Nt3Mb&Br)s)UIaA}@p{wDda>7=Q|mGRp7pqY zkJ!7E{MNz$9nOwoVqpFb)}$IP24Wn2JJ=Cw(!`OXJBr45rP>>AQr$6c7slJWvbpNW z@KTwna6d?PP>hvXCcp=4F;=GR@R4E7{4VU^0p4F>v^#A|>07*qoM6N<$f*5nx ACIA2c literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..502f463a9bc882b461c96aadf492d1729e49e725 GIT binary patch literal 586 zcmV-Q0=4~#P)+}#`wDE{8-2Mebf5<{{PqV{TgVcv*r8?UZ3{-|G?_}T*&y;@cqf{ z{Q*~+qr%%p!1pS*_Uicl#q9lc(D`!D`LN62sNwq{oYw(Wmhk)k<@f$!$@ng~_5)Ru z0Z)trIA5^j{DIW^c+vT2%lW+2<(RtE2wR;4O@)Tm`Xr*?A(qYoM}7i5Yxw>D(&6ou zxz!_Xr~yNF+waPe00049Nkl*;a!v6h%{rlvIH#gW3s8p;bFr=l}mRqpW2h zw=OA%hdyL~z+UHOzl0eKhEr$YYOL-c-%Y<)=j?(bzDweB7{b+%_ypvm_cG{SvM=DK zhv{K@m>#Bw>2W$eUI#iU)Wdgs8Y3U+A$Gd&{+j)d)BmGKx+43U_!tik_YlN)>$7G! zhkE!s;%oku3;IwG3U^2kw?z+HM)jB{@zFhK8P#KMSytSthr+4!c(5c%+^UBn`0X*2 zy3(k600_CSZj?O$Qu%&$;|TGUJrptR(HzyIx>5E(2r{eA(<6t3e3I0B)7d6s7?Z5J zZ!rtKvA{MiEBm&KFtoifx>5P^Z=vl)95XJn()aS5%ad(s?4-=Tkis9IGu{`Fy8r+H07*qoM6N<$f20Z)wqMt%V?S?~D#06};F zA3KcL`Wb+>5ObvgQIG&ig8(;V04hz?@cqy3{mSh8o!|U|)cI!1_+!fWH@o*8vh^CU z^ws0;(c$gI+2~q^tO#GDHf@=;DncUw00J^eL_t(&-tE|HQ`%4vfZ;WsBqu-$0nu1R zq^Vj;p$clf^?twn|KHO+IGt^q#a3X?w9dXC@*yxhv&l}F322(8Y1&=P&I}~G@#h6; z1CV9ecD9ZEe87{{NtI*)_aJ<`kJa z?5=RBtFF50s;jQLFil-`)m2wrb=6h(&brpj%nG_U&ut~$?8Rokzxi8zJoWr#2dto5 zOX_URcc<1`Iky+jc;A%Vzx}1QU{2$|cKPom2Vf1{8m`vja4{F>HS?^Nc^rp}xo+Nh zxd}eOm`fm3@MQC1< zIk&aCjb~Yh%5+Yq0`)D;q{#-Uqlv*o+Oor zE!I71Z@ASH3grl8&P^L0WpavHoP|UX4e?!igT`4?AZk$hu*@%6WJ;zDOGlw7kj@ zY5!B-0ft0f?Lgb>C;$Ke07*qoM6N<$f~t1N9smFU literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..0ec303439225b78712f49115768196d8d76f6790 GIT binary patch literal 862 zcmV-k1EKthP)20Z)wqMt%V?S?~D#06};F zA3KcL`Wb+>5ObvgQIG&ig8(;V04hz?@cqy3{mSh8o!|U|)cI!1_+!fWH@o*8vh^CU z^ws0;(c$gI+2~q^tO#GDHf@=;DncUw00J^eL_t(&-tE|HQ`%4vfZ;WsBqu-$0nu1R zq^Vj;p$clf^?twn|KHO+IGt^q#a3X?w9dXC@*yxhv&l}F322(8Y1&=P&I}~G@#h6; z1CV9ecD9ZEe87{{NtI*)_aJ<`kJa z?5=RBtFF50s;jQLFil-`)m2wrb=6h(&brpj%nG_U&ut~$?8Rokzxi8zJoWr#2dto5 zOX_URcc<1`Iky+jc;A%Vzx}1QU{2$|cKPom2Vf1{8m`vja4{F>HS?^Nc^rp}xo+Nh zxd}eOm`fm3@MQC1< zIk&aCjb~Yh%5+Yq0`)D;q{#-Uqlv*o+Oor zE!I71Z@ASH3grl8&P^L0WpavHoP|UX4e?!igT`4?AZk$hu*@%6WJ;zDOGlw7kj@ zY5!B-0ft0f?Lgb>C;$Ke07*qoM6N<$f~t1N9smFU literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..e9f5fea27c705180eb716271f41b582e76dcbd90 GIT binary patch literal 1674 zcmV;526g#~P){YQnis^a@{&-nmRmq)<&%Mztj67_#M}W?l>kYSliK<%xAp;0j{!}J0!o7b zE>q9${Lb$D&h7k=+4=!ek^n+`0zq>LL1O?lVyea53S5x`Nqqo2YyeuIrQrJj9XjOp z{;T5qbj3}&1vg1VK~#9!?b~^C5-}JC@Pyrv-6dSEqJqT}#j9#dJ@GzT@B8}x zU&J@bBI>f6w6en+CeI)3^kC*U?}X%OD8$Fd$H&LV$H&LV$H&LV#|K5~mLYf|VqzOc zkc7qL~0sOYuM{tG`rYEDV{DWY`Z8&)kW*hc2VkBuY+^Yx&92j&StN}Wp=LD zxoGxXw6f&8sB^u})h@b@z0RBeD`K7RMR9deyL(ZJu#39Z>rT)^>v}Khq8U-IbIvT> z?4pV9qGj=2)TNH3d)=De<+^w;>S7m_eFKTvzeaBeir45xY!^m!FmxnljbSS_3o=g( z->^wC9%qkR{kbGnW8MfFew_o9h3(r55Is`L$8KI@d+*%{=Nx+FXJ98L0PjFIu;rGnnfY zn1R5Qnp<{Jq0M1vX=X&F8gtLmcWv$1*M@4ZfF^9``()#hGTeKeP`1!iED ztNE(TN}M5}3Bbc*d=FIv`DNv&@|C6yYj{sSqUj5oo$#*0$7pu|Dd2TLI>t5%I zIa4Dvr(iayb+5x=j*Vum9&irk)xV1`t509lnPO0%skL8_1c#Xbamh(2@f?4yUI zhhuT5<#8RJhGz4%b$`PJwKPAudsm|at?u;*hGgnA zU1;9gnxVBC)wA(BsB`AW54N{|qmikJR*%x0c`{LGsSfa|NK61pYH(r-UQ4_JXd!Rsz)=k zL{GMc5{h138)fF5CzHEDM>+FqY)$pdN3}Ml+riTgJOLN0F*Vh?{9ESR{SVVg>*>=# zix;VJHPtvFFCRY$Ks*F;VX~%*r9F)W`PmPE9F!(&s#x07n2<}?S{(ygpXgX-&B&OM zONY&BRQ(#%0%jeQs?oJ4P!p*R98>qCy5p8w>_gpuh39NcOlp)(wOoz0sY-Qz55eB~ z7OC-fKBaD1sE3$l-6QgBJO!n?QOTza`!S_YK z_v-lm^7{VO^8Q@M_^8F)09Ki6%=s?2_5eupee(w1FB%aqSweusQ-T+CH0Xt{` zFjMvW{@C&TB)k25()nh~_yJ9coBRL(0oO@HK~z}7?bm5j;y@69;bvlHb2tf!$ReA~x{22wTq550 z?f?Hnw(;m3ip30;QzdV~7pi!wyMYhDtXW#cO7T>|f=bdFhu+F!zMZ2UFj;GUKX7tI z;hv3{q~!*pMj75WP_c}>6)IWvg5_yyg<9Op()eD1hWC19M@?_9_MHec{Z8n3FaF{8 z;u`Mw0ly(uE>*CgQYv{be6ab2LWhlaH1^iLIM{olnag$78^Fd}%dR7;JECQ+hmk|o z!u2&!3MqPfP5ChDSkFSH8F2WVOEf0(E_M(JL17G}Y+fg0_IuW%WQ zG(mG&u?|->YSdk0;8rc{yw2@2Z&GA}z{Wb91Ooz9VhA{b2DYE7RmG zjL}?eq#iX%3#k;JWMx_{^2nNax`xPhByFiDX+a7uTGU|otOvIAUy|dEKkXOm-`aWS z27pUzD{a)Ct<6p{{3)+lq@i`t@%>-wT4r?*S}k)58e09WZYP0{{R3FC5Sl00039P)t-s|Ns9~ z#rP?<_5oL$Q^olD{r_0T`27C={r>*`|Nj71npVa5OTzc(_WfbW_({R{p56NV{r*M2 z_xt?)2V0#0NsfV0u>{42ctGP(8vQj-Btk1n|O0ZD=YLwd&R{Ko41Gr9H= zY@z@@bOAMB5Ltl$E>bJJ{>JP30ZxkmI%?eW{k`b?Wy<&gOo;dS`~CR$Vwb@XWtR|N zi~t=w02?-0&j0TD{>bb6sNwsK*!p?V`RMQUl(*DVjk-9Cx+-z1KXab|Ka2oXhX5f% z`$|e!000AhNklrxs)5QTeTVRiEmz~MKK1WAjCw(c-JK6eox;2O)?`? zTG`AHia671e^vgmp!llKp|=5sVHk#C7=~epA~VAf-~%aPC=%Qw01h8mnSZ|p?hz91 z7p83F3%LVu9;S$tSI$C^%^yud1dfTM_6p2|+5Ejp$bd`GDvbR|xit>i!ZD&F>@CJrPmu*UjD&?DfZs=$@e3FQA(vNiU+$A*%a} z?`XcG2jDxJ_ZQ#Md`H{4Lpf6QBDp81_KWZ6Tk#yCy1)32zO#3<7>b`eT7UyYH1eGz z;O(rH$=QR*L%%ZcBpc=eGua?N55nD^K(8<#gl2+pN_j~b2MHs4#mcLmv%DkspS-3< zpI1F=^9siI0s-;IN_IrA;5xm~3?3!StX}pUv0vkxMaqm+zxrg7X7(I&*N~&dEd0kD z-FRV|g=|QuUsuh>-xCI}vD2imzYIOIdcCVV=$Bz@*u0+Bs<|L^)32nN*=wu3n%Ynw z@1|eLG>!8ruU1pFXUfb`j>(=Gy~?Rn4QJ-c3%3T|(Frd!bI`9u&zAnyFYTqlG#&J7 zAkD(jpw|oZLNiA>;>hgp1KX7-wxC~31II47gc zHcehD6Uxlf%+M^^uN5Wc*G%^;>D5qT{>=uxUhX%WJu^Z*(_Wq9y}npFO{Hhb>s6<9 zNi0pHXWFaVZnb)1+RS&F)xOv6&aeILcI)`k#0YE+?e)5&#r7J#c`3Z7x!LpTc01dx zrdC3{Z;joZ^KN&))zB_i)I9fWedoN>Zl-6_Iz+^G&*ak2jpF07*qoM6N<$f;w%0(f|Me literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..0467bf12aa4d28f374bb26596605a46dcbb3e7c8 GIT binary patch literal 1418 zcmV;51$Fv~P)q zKfU)WzW*n(@|xWGCA9ScMt*e9`2kdxPQ&&>|-UCa7_51w+ zLUsW@ZzZSW0y$)Hp~e9%PvP|a03ks1`~K?q{u;6NC8*{AOqIUq{CL&;p56Lf$oQGq z^={4hPQv)y=I|4n+?>7Fim=dxt1 z2H+Dm+1+fh+IF>G0SjJMkQQre1x4|G*Z==(Ot&kCnUrL4I(rf(ucITwmuHf^hXiJT zkdTm&kdTm&kdTm&kdP`esgWG0BcWCVkVZ&2dUwN`cgM8QJb`Z7Z~e<&Yj2(}>Tmf` zm1{eLgw!b{bXkjWbF%dTkTZEJWyWOb##Lfw4EK2}<0d6%>AGS{po>WCOy&f$Tay_> z?NBlkpo@s-O;0V%Y_Xa-G#_O08q5LR*~F%&)}{}r&L%Sbs8AS4t7Y0NEx*{soY=0MZExqA5XHQkqi#4gW3 zqODM^iyZl;dvf)-bOXtOru(s)Uc7~BFx{w-FK;2{`VA?(g&@3z&bfLFyctOH!cVsF z7IL=fo-qBndRUm;kAdXR4e6>k-z|21AaN%ubeVrHl*<|s&Ax@W-t?LR(P-24A5=>a z*R9#QvjzF8n%@1Nw@?CG@6(%>+-0ASK~jEmCV|&a*7-GKT72W<(TbSjf)&Eme6nGE z>Gkj4Sq&2e+-G%|+NM8OOm5zVl9{Z8Dd8A5z3y8mZ=4Bv4%>as_{9cN#bm~;h>62( zdqY93Zy}v&c4n($Vv!UybR8ocs7#zbfX1IY-*w~)p}XyZ-SFC~4w>BvMVr`dFbelV{lLL0bx7@*ZZdebr3`sP;? zVImji)kG)(6Juv0lz@q`F!k1FE;CQ(D0iG$wchPbKZQELlsZ#~rt8#90Y_Xh&3U-< z{s<&cCV_1`^TD^ia9!*mQDq& zn2{r`j};V|uV%_wsP!zB?m%;FeaRe+X47K0e+KE!8C{gAWF8)lCd1u1%~|M!XNRvw zvtqy3iz0WSpWdhn6$hP8PaRBmp)q`#PCA`Vd#Tc$@f1tAcM>f_I@bC)hkI9|o(Iqv zo}Piadq!j76}004RBio<`)70k^`K1NK)q>w?p^C6J2ZC!+UppiK6&y3Kmbv&O!oYF z34$0Z;QO!JOY#!`qyGH<3Pd}Pt@q*A0V=3SVtWKRR8d8Z&@)3qLPA19LPA19LPEUC YUoZo%k(ykuW&i*H07*qoM6N<$f+CH{y8r+H literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json new file mode 100644 index 0000000..0bedcf2 --- /dev/null +++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "idiom" : "universal", + "filename" : "LaunchImage.png", + "scale" : "1x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@2x.png", + "scale" : "2x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@3x.png", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 0000000..89c2725 --- /dev/null +++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md @@ -0,0 +1,5 @@ +# Launch Screen Assets + +You can customize the launch screen with your own desired assets by replacing the image files in this directory. + +You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/ios/Runner/Base.lproj/LaunchScreen.storyboard b/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..f2e259c --- /dev/null +++ b/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner/Base.lproj/Main.storyboard b/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 0000000..f3c2851 --- /dev/null +++ b/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist new file mode 100644 index 0000000..1e4d943 --- /dev/null +++ b/ios/Runner/Info.plist @@ -0,0 +1,70 @@ + + + + + CADisableMinimumFrameDurationOnPhone + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + Delivery App + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + delivery_app + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSRequiresIPhoneOS + + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + + UISceneConfigurations + + UIWindowSceneSessionRoleApplication + + + UISceneClassName + UIWindowScene + UISceneConfigurationName + flutter + UISceneDelegateClassName + $(PRODUCT_MODULE_NAME).SceneDelegate + UISceneStoryboardFile + Main + + + + + UIApplicationSupportsIndirectInputEvents + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + diff --git a/ios/Runner/Runner-Bridging-Header.h b/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 0000000..308a2a5 --- /dev/null +++ b/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1 @@ +#import "GeneratedPluginRegistrant.h" diff --git a/ios/Runner/SceneDelegate.swift b/ios/Runner/SceneDelegate.swift new file mode 100644 index 0000000..b9ce8ea --- /dev/null +++ b/ios/Runner/SceneDelegate.swift @@ -0,0 +1,6 @@ +import Flutter +import UIKit + +class SceneDelegate: FlutterSceneDelegate { + +} diff --git a/ios/RunnerTests/RunnerTests.swift b/ios/RunnerTests/RunnerTests.swift new file mode 100644 index 0000000..86a7c3b --- /dev/null +++ b/ios/RunnerTests/RunnerTests.swift @@ -0,0 +1,12 @@ +import Flutter +import UIKit +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} diff --git a/lib/hoogerheide_streets.dart b/lib/hoogerheide_streets.dart new file mode 100644 index 0000000..df66bed --- /dev/null +++ b/lib/hoogerheide_streets.dart @@ -0,0 +1,158 @@ +// Auto-generated from Overpass API +// Hoogerheide addresses fetched from OSM + +class HoogerheideStreets { + static const streetCoords = { + 'KLM laan': [51.426372, 4.3287999], + 'Antwerpsestraatweg': [51.455173, 4.311831], + 'Kooiweg': [51.4301532, 4.3482979], + 'Huijbergseweg': [51.4232902, 4.3255204], + 'Groene Papegaai': [51.4167497, 4.3489786], + 'Voltweg': [51.4277433, 4.3528528], + 'Middenweg': [51.4280731, 4.3470335], + 'Buitendreef': [51.4257565, 4.3477789], + 'Edisonweg': [51.4258101, 4.346728], + 'Postweg': [51.4263358, 4.343193], + 'Wattweg': [51.427048, 4.3514838], + 'Ampèreweg': [51.4279279, 4.349355], + 'Scheidreef': [51.4159562, 4.3444209], + 'Abdijlaan': [51.4229797, 4.3641471], + 'Westerstraat': [51.4274419, 4.360346], + 'Cleirenbaantje': [51.4387315, 4.3177285], + 'Lange Steen': [51.4585387, 4.3206835], + 'Oude Steenstraat': [51.4389962, 4.3158047], + 'Aviolandalaan': [51.4379361, 4.3363898], + 'Oude Stee': [51.4375433, 4.3279924], + 'Zuidgeest': [51.4606941, 4.3263748], + 'Groeneweg': [51.4449494, 4.3170313], + 'De Zonnebloem': [51.4299878, 4.3141787], + 'dokter van de Karplein': [51.4305535, 4.3225466], + "in d' Hoef": [51.4294856, 4.3219868], + 'op den Duyn': [51.4303211, 4.3205981], + 'van Houtenstraat': [51.4201577, 4.3250032], + 'Van Weerden Poelmanlaan': [51.4259232, 4.3285434], + 'van der Dilftstraat': [51.4218531, 4.3289069], + 'Van der Meulenplein': [51.421976, 4.3242974], + 'Wouwbaan': [51.4335841, 4.3335207], + 'Bijentiende': [51.4305551, 4.3266769], + 'Binnenweg': [51.4260382, 4.324176], + 'Blériotlaan': [51.4272992, 4.3345036], + 'Burg Moorsstraat': [51.4214962, 4.3298462], + 'Canadalaan': [51.4261836, 4.3145241], + 'Doelstraat': [51.4333178, 4.3122133], + 'Duinhoefplein': [51.4294, 4.324102], + 'Edward Jennerstraat': [51.4282344, 4.3244843], + 'Fokkerlaan': [51.4282773, 4.3301922], + 'Gemeynte': [51.4304574, 4.3289701], + 'Geyssendorfferlaan': [51.4266993, 4.333038], + 'Gravesandestraat': [51.4248846, 4.3330656], + 'Heideduinstede': [51.42866, 4.3270955], + 'Hugo de Grootstraat': [51.4255321, 4.3369589], + 'Huijgensstraat': [51.4267075, 4.3355346], + 'Kamerlingh Onnesstraat': [51.4252366, 4.3344166], + 'Kloosterstraat': [51.4252023, 4.3261654], + 'Lammertiende': [51.4299257, 4.3260257], + 'Lindberghlaan': [51.4257616, 4.3315703], + 'Maststraat': [51.420274, 4.3308809], + 'Meulenblock': [51.4225239, 4.3264912], + 'Mgr Ariensstraat': [51.4220711, 4.3268278], + 'Mgr Frenckenstraat': [51.4213404, 4.3275349], + 'Mgr Nolensstraat': [51.4192619, 4.3253404], + 'Mgr Poelsstraat': [51.419882, 4.3243339], + 'Minckelersweg': [51.4253221, 4.3314398], + 'Molenstraat': [51.4217376, 4.3287896], + 'Nieuweweg': [51.4283841, 4.317262], + 'Norbartstraat': [51.4175717, 4.3223607], + 'Oostlaan': [51.427153, 4.3357852], + 'Ossendrechtseweg': [51.4212836, 4.3229844], + 'Ouwe Raedthuysplein': [51.4254982, 4.3223923], + 'Parmentierlaan': [51.4278312, 4.3295698], + 'Past van Roesselstraat': [51.4219015, 4.3314917], + 'Pasteurstraat': [51.4276915, 4.321463], + 'Plesmanlaan': [51.4272202, 4.3295984], + 'Pr Bernhardstraat': [51.426686, 4.3242328], + 'Pr Hendrikstraat': [51.4249937, 4.3289311], + 'Putseweg': [51.4214453, 4.3262241], + 'Raadhuisstraat': [51.4276685, 4.3205862], + 'Rubertstraat': [51.4199567, 4.3305864], + 'Schapendreef': [51.4185549, 4.3266796], + 'Smirnofflaan': [51.427333, 4.32915], + 'Sondermanlaan': [51.4265502, 4.332625], + 'St Lucasplein': [51.4281559, 4.3227749], + 'Suijkerbuijkstraat': [51.4220294, 4.3310098], + 'Trefpunt': [51.4223518, 4.3276936], + 'De Acacia': [51.4315721, 4.3124204], + 'De Anjer': [51.4329841, 4.3177062], + 'Nijverheidstraat': [51.432094, 4.3294208], + 'Onderstal': [51.4247833, 4.3207034], + 'Paus Leo XIIIestraat': [51.4213374, 4.3281964], + 'Robert Kochstraat': [51.4270534, 4.3245148], + 'Semmelweissstraat': [51.427228, 4.3245222], + 'Struikenlaan': [51.432396, 4.3134064], + 'Torontolaan': [51.427983, 4.3156753], + 'Aalbersestraat': [51.4216353, 4.3237076], + 'Bloemenlaan': [51.4339682, 4.3164694], + 'Flemingstraat': [51.4269028, 4.3223219], + 'De Hazelaar': [51.4320928, 4.3160198], + 'Heistraat': [51.428411, 4.3264409], + 'Buys Ballotstraat': [51.4240891, 4.3332657], + 'Cameronlaan': [51.4275219, 4.3173398], + 'Couwenberghstraat': [51.4188591, 4.3324664], + 'Doctor de Bruijnlaan': [51.41957, 4.3315586], + 'Duinstraat': [51.4288671, 4.3228877], + 'Hamiltonlaan': [51.4269186, 4.3153105], + 'Jef Adriaansenstraat': [51.4209707, 4.3284062], + 'Keesomstraat': [51.4241965, 4.3322135], + 'Laan Olieslagers': [51.4271304, 4.3315992], + 'Philomenahof': [51.423116, 4.3245192], + 'Plantagelaan': [51.4183436, 4.3341173], + 'Pr Clausstraat': [51.4243724, 4.3298082], + 'Sportlaan': [51.4184943, 4.3396104], + 'Wipstraat': [51.4340589, 4.3263907], + 'Zandfort': [51.4347749, 4.3201322], + 'De Berk': [51.4312753, 4.3149364], + 'De Eik': [51.4304264, 4.3125547], + 'De Papaver': [51.4314924, 4.3163849], + 'De Roos': [51.4309908, 4.3172296], + 'De Sering': [51.4302519, 4.3163224], + 'De Tulp': [51.4297856, 4.3157344], + 'De Vuurdoorn': [51.4324287, 4.3123062], + 'De Wilg': [51.4292073, 4.3139065], + 'Van Ostaayland': [51.43078, 4.3270783], + 'Van de Moerstraat': [51.4197106, 4.3321879], + 'Duintjesplein': [51.4214555, 4.3283374], + 'Garry Horselaan': [51.4273601, 4.3134323], + 'Griblingstraat': [51.428407, 4.3234432], + 'Kromstraat': [51.4248337, 4.3251587], + 'Lorentzstraat': [51.4247752, 4.3315962], + 'Matthias Wolffstraat': [51.4245236, 4.3276479], + 'Olympialaan': [51.4175887, 4.3341347], + 'Platengastraat': [51.4284275, 4.3247368], + 'Valkestraat': [51.4341428, 4.3139484], + 'Verlengde Duinstraat': [51.4292189, 4.3299403], + 'Vogelven': [51.4313195, 4.3239172], + 'De Hortensia': [51.4328966, 4.3152865], + 'De Jasmijn': [51.4324091, 4.3146387], + 'De Narcis': [51.4320948, 4.3170455], + 'de Wildert': [51.430832, 4.3254337], + "van 't Hoffstraat": [51.4240584, 4.3308651], + 'Steenstraat': [51.4385336, 4.3133992], + 'Dennenlaan': [51.4177953, 4.3301476], + 'Jan van der Heijdenstraat': [51.425478, 4.3209106], + 'Nieuwe Stee': [51.4359528, 4.3250954], + 'Rozenlaan': [51.4305681, 4.316808], + 'Lindonk': [51.4493934, 4.3067774], + 'Vossenweg': [51.4555639, 4.3022206], + 'Beukendreef': [51.4541488, 4.2999331], + 'Spoorbaan': [51.4452931, 4.2959054], + 'Hof van Holland': [51.4240189, 4.3231046], + "op d'Hei": [51.424878, 4.3279444], + 'de Groenling': [51.4315484, 4.3203557], + 'Jac Jansenweg': [51.4252026, 4.3415318], + 'Arendsberg': [51.4266677, 4.3204963], + 'Haviksberg': [51.4264578, 4.3204574], + 'Uilenberg': [51.4251903, 4.3195762], + 'Oude Hof': [51.4201568, 4.3212737], + 'Hof van Brabant': [51.4293219, 4.3316424], + }; +} diff --git a/lib/main.dart b/lib/main.dart new file mode 100644 index 0000000..a67f9fe --- /dev/null +++ b/lib/main.dart @@ -0,0 +1,28 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import 'providers/app_state.dart'; +import 'pages/routes_page.dart'; + +void main() { + runApp( + ChangeNotifierProvider( + create: (_) => AppState()..loadSettings(), + child: const DeliveryApp(), + ), + ); +} + +class DeliveryApp extends StatelessWidget { + const DeliveryApp({super.key}); + + @override + Widget build(BuildContext context) { + final appState = context.watch(); + + return MaterialApp( + title: 'Delivery Route', + theme: appState.theme, + home: const RoutesPage(), + ); + } +} diff --git a/lib/models/delivery_history.dart b/lib/models/delivery_history.dart new file mode 100644 index 0000000..dfdd931 --- /dev/null +++ b/lib/models/delivery_history.dart @@ -0,0 +1,43 @@ +class DeliveryRecord { + final int? id; + final int routeId; + final int stopId; + final String date; // YYYY-MM-DD + final DateTime deliveredAt; + + DeliveryRecord({ + this.id, + required this.routeId, + required this.stopId, + required this.date, + required this.deliveredAt, + }); + + Map toMap() => { + if (id != null) 'id': id, + 'route_id': routeId, + 'stop_id': stopId, + 'date': date, + 'delivered_at': deliveredAt.toIso8601String(), + }; + + factory DeliveryRecord.fromMap(Map map) => DeliveryRecord( + id: map['id'] as int?, + routeId: map['route_id'] as int, + stopId: map['stop_id'] as int, + date: map['date'] as String, + deliveredAt: DateTime.parse(map['delivered_at'] as String), + ); +} + +class DailyStats { + final String date; + final int deliveredCount; + final int totalCount; + + DailyStats({ + required this.date, + required this.deliveredCount, + required this.totalCount, + }); +} diff --git a/lib/models/stop.dart b/lib/models/stop.dart new file mode 100644 index 0000000..53572f0 --- /dev/null +++ b/lib/models/stop.dart @@ -0,0 +1,82 @@ +import 'package:latlong2/latlong.dart'; + +class Stop { + final int? id; + final String street; + final String houseNumber; + final String notes; + final List newspapers; + final double lat; + final double lng; + final bool delivered; + final int sequence; + + Stop({ + this.id, + required this.street, + required this.houseNumber, + this.newspapers = const [], + required this.lat, + required this.lng, + this.delivered = false, + this.notes = '', + this.sequence = 0, + }); + + LatLng get location => LatLng(lat, lng); + + Stop copyWith({ + int? id, + String? street, + String? houseNumber, + List? newspapers, + double? lat, + double? lng, + bool? delivered, + String? notes, + int? sequence, + }) { + return Stop( + id: id ?? this.id, + street: street ?? this.street, + houseNumber: houseNumber ?? this.houseNumber, + newspapers: newspapers ?? this.newspapers, + lat: lat ?? this.lat, + lng: lng ?? this.lng, + delivered: delivered ?? this.delivered, + notes: notes ?? this.notes, + sequence: sequence ?? this.sequence, + ); + } + + Map toMap() { + return { + if (id != null) 'id': id, + 'street': street, + 'house_number': houseNumber, + 'newspapers': newspapers.join(','), + 'lat': lat, + 'lng': lng, + 'delivered': delivered ? 1 : 0, + 'notes': notes, + 'sequence': sequence, + }; + } + + factory Stop.fromMap(Map map) { + return Stop( + id: map['id'] as int?, + street: map['street'] as String, + houseNumber: map['house_number'] as String, + newspapers: (map['newspapers'] as String?)?.split(',').where((x) => x.isNotEmpty).toList() ?? [], + lat: map['lat'] as double, + lng: map['lng'] as double, + delivered: map['delivered'] == 1, + notes: (map['notes'] as String?) ?? '', + sequence: map['sequence'] as int? ?? 0, + ); + } + + @override + String toString() => '$street $houseNumber (${newspapers.join(",")})'; +} diff --git a/lib/pages/builder_page.dart b/lib/pages/builder_page.dart new file mode 100644 index 0000000..c19cefa --- /dev/null +++ b/lib/pages/builder_page.dart @@ -0,0 +1,315 @@ +import 'package:flutter/material.dart'; +import 'package:latlong2/latlong.dart'; +import '../models/stop.dart'; +import '../services/database.dart'; +import '../services/geocoding.dart'; +import '../hoogerheide_streets.dart'; + +class BuilderPage extends StatefulWidget { + final int routeId; + final VoidCallback onSave; + const BuilderPage({super.key, required this.routeId, required this.onSave}); + @override + State createState() => _BuilderPageState(); +} + +class _BuilderPageState extends State { + final _db = DatabaseService(); + final _geocoding = GeocodingService(); + final _streetCtrl = TextEditingController(); + final _numCtrl = TextEditingController(); + + final List<_StreetEntry> _entries = []; + final List _currentNums = []; + final Map> _currentPapers = {}; + + bool _saving = false; + + static const _availablePapers = ['BN', 'AD', 'TEL', 'VK']; + static const _npColors = { + 'BN': Colors.red, + 'AD': Colors.blue, + 'TEL': Colors.orange, + 'VK': Colors.purple, + }; + + @override + void dispose() { + _streetCtrl.dispose(); + _numCtrl.dispose(); + super.dispose(); + } + + void _addHouseNumber() { + final n = _numCtrl.text.trim(); + if (n.isNotEmpty && !_currentNums.contains(n)) { + setState(() { + _currentNums.add(n); + _currentPapers[n] = {'BN'}; // default newspaper + }); + } + _numCtrl.clear(); + } + + void _togglePaper(String num, String paper) { + setState(() { + final current = _currentPapers[num] ?? {'BN'}; + if (current.contains(paper)) { + current.remove(paper); + } else { + current.add(paper); + } + _currentPapers[num] = current; + }); + } + + void _saveStreet() { + if (_currentNums.isEmpty || _streetCtrl.text.trim().isEmpty) return; + setState(() { + _entries.add(_StreetEntry( + street: _streetCtrl.text.trim(), + numPapers: Map.from(_currentPapers), + )); + _currentNums.clear(); + _currentPapers.clear(); + _streetCtrl.clear(); + }); + } + + void _removeEntry(_StreetEntry entry) { + setState(() => _entries.remove(entry)); + } + + Future _saveAll() async { + if (_entries.isEmpty) return; + setState(() => _saving = true); + + try { + var seq = (await _db.getMaxSequence(widget.routeId) ?? -1) + 1; + + for (final entry in _entries) { + for (final npEntry in entry.numPapers.entries) { + final houseNum = npEntry.key; + final papers = npEntry.value.isEmpty ? {'BN'} : npEntry.value; + + // Geocode: try GeocodingService first, fallback to hoogerheide_streets.dart + LatLng coords; + try { + coords = await _geocoding.geocode(entry.street, houseNum); + } catch (_) { + coords = _geocodeFromStreets(entry.street, houseNum); + } + + await _db.insertStop( + Stop( + street: entry.street, + houseNumber: houseNum, + newspapers: papers.toList(), + lat: coords.latitude, + lng: coords.longitude, + sequence: seq++, + ), + widget.routeId, + ); + } + } + + widget.onSave(); + if (mounted) Navigator.pop(context); + } catch (e) { + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar(content: Text('Error saving: $e'), backgroundColor: Colors.red), + ); + } + } finally { + if (mounted) setState(() => _saving = false); + } + } + + /// Fallback geocode using hoogerheide_streets.dart with house-number offset + LatLng _geocodeFromStreets(String street, String houseNum) { + final ns = _normalize(street); + + // Exact match + for (final entry in HoogerheideStreets.streetCoords.entries) { + if (_normalize(entry.key) == ns) { + return _offsetByHouseNumber(entry.value[0], entry.value[1], houseNum); + } + } + // Partial match + for (final entry in HoogerheideStreets.streetCoords.entries) { + final ek = _normalize(entry.key); + if (ns.contains(ek) || ek.contains(ns)) { + return _offsetByHouseNumber(entry.value[0], entry.value[1], houseNum); + } + } + return const LatLng(51.4243390, 4.3238380); + } + + LatLng _offsetByHouseNumber(double baseLat, double baseLng, String houseNum) { + final hn = int.tryParse(houseNum.replaceAll(RegExp(r'[A-Za-z]'), '')) ?? 1; + return LatLng( + baseLat + (hn - 1) * 0.00015, + baseLng + ((hn / 25).floor() % 2 == 0 ? 0 : 0.0002), + ); + } + + String _normalize(String name) => + name.replaceAll(RegExp(r'[–—]'), ' ').replaceAll(RegExp(r'\s+'), ' ').trim().toLowerCase(); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Add Stops'), + actions: [ + if (_saving) + const Padding( + padding: EdgeInsets.all(16), + child: SizedBox( + width: 20, height: 20, + child: CircularProgressIndicator(strokeWidth: 2, color: Colors.white), + ), + ) + else + IconButton( + icon: const Icon(Icons.check), + onPressed: _entries.isEmpty ? null : _saveAll, + tooltip: 'Save all stops', + ), + ], + ), + body: ListView( + padding: const EdgeInsets.all(16), + children: [ + // Input card + Card( + child: Padding( + padding: const EdgeInsets.all(16), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + TextField( + controller: _streetCtrl, + decoration: const InputDecoration( + labelText: 'Street name', + border: OutlineInputBorder(), + ), + textCapitalization: TextCapitalization.words, + ), + const SizedBox(height: 12), + Row( + children: [ + Expanded( + child: TextField( + controller: _numCtrl, + decoration: const InputDecoration( + labelText: 'House number', + border: OutlineInputBorder(), + ), + onSubmitted: (_) => _addHouseNumber(), + ), + ), + const SizedBox(width: 8), + IconButton.filled( + onPressed: _addHouseNumber, + icon: const Icon(Icons.add), + ), + ], + ), + if (_currentNums.isNotEmpty) ...[ + const SizedBox(height: 12), + Wrap( + spacing: 8, + runSpacing: 8, + children: _currentNums.map(_buildHouseNumberChip).toList(), + ), + ], + const SizedBox(height: 12), + SizedBox( + width: double.infinity, + child: ElevatedButton.icon( + onPressed: _currentNums.isEmpty ? null : _saveStreet, + icon: const Icon(Icons.add_road), + label: const Text('Add Street'), + ), + ), + ], + ), + ), + ), + + // Saved entries + if (_entries.isNotEmpty) ...[ + const SizedBox(height: 16), + const Text('Stops to add:', style: TextStyle(fontWeight: FontWeight.bold, fontSize: 16)), + const SizedBox(height: 8), + ..._entries.map((entry) => Card( + child: ListTile( + leading: const CircleAvatar(child: Icon(Icons.location_on)), + title: Text(entry.street), + subtitle: Text( + entry.numPapers.entries.map((e) => '${e.key}: ${e.value.join(",")}').join('; '), + ), + trailing: IconButton( + icon: const Icon(Icons.delete_outline, color: Colors.red), + onPressed: () => _removeEntry(entry), + ), + ), + )), + ], + ], + ), + ); + } + + Widget _buildHouseNumberChip(String num) { + final current = _currentPapers[num] ?? {'BN'}; + return Container( + padding: const EdgeInsets.all(8), + decoration: BoxDecoration( + color: Colors.grey[200], + borderRadius: BorderRadius.circular(8), + ), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + mainAxisSize: MainAxisSize.min, + children: [ + Row( + mainAxisSize: MainAxisSize.min, + children: [ + Text(num, style: const TextStyle(fontWeight: FontWeight.bold)), + const SizedBox(width: 4), + GestureDetector( + onTap: () => setState(() { + _currentNums.remove(num); + _currentPapers.remove(num); + }), + child: const Icon(Icons.close, size: 16), + ), + ], + ), + const SizedBox(height: 4), + Wrap( + spacing: 4, + children: _availablePapers.map((np) => FilterChip( + label: Text(np, style: const TextStyle(fontSize: 11)), + selected: current.contains(np), + selectedColor: _npColors[np], + onSelected: (_) => _togglePaper(num, np), + visualDensity: VisualDensity.compact, + padding: EdgeInsets.zero, + )).toList(), + ), + ], + ), + ); + } +} + +class _StreetEntry { + final String street; + final Map> numPapers; + _StreetEntry({required this.street, required this.numPapers}); +} diff --git a/lib/pages/route_page.dart b/lib/pages/route_page.dart new file mode 100644 index 0000000..f4a9a75 --- /dev/null +++ b/lib/pages/route_page.dart @@ -0,0 +1,895 @@ +import 'dart:convert'; +import 'package:flutter/material.dart'; +import 'package:flutter_map/flutter_map.dart'; +import 'package:latlong2/latlong.dart'; +import 'package:geolocator/geolocator.dart'; +import 'package:http/http.dart' as http; +import 'package:provider/provider.dart'; +import '../models/stop.dart'; +import '../providers/app_state.dart'; +import '../providers/delivery_provider.dart'; +import '../services/geocoding.dart'; +import '../services/routing.dart'; +import '../services/gpx_export.dart'; +import 'builder_page.dart'; +import 'statistics_page.dart'; +import 'settings_page.dart'; + +class RoutePage extends StatefulWidget { + final int routeId; + final String name; + const RoutePage({super.key, required this.routeId, required this.name}); + @override + State createState() => _RoutePageState(); +} + +class _RoutePageState extends State { + final _geocoding = GeocodingService(); + final _routing = RoutingService(); + final _mapController = MapController(); + final _searchController = TextEditingController(); + + Position? _userPosition; + List _routePoints = []; + bool _showRoute = false; + bool _isLoadingRoute = false; + double _routeDistanceKm = 0.0; + String _searchQuery = ''; + late DeliveryProvider _deliveryProvider; + + static const _npColors = { + 'BN': Colors.red, + 'AD': Colors.blue, + 'TEL': Colors.orange, + 'VK': Colors.purple, + }; + + @override + void initState() { + super.initState(); + _deliveryProvider = DeliveryProvider(); + _deliveryProvider.loadStops(widget.routeId); + _deliveryProvider.addListener(_onDeliveryChanged); + _initGps(); + } + + @override + void dispose() { + _deliveryProvider.removeListener(_onDeliveryChanged); + _deliveryProvider.dispose(); + _searchController.dispose(); + super.dispose(); + } + + void _onDeliveryChanged() { + if (mounted) setState(() {}); + } + + Future _initGps() async { + try { + var perm = await Geolocator.checkPermission(); + if (perm == LocationPermission.denied) { + perm = await Geolocator.requestPermission(); + } + if (perm == LocationPermission.denied || perm == LocationPermission.deniedForever) return; + + Geolocator.getPositionStream( + locationSettings: const LocationSettings(accuracy: LocationAccuracy.high), + ).listen((p) { + if (mounted) setState(() => _userPosition = p); + }); + } catch (_) {} + } + + // ── Route Fetching ────────────────────────────────────── + + Future _fetchRoute() async { + final stops = _deliveryProvider.stops; + if (stops.length < 2) return; + setState(() => _isLoadingRoute = true); + + // Fetch both route polyline and distance + final result = await _fetchRouteWithDistance(stops); + + setState(() { + if (result != null) { + _routePoints = result.$1; + _routeDistanceKm = result.$2; + } else { + _routePoints = stops.map((s) => s.location).toList(); + _routeDistanceKm = 0.0; + } + _showRoute = true; + _isLoadingRoute = false; + }); + } + + Future<(List, double)?> _fetchRouteWithDistance(List stops) async { + if (stops.length < 2) return null; + + final coords = stops.map((s) => '${s.lng},${s.lat}').join(';'); + final url = + 'https://router.project-osrm.org/route/v1/driving/$coords?overview=full&geometries=polyline'; + + try { + final resp = await http.get(Uri.parse(url)).timeout(const Duration(seconds: 10)); + if (resp.statusCode == 200) { + final data = jsonDecode(resp.body); + if (data['code'] == 'Ok') { + final routes = data['routes'] as List; + if (routes.isNotEmpty) { + final geometry = routes[0]['geometry'] as String; + final distanceMeters = (routes[0]['distance'] as num).toDouble(); + final points = RoutingService.decodePolyline(geometry); + return (points, distanceMeters / 1000.0); + } + } + } + } catch (_) {} + return null; + } + + // ── Optimization ──────────────────────────────────────── + + Future _optimizeStops() async { + final stops = _deliveryProvider.stops; + if (stops.length < 2) return; + + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar(content: Text('Optimizing route...'), duration: Duration(seconds: 3)), + ); + } + + final optimized = await _routing.optimizeRoute(stops); + final newStops = optimized ?? RoutingService.optimizeLocally(stops); + await _deliveryProvider.reorderStops(newStops); + } + + // ── Coordinate Refresh ────────────────────────────────── + + Future _refreshCoordinates() async { + final stops = _deliveryProvider.stops; + if (stops.isEmpty) return; + + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar(content: Text('Refreshing coordinates...'), duration: Duration(seconds: 2)), + ); + } + + for (final stop in stops) { + try { + final newPos = await _geocoding.geocode(stop.street, stop.houseNumber); + if ((newPos.latitude - stop.lat).abs() > 0.0001 || + (newPos.longitude - stop.lng).abs() > 0.0001) { + await _deliveryProvider.updateCoords(stop.id!, newPos.latitude, newPos.longitude); + } + } catch (_) {} + } + + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar(content: Text('Coordinates refreshed'), duration: Duration(seconds: 2)), + ); + } + } + + // ── Export GPX ────────────────────────────────────────── + + Future _exportGpx() async { + final stops = _deliveryProvider.stops; + if (stops.isEmpty) return; + + try { + final path = await GpxExportService.exportRoute( + routeName: widget.name, + stops: stops, + trackPoints: _showRoute ? _routePoints : null, + ); + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar(content: Text('GPX exported: $path'), duration: const Duration(seconds: 3)), + ); + } + } catch (e) { + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar(content: Text('Export failed: $e'), backgroundColor: Colors.red), + ); + } + } + } + + // ── Reset Today ───────────────────────────────────────── + + Future _resetToday() async { + final confirmed = await showDialog( + context: context, + builder: (ctx) => AlertDialog( + title: const Text('Reset Today'), + content: const Text( + 'This will mark all stops as undelivered for today. ' + 'Previous delivery records are preserved in history. Continue?'), + actions: [ + TextButton(onPressed: () => Navigator.pop(ctx, false), child: const Text('Cancel')), + TextButton( + onPressed: () => Navigator.pop(ctx, true), + style: TextButton.styleFrom(foregroundColor: Colors.orange), + child: const Text('Reset'), + ), + ], + ), + ); + + if (confirmed == true) { + await _deliveryProvider.resetToday(); + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar(content: Text('Today\'s deliveries have been reset')), + ); + } + } + } + + // ── Search ────────────────────────────────────────────── + + List _filteredStops(List stops) { + if (_searchQuery.isEmpty) return stops; + final q = _searchQuery.toLowerCase(); + return stops.where((s) { + return s.street.toLowerCase().contains(q) || + s.houseNumber.toLowerCase().contains(q) || + '${s.street} ${s.houseNumber}'.toLowerCase().contains(q); + }).toList(); + } + + // ── Stop Details ──────────────────────────────────────── + + void _showStopDetails(int index, List filteredStops) { + final stop = filteredStops[index]; + final notesCtrl = TextEditingController(text: stop.notes); + final isDelivered = _deliveryProvider.todayDeliveredIds.contains(stop.id); + + showModalBottomSheet( + context: context, + isScrollControlled: true, + builder: (ctx) => Padding( + padding: EdgeInsets.only( + left: 20, + right: 20, + top: 20, + bottom: MediaQuery.of(ctx).viewInsets.bottom + 20, + ), + child: SingleChildScrollView( + child: Column( + mainAxisSize: MainAxisSize.min, + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + '${stop.street} ${stop.houseNumber}', + style: const TextStyle(fontSize: 20, fontWeight: FontWeight.bold), + ), + const SizedBox(height: 8), + if (stop.newspapers.isNotEmpty) + Wrap( + spacing: 8, + children: stop.newspapers + .map((np) => Chip( + label: Text(np), + backgroundColor: _npColors[np] ?? Colors.grey, + labelStyle: const TextStyle(color: Colors.white), + )) + .toList(), + ), + const SizedBox(height: 16), + TextField( + controller: notesCtrl, + decoration: const InputDecoration( + labelText: 'Notes', + hintText: 'Dog, gate code...', + border: OutlineInputBorder(), + ), + maxLines: 3, + ), + const SizedBox(height: 16), + Row( + children: [ + Expanded( + child: ElevatedButton( + onPressed: () { + _deliveryProvider.saveNotes(stop.id!, notesCtrl.text); + _deliveryProvider.toggleDelivered(stop.id!); + Navigator.pop(ctx); + }, + style: ElevatedButton.styleFrom( + backgroundColor: isDelivered ? Colors.orange : Colors.green, + ), + child: Text(isDelivered ? 'Undo Delivery' : 'Mark Delivered'), + ), + ), + const SizedBox(width: 8), + IconButton( + icon: const Icon(Icons.delete_outline, color: Colors.red), + onPressed: () { + Navigator.pop(ctx); + _deleteStop(stop); + }, + ), + ], + ), + const SizedBox(height: 8), + SizedBox( + width: double.infinity, + child: OutlinedButton.icon( + onPressed: () { + _deliveryProvider.saveNotes(stop.id!, notesCtrl.text); + Navigator.pop(ctx); + }, + icon: const Icon(Icons.save), + label: const Text('Save Notes'), + ), + ), + ], + ), + ), + ), + ).whenComplete(() { + _deliveryProvider.saveNotes(stop.id!, notesCtrl.text); + notesCtrl.dispose(); + }); + } + + Future _deleteStop(Stop stop) async { + final confirmed = await showDialog( + context: context, + builder: (ctx) => AlertDialog( + title: const Text('Delete Stop'), + content: Text('Delete ${stop.street} ${stop.houseNumber}?'), + actions: [ + TextButton(onPressed: () => Navigator.pop(ctx, false), child: const Text('Cancel')), + TextButton( + onPressed: () => Navigator.pop(ctx, true), + style: TextButton.styleFrom(foregroundColor: Colors.red), + child: const Text('Delete'), + ), + ], + ), + ); + if (confirmed == true) { + await _deliveryProvider.deleteStop(stop.id!); + } + } + + void _openBuilder() { + Navigator.push( + context, + MaterialPageRoute( + builder: (_) => BuilderPage(routeId: widget.routeId, onSave: () { + _deliveryProvider.loadStops(widget.routeId); + }), + ), + ); + } + + // ── Build ─────────────────────────────────────────────── + + @override + Widget build(BuildContext context) { + final appState = context.watch(); + final stops = _deliveryProvider.stopsWithDeliveryStatus; + final filteredStops = _filteredStops(stops); + final done = _deliveryProvider.deliveredCount; + final total = _deliveryProvider.totalStops; + final navMode = _deliveryProvider.navigateMode; + + return Scaffold( + appBar: AppBar( + title: Text('${widget.name} ($done/$total)'), + actions: [ + // Navigate mode toggle + IconButton( + icon: Icon(navMode ? Icons.stop_circle : Icons.navigation), + onPressed: () { + if (navMode) { + _deliveryProvider.stopNavigation(); + } else { + _deliveryProvider.startNavigation(); + } + }, + tooltip: navMode ? 'Stop Navigation' : 'Start Navigation', + ), + PopupMenuButton( + icon: const Icon(Icons.more_vert), + onSelected: _handleMenuAction, + itemBuilder: (_) => [ + const PopupMenuItem(value: 'stats', child: Text('📊 Statistics')), + const PopupMenuItem(value: 'export', child: Text('📤 Export GPX')), + const PopupMenuItem(value: 'reset', child: Text('🔄 Reset Today')), + const PopupMenuItem(value: 'optimize', child: Text('⚡ Optimize Route')), + const PopupMenuItem(value: 'refresh', child: Text('📍 Refresh Coords')), + const PopupMenuItem(value: 'settings', child: Text('⚙️ Settings')), + ], + ), + ], + ), + body: _buildBody(stops, filteredStops, navMode), + floatingActionButton: FloatingActionButton( + onPressed: _openBuilder, + child: const Icon(Icons.add), + ), + ); + } + + void _handleMenuAction(String action) { + switch (action) { + case 'stats': + Navigator.push( + context, + MaterialPageRoute( + builder: (_) => StatisticsPage( + deliveryProvider: _deliveryProvider, + routeName: widget.name, + ), + ), + ); + break; + case 'export': + _exportGpx(); + break; + case 'reset': + _resetToday(); + break; + case 'optimize': + _optimizeStops(); + break; + case 'refresh': + _refreshCoordinates(); + break; + case 'settings': + Navigator.push( + context, + MaterialPageRoute( + builder: (_) => SettingsPage(appState: context.read()), + ), + ); + break; + } + } + + Widget _buildBody(List allStops, List filteredStops, bool navMode) { + if (_deliveryProvider.isLoading) { + return const Center( + child: Column( + mainAxisSize: MainAxisSize.min, + children: [CircularProgressIndicator(), SizedBox(height: 16), Text('Loading stops...')], + ), + ); + } + + if (_deliveryProvider.error != null) { + return Center( + child: Padding( + padding: const EdgeInsets.all(24), + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + const Icon(Icons.error_outline, size: 48, color: Colors.red), + const SizedBox(height: 16), + Text(_deliveryProvider.error!, textAlign: TextAlign.center), + const SizedBox(height: 16), + ElevatedButton.icon( + onPressed: () => _deliveryProvider.loadStops(widget.routeId), + icon: const Icon(Icons.refresh), + label: const Text('Retry'), + ), + ], + ), + ), + ); + } + + return Column( + children: [ + // Newspaper counts header + if (allStops.isNotEmpty) _buildNewspaperHeader(), + + // Search bar + Padding( + padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 4), + child: TextField( + controller: _searchController, + decoration: InputDecoration( + hintText: 'Search by street or house number...', + prefixIcon: const Icon(Icons.search), + suffixIcon: _searchQuery.isNotEmpty + ? IconButton( + icon: const Icon(Icons.clear), + onPressed: () { + _searchController.clear(); + setState(() => _searchQuery = ''); + }, + ) + : null, + border: OutlineInputBorder(borderRadius: BorderRadius.circular(12)), + contentPadding: const EdgeInsets.symmetric(horizontal: 12, vertical: 8), + isDense: true, + ), + onChanged: (v) => setState(() => _searchQuery = v), + ), + ), + + // Navigation mode bar + if (navMode) _buildNavigationBar(allStops), + + // Map + Expanded( + child: Stack( + children: [ + FlutterMap( + mapController: _mapController, + options: const MapOptions( + initialCenter: LatLng(51.428, 4.330), + initialZoom: 14, + ), + children: [ + TileLayer( + urlTemplate: context.read().tileUrl, + subdomains: context.read().tileSubdomains.split(''), + userAgentPackageName: 'com.delivery.route', + ), + MarkerLayer(markers: [ + ...filteredStops.asMap().entries.map((e) { + final stop = e.value; + final isDelivered = + _deliveryProvider.todayDeliveredIds.contains(stop.id); + final isCurrentNav = + navMode && e.key == _deliveryProvider.navigateIndex; + + return Marker( + point: stop.location, + width: isCurrentNav ? 32 : 24, + height: isCurrentNav ? 32 : 24, + child: GestureDetector( + onTap: () => _showStopDetails(e.key, filteredStops), + child: Container( + decoration: BoxDecoration( + color: isDelivered + ? Colors.green.withValues(alpha: 0.6) + : (stop.newspapers.isNotEmpty + ? (_npColors[stop.newspapers.first] ?? Colors.grey) + : Colors.grey), + shape: BoxShape.circle, + border: Border.all( + color: isCurrentNav ? Colors.yellow : Colors.white, + width: isCurrentNav ? 3 : 2, + ), + ), + child: Center( + child: Text( + '${stop.sequence + 1}', + style: const TextStyle( + color: Colors.white, + fontSize: 10, + fontWeight: FontWeight.bold, + ), + ), + ), + ), + ), + ); + }), + if (_userPosition != null) + Marker( + point: LatLng(_userPosition!.latitude, _userPosition!.longitude), + width: 20, + height: 20, + child: Container( + decoration: BoxDecoration( + color: Colors.blue, + shape: BoxShape.circle, + border: Border.all(color: Colors.white, width: 3), + ), + ), + ), + ]), + if (_showRoute && _routePoints.isNotEmpty) + PolylineLayer( + polylines: [ + Polyline(points: _routePoints, color: Colors.blue, strokeWidth: 4.0) + ], + ), + ], + ), + + // Route distance badge + if (_showRoute && _routeDistanceKm > 0) + Positioned( + top: 8, + right: 8, + child: Card( + child: Padding( + padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 6), + child: Row( + mainAxisSize: MainAxisSize.min, + children: [ + const Icon(Icons.route, size: 16), + const SizedBox(width: 4), + Text( + '${_routeDistanceKm.toStringAsFixed(1)} km', + style: const TextStyle(fontWeight: FontWeight.bold), + ), + ], + ), + ), + ), + ), + + // Loading overlay + if (_isLoadingRoute) + Container( + color: Colors.black.withValues(alpha: 0.3), + child: const Center( + child: Card( + child: Padding( + padding: EdgeInsets.all(20), + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + CircularProgressIndicator(), + SizedBox(height: 16), + Text('Calculating route...'), + ], + ), + ), + ), + ), + ), + ], + ), + ), + + // Stops list + SizedBox( + height: 220, + child: filteredStops.isEmpty + ? Center( + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + Icon( + _searchQuery.isNotEmpty ? Icons.search_off : Icons.add_location_alt, + size: 48, + color: Colors.grey, + ), + const SizedBox(height: 8), + Text( + _searchQuery.isNotEmpty ? 'No matching stops' : 'No stops', + style: const TextStyle(color: Colors.grey), + ), + if (_searchQuery.isEmpty) ...[ + const SizedBox(height: 8), + ElevatedButton.icon( + onPressed: _openBuilder, + icon: const Icon(Icons.add), + label: const Text('Add Stops'), + ), + ], + ], + ), + ) + : ListView.builder( + itemCount: filteredStops.length, + itemBuilder: (ctx, i) { + final stop = filteredStops[i]; + final isDelivered = + _deliveryProvider.todayDeliveredIds.contains(stop.id); + final isCurrentNav = + navMode && i == _deliveryProvider.navigateIndex; + + return ListTile( + dense: true, + selected: isCurrentNav, + selectedTileColor: Colors.yellow.withValues(alpha: 0.15), + leading: CircleAvatar( + radius: 16, + backgroundColor: isDelivered + ? Colors.green + : (stop.newspapers.isNotEmpty + ? (_npColors[stop.newspapers.first] ?? Colors.grey) + : Colors.grey), + child: Text( + '${stop.sequence + 1}', + style: const TextStyle(color: Colors.white, fontSize: 12), + ), + ), + title: Text( + '${stop.street} ${stop.houseNumber}', + style: const TextStyle(fontSize: 14), + ), + subtitle: _buildSubtitle(stop), + trailing: Row( + mainAxisSize: MainAxisSize.min, + children: [ + if (stop.newspapers.length > 1) + Padding( + padding: const EdgeInsets.only(right: 4), + child: Text( + '${stop.newspapers.length}📰', + style: const TextStyle(fontSize: 11), + ), + ), + Checkbox( + value: isDelivered, + onChanged: (_) => _deliveryProvider.toggleDelivered(stop.id!), + ), + ], + ), + onTap: () => _showStopDetails(i, filteredStops), + ); + }, + ), + ), + ], + ); + } + + // ── Newspaper Header ──────────────────────────────────── + + Widget _buildNewspaperHeader() { + final counts = _deliveryProvider.newspaperCounts; + final total = _deliveryProvider.totalNewspapers; + + return Container( + padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 6), + color: Theme.of(context).colorScheme.surfaceContainerHighest.withValues(alpha: 0.5), + child: Row( + children: [ + const Icon(Icons.newspaper, size: 16), + const SizedBox(width: 6), + Text('$total papers', style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 13)), + const SizedBox(width: 12), + Expanded( + child: Wrap( + spacing: 8, + children: counts.entries.map((e) { + final color = _npColors[e.key] ?? Colors.grey; + return Text( + '${e.key}:${e.value}', + style: TextStyle( + fontSize: 12, + fontWeight: FontWeight.w600, + color: color, + ), + ); + }).toList(), + ), + ), + // Route show/hide button + GestureDetector( + onTap: () { + if (_showRoute) { + setState(() => _showRoute = false); + } else { + _fetchRoute(); + } + }, + child: Row( + mainAxisSize: MainAxisSize.min, + children: [ + Icon( + _showRoute ? Icons.route : Icons.route_outlined, + size: 18, + color: _showRoute ? Colors.blue : null, + ), + if (_showRoute && _routeDistanceKm > 0) + Text( + ' ${_routeDistanceKm.toStringAsFixed(1)}km', + style: const TextStyle(fontSize: 12, fontWeight: FontWeight.w600), + ), + ], + ), + ), + ], + ), + ); + } + + // ── Navigation Bar ────────────────────────────────────── + + Widget _buildNavigationBar(List allStops) { + final idx = _deliveryProvider.navigateIndex; + final total = allStops.length; + final currentStop = _deliveryProvider.currentNavigateStop; + final delivered = _deliveryProvider.deliveredCount; + final progress = _deliveryProvider.progressPercent; + + return Container( + padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 8), + color: Theme.of(context).colorScheme.primaryContainer, + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + // Progress bar + LinearProgressIndicator( + value: progress, + minHeight: 6, + borderRadius: BorderRadius.circular(3), + ), + const SizedBox(height: 6), + Row( + children: [ + // Stop counter + Text( + 'Stop ${idx + 1} of $total', + style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 15), + ), + const SizedBox(width: 12), + // Delivered count + Text( + '$delivered delivered', + style: TextStyle(color: Colors.grey[600], fontSize: 13), + ), + const Spacer(), + // Navigation buttons + IconButton( + icon: const Icon(Icons.chevron_left), + onPressed: idx > 0 ? _deliveryProvider.previousStop : null, + iconSize: 28, + ), + // Mark delivered button + if (currentStop != null) + ElevatedButton.icon( + onPressed: () => _deliveryProvider.toggleDelivered(currentStop.id!), + icon: Icon( + _deliveryProvider.todayDeliveredIds.contains(currentStop.id) + ? Icons.undo + : Icons.check, + size: 18, + ), + label: Text( + _deliveryProvider.todayDeliveredIds.contains(currentStop.id) + ? 'Undo' + : 'Deliver', + ), + style: ElevatedButton.styleFrom( + backgroundColor: + _deliveryProvider.todayDeliveredIds.contains(currentStop.id) + ? Colors.orange + : Colors.green, + foregroundColor: Colors.white, + padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 4), + ), + ), + IconButton( + icon: const Icon(Icons.chevron_right), + onPressed: idx < total - 1 ? _deliveryProvider.nextStop : null, + iconSize: 28, + ), + ], + ), + if (currentStop != null) ...[ + const SizedBox(height: 4), + Text( + '${currentStop.street} ${currentStop.houseNumber}', + style: const TextStyle(fontSize: 14, fontWeight: FontWeight.w500), + ), + if (currentStop.newspapers.isNotEmpty) + Text( + currentStop.newspapers.join(', '), + style: TextStyle(fontSize: 12, color: Colors.grey[600]), + ), + ], + ], + ), + ); + } + + Widget? _buildSubtitle(Stop stop) { + final parts = []; + if (stop.newspapers.isNotEmpty) parts.add(stop.newspapers.join(', ')); + if (stop.notes.isNotEmpty) parts.add('📝 ${stop.notes}'); + if (parts.isEmpty) return null; + return Text(parts.join(' • '), style: const TextStyle(fontSize: 12)); + } +} diff --git a/lib/pages/routes_page.dart b/lib/pages/routes_page.dart new file mode 100644 index 0000000..7505d2a --- /dev/null +++ b/lib/pages/routes_page.dart @@ -0,0 +1,233 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import '../services/database.dart'; +import '../providers/app_state.dart'; +import 'route_page.dart'; +import 'settings_page.dart'; + +class RoutesPage extends StatefulWidget { + const RoutesPage({super.key}); + @override + State createState() => _RoutesPageState(); +} + +class _RoutesPageState extends State { + final _db = DatabaseService(); + List> _routes = []; + bool _loading = true; + String? _error; + + @override + void initState() { + super.initState(); + _initDb(); + } + + Future _initDb() async { + try { + await _db.database; + await _loadRoutes(); + } catch (e) { + setState(() { + _error = 'Failed to initialize database: $e'; + _loading = false; + }); + } + } + + Future _loadRoutes() async { + try { + final r = await _db.getRoutes(); + setState(() { + _routes = r; + _loading = false; + _error = null; + }); + } catch (e) { + setState(() { + _error = 'Failed to load routes: $e'; + _loading = false; + }); + } + } + + void _addRoute() { + final ctrl = TextEditingController(); + showDialog( + context: context, + builder: (ctx) => AlertDialog( + title: const Text('New Route'), + content: TextField( + controller: ctrl, + decoration: const InputDecoration(labelText: 'Route name', hintText: 'e.g., Morning Route'), + autofocus: true, + ), + actions: [ + TextButton(onPressed: () => Navigator.pop(ctx), child: const Text('Cancel')), + ElevatedButton( + onPressed: () async { + if (ctrl.text.trim().isNotEmpty) { + await _db.insertRoute(ctrl.text.trim()); + await _loadRoutes(); + } + if (ctx.mounted) Navigator.pop(ctx); + }, + child: const Text('Create'), + ), + ], + ), + ); + } + + Future _deleteRoute(int routeId, String routeName) async { + final confirmed = await showDialog( + context: context, + builder: (ctx) => AlertDialog( + title: const Text('Delete Route'), + content: Text('Delete "$routeName" and all its stops?'), + actions: [ + TextButton(onPressed: () => Navigator.pop(ctx, false), child: const Text('Cancel')), + TextButton( + onPressed: () => Navigator.pop(ctx, true), + style: TextButton.styleFrom(foregroundColor: Colors.red), + child: const Text('Delete'), + ), + ], + ), + ); + if (confirmed == true) { + await _db.deleteRoute(routeId); + await _loadRoutes(); + } + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('My Routes'), + actions: [ + IconButton( + icon: const Icon(Icons.settings), + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (_) => SettingsPage(appState: context.read()), + ), + ); + }, + ), + ], + ), + body: _buildBody(), + floatingActionButton: FloatingActionButton(onPressed: _addRoute, child: const Icon(Icons.add)), + ); + } + + Widget _buildBody() { + if (_loading) { + return const Center( + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + CircularProgressIndicator(), + SizedBox(height: 16), + Text('Initializing database...'), + ], + ), + ); + } + + if (_error != null) { + return Center( + child: Padding( + padding: const EdgeInsets.all(24), + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + const Icon(Icons.error_outline, size: 48, color: Colors.red), + const SizedBox(height: 16), + Text(_error!, textAlign: TextAlign.center), + const SizedBox(height: 16), + ElevatedButton.icon( + onPressed: () { + setState(() => _loading = true); + _initDb(); + }, + icon: const Icon(Icons.refresh), + label: const Text('Retry'), + ), + ], + ), + ), + ); + } + + if (_routes.isEmpty) { + return Center( + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + const Icon(Icons.route, size: 64, color: Colors.grey), + const SizedBox(height: 16), + const Text('No routes yet', style: TextStyle(fontSize: 18, color: Colors.grey)), + const SizedBox(height: 16), + ElevatedButton.icon( + onPressed: _addRoute, + icon: const Icon(Icons.add), + label: const Text('Create Route'), + ), + ], + ), + ); + } + + return RefreshIndicator( + onRefresh: _loadRoutes, + child: ListView.builder( + itemCount: _routes.length, + itemBuilder: (ctx, i) { + final route = _routes[i]; + return Card( + margin: const EdgeInsets.symmetric(horizontal: 12, vertical: 4), + child: ListTile( + leading: const CircleAvatar(child: Icon(Icons.route)), + title: Text(route['name'] as String, style: const TextStyle(fontWeight: FontWeight.w600)), + subtitle: Text( + route['created_at'] != null + ? _formatDate(route['created_at'] as String) + : '', + ), + trailing: Row( + mainAxisSize: MainAxisSize.min, + children: [ + IconButton( + icon: const Icon(Icons.delete_outline, color: Colors.red), + onPressed: () => _deleteRoute(route['id'] as int, route['name'] as String), + ), + const Icon(Icons.chevron_right), + ], + ), + onTap: () => Navigator.push( + context, + MaterialPageRoute( + builder: (_) => RoutePage(routeId: route['id'] as int, name: route['name'] as String), + ), + ).then((_) => _loadRoutes()), + ), + ); + }, + ), + ); + } + + String _formatDate(String iso) { + try { + final dt = DateTime.parse(iso); + return '${dt.day}/${dt.month}/${dt.year} ${dt.hour}:${dt.minute.toString().padLeft(2, '0')}'; + } catch (_) { + return iso; + } + } +} diff --git a/lib/pages/settings_page.dart b/lib/pages/settings_page.dart new file mode 100644 index 0000000..0e33449 --- /dev/null +++ b/lib/pages/settings_page.dart @@ -0,0 +1,95 @@ +import 'package:flutter/material.dart'; +import '../providers/app_state.dart'; + +class SettingsPage extends StatelessWidget { + final AppState appState; + + const SettingsPage({super.key, required this.appState}); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: const Text('Settings')), + body: ListView( + children: [ + const SizedBox(height: 8), + + // ── Appearance ────────────────────────────── + _sectionHeader('Appearance'), + SwitchListTile( + title: const Text('Dark Mode'), + subtitle: const Text('Use dark theme with dark map tiles'), + value: appState.darkMode, + onChanged: (v) => appState.setDarkMode(v), + secondary: Icon( + appState.darkMode ? Icons.dark_mode : Icons.light_mode, + ), + ), + + const Divider(), + + // ── Map Style ─────────────────────────────── + _sectionHeader('Map Style'), + _mapStyleTile(context, 'voyager', 'CartoDB Voyager', + 'Colorful, detailed map (recommended)', Icons.map), + _mapStyleTile(context, 'osm', 'OpenStreetMap', + 'Standard OSM tiles', Icons.public), + _mapStyleTile(context, 'positron', 'CartoDB Positron', + 'Clean, light minimal style', Icons.brightness_7), + _mapStyleTile(context, 'dark', 'CartoDB Dark', + 'Dark map tiles', Icons.brightness_3), + + const Divider(), + + // ── About ─────────────────────────────────── + _sectionHeader('About'), + const ListTile( + leading: Icon(Icons.info_outline), + title: Text('Delivery Route App'), + subtitle: Text('Newspaper delivery route management'), + ), + const ListTile( + leading: Icon(Icons.newspaper), + title: Text('Supported Newspapers'), + subtitle: Text('BN, AD, TEL, VK'), + ), + ], + ), + ); + } + + Widget _sectionHeader(String title) { + return Padding( + padding: const EdgeInsets.fromLTRB(16, 16, 16, 4), + child: Text( + title, + style: TextStyle( + fontSize: 14, + fontWeight: FontWeight.w600, + color: Colors.blue[700], + ), + ), + ); + } + + Widget _mapStyleTile( + BuildContext context, + String style, + String title, + String subtitle, + IconData icon, + ) { + final isSelected = appState.mapStyle == style; + return RadioListTile( + title: Text(title), + subtitle: Text(subtitle), + value: style, + groupValue: appState.mapStyle, + onChanged: (v) { + if (v != null) appState.setMapStyle(v); + }, + secondary: Icon(icon, color: isSelected ? Colors.blue : null), + activeColor: Colors.blue, + ); + } +} diff --git a/lib/pages/statistics_page.dart b/lib/pages/statistics_page.dart new file mode 100644 index 0000000..3a8e447 --- /dev/null +++ b/lib/pages/statistics_page.dart @@ -0,0 +1,301 @@ +import 'package:flutter/material.dart'; +import '../providers/delivery_provider.dart'; +import '../models/delivery_history.dart'; + +class StatisticsPage extends StatefulWidget { + final DeliveryProvider deliveryProvider; + final String routeName; + + const StatisticsPage({ + super.key, + required this.deliveryProvider, + required this.routeName, + }); + + @override + State createState() => _StatisticsPageState(); +} + +class _StatisticsPageState extends State { + List _stats = []; + int _totalDeliveries = 0; + int _weeklyDeliveries = 0; + bool _loading = true; + + @override + void initState() { + super.initState(); + _loadStats(); + } + + Future _loadStats() async { + final stats = await widget.deliveryProvider.getStats(days: 30); + final total = await widget.deliveryProvider.totalDeliveries; + final weekly = await widget.deliveryProvider.weeklyDeliveries; + if (mounted) { + setState(() { + _stats = stats; + _totalDeliveries = total; + _weeklyDeliveries = weekly; + _loading = false; + }); + } + } + + @override + Widget build(BuildContext context) { + final provider = widget.deliveryProvider; + final todayDelivered = provider.deliveredCount; + final totalStops = provider.totalStops; + final newspaperCounts = provider.newspaperCounts; + final totalNewspapers = provider.totalNewspapers; + + // Calculate averages + final daysWithDeliveries = _stats.where((s) => s.deliveredCount > 0).length; + final avgPerDay = daysWithDeliveries > 0 + ? (_stats.fold(0, (sum, s) => sum + s.deliveredCount) / daysWithDeliveries) + : 0.0; + + return Scaffold( + appBar: AppBar( + title: Text('Statistics - ${widget.routeName}'), + ), + body: _loading + ? const Center(child: CircularProgressIndicator()) + : RefreshIndicator( + onRefresh: _loadStats, + child: ListView( + padding: const EdgeInsets.all(16), + children: [ + // Today's progress + _buildCard( + icon: Icons.today, + title: 'Today', + child: Column( + children: [ + const SizedBox(height: 8), + LinearProgressIndicator( + value: totalStops > 0 ? todayDelivered / totalStops : 0, + minHeight: 10, + borderRadius: BorderRadius.circular(5), + ), + const SizedBox(height: 8), + Text( + '$todayDelivered / $totalStops stops delivered', + style: const TextStyle(fontSize: 18, fontWeight: FontWeight.bold), + ), + if (totalStops > 0) + Text( + '${(todayDelivered / totalStops * 100).toStringAsFixed(0)}% complete', + style: TextStyle(color: Colors.grey[600]), + ), + ], + ), + ), + + const SizedBox(height: 12), + + // Newspaper counts + _buildCard( + icon: Icons.newspaper, + title: 'Newspapers', + child: Column( + children: [ + const SizedBox(height: 8), + Text( + '$totalNewspapers total newspapers', + style: const TextStyle(fontSize: 16, fontWeight: FontWeight.w600), + ), + const SizedBox(height: 12), + Wrap( + spacing: 12, + runSpacing: 8, + alignment: WrapAlignment.center, + children: newspaperCounts.entries.map((e) { + final color = _npColor(e.key); + return Chip( + avatar: CircleAvatar( + backgroundColor: color, + radius: 8, + ), + label: Text('${e.key}: ${e.value}'), + ); + }).toList(), + ), + ], + ), + ), + + const SizedBox(height: 12), + + // Summary stats + Row( + children: [ + Expanded( + child: _buildStatCard( + icon: Icons.calendar_view_week, + label: 'This Week', + value: '$_weeklyDeliveries', + color: Colors.blue, + ), + ), + const SizedBox(width: 12), + Expanded( + child: _buildStatCard( + icon: Icons.all_inclusive, + label: 'Total All Time', + value: '$_totalDeliveries', + color: Colors.green, + ), + ), + ], + ), + + const SizedBox(height: 12), + + Row( + children: [ + Expanded( + child: _buildStatCard( + icon: Icons.analytics, + label: 'Avg/Day', + value: avgPerDay.toStringAsFixed(1), + color: Colors.orange, + ), + ), + const SizedBox(width: 12), + Expanded( + child: _buildStatCard( + icon: Icons.date_range, + label: 'Active Days', + value: '$daysWithDeliveries', + color: Colors.purple, + ), + ), + ], + ), + + const SizedBox(height: 20), + + // Daily history + _buildCard( + icon: Icons.history, + title: 'Delivery History (Last 30 Days)', + child: _stats.isEmpty + ? const Padding( + padding: EdgeInsets.all(16), + child: Text( + 'No deliveries recorded yet', + textAlign: TextAlign.center, + style: TextStyle(color: Colors.grey), + ), + ) + : Column( + children: _stats.map((stat) { + final date = DateTime.tryParse(stat.date); + final dateStr = date != null + ? '${date.day}/${date.month}/${date.year}' + : stat.date; + final pct = stat.totalCount > 0 + ? (stat.deliveredCount / stat.totalCount * 100) + .toStringAsFixed(0) + : '0'; + + return ListTile( + dense: true, + leading: CircleAvatar( + radius: 16, + backgroundColor: stat.deliveredCount == stat.totalCount + ? Colors.green + : Colors.orange, + child: Text( + '$pct%', + style: const TextStyle( + color: Colors.white, + fontSize: 10, + fontWeight: FontWeight.bold, + ), + ), + ), + title: Text(dateStr), + subtitle: Text( + '${stat.deliveredCount} / ${stat.totalCount} stops', + ), + trailing: stat.deliveredCount == stat.totalCount + ? const Icon(Icons.check_circle, color: Colors.green) + : null, + ); + }).toList(), + ), + ), + ], + ), + ), + ); + } + + Widget _buildCard({ + required IconData icon, + required String title, + required Widget child, + }) { + return Card( + child: Padding( + padding: const EdgeInsets.all(16), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Row( + children: [ + Icon(icon, size: 20), + const SizedBox(width: 8), + Text(title, style: const TextStyle(fontSize: 16, fontWeight: FontWeight.bold)), + ], + ), + child, + ], + ), + ), + ); + } + + Widget _buildStatCard({ + required IconData icon, + required String label, + required String value, + required Color color, + }) { + return Card( + child: Padding( + padding: const EdgeInsets.all(16), + child: Column( + children: [ + Icon(icon, color: color, size: 28), + const SizedBox(height: 8), + Text( + value, + style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold, color: color), + ), + const SizedBox(height: 4), + Text(label, style: TextStyle(color: Colors.grey[600], fontSize: 12)), + ], + ), + ), + ); + } + + Color _npColor(String np) { + switch (np) { + case 'BN': + return Colors.red; + case 'AD': + return Colors.blue; + case 'TEL': + return Colors.orange; + case 'VK': + return Colors.purple; + default: + return Colors.grey; + } + } +} diff --git a/lib/providers/app_state.dart b/lib/providers/app_state.dart new file mode 100644 index 0000000..8bc30bf --- /dev/null +++ b/lib/providers/app_state.dart @@ -0,0 +1,83 @@ +import 'package:flutter/material.dart'; +import '../services/database.dart'; + +class AppState extends ChangeNotifier { + final DatabaseService _db = DatabaseService(); + + bool _darkMode = false; + String _mapStyle = 'voyager'; // 'voyager', 'osm', 'dark', 'positron' + bool _isLoaded = false; + + bool get darkMode => _darkMode; + String get mapStyle => _mapStyle; + bool get isLoaded => _isLoaded; + + ThemeData get theme => _darkMode ? _darkTheme : _lightTheme; + + String get tileUrl { + if (_darkMode) { + return 'https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png'; + } + switch (_mapStyle) { + case 'osm': + return 'https://tile.openstreetmap.org/{z}/{x}/{y}.png'; + case 'dark': + return 'https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png'; + case 'positron': + return 'https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png'; + case 'voyager': + default: + return 'https://{s}.basemaps.cartocdn.com/rastertiles/voyager/{z}/{x}/{y}{r}.png'; + } + } + + String get tileSubdomains => 'abcd'; + + Future loadSettings() async { + _darkMode = await _db.getSetting('dark_mode', false); + _mapStyle = await _db.getSetting('map_style', 'voyager'); + _isLoaded = true; + notifyListeners(); + } + + Future setDarkMode(bool value) async { + _darkMode = value; + notifyListeners(); + await _db.setSetting('dark_mode', value); + } + + Future setMapStyle(String style) async { + _mapStyle = style; + notifyListeners(); + await _db.setSetting('map_style', style); + } + + // ── Themes ────────────────────────────────────────────── + + static final _lightTheme = ThemeData( + colorScheme: ColorScheme.fromSeed( + seedColor: Colors.blue, + brightness: Brightness.light, + ), + useMaterial3: true, + brightness: Brightness.light, + ); + + static final _darkTheme = ThemeData( + colorScheme: ColorScheme.fromSeed( + seedColor: Colors.blue, + brightness: Brightness.dark, + ), + useMaterial3: true, + brightness: Brightness.dark, + scaffoldBackgroundColor: const Color(0xFF121212), + cardColor: const Color(0xFF1E1E1E), + appBarTheme: const AppBarTheme( + backgroundColor: Color(0xFF1E1E1E), + foregroundColor: Colors.white, + ), + bottomSheetTheme: const BottomSheetThemeData( + backgroundColor: Color(0xFF1E1E1E), + ), + ); +} diff --git a/lib/providers/delivery_provider.dart b/lib/providers/delivery_provider.dart new file mode 100644 index 0000000..63f4bf5 --- /dev/null +++ b/lib/providers/delivery_provider.dart @@ -0,0 +1,206 @@ +import 'package:flutter/material.dart'; +import '../models/stop.dart'; +import '../models/delivery_history.dart'; +import '../services/database.dart'; + +class DeliveryProvider extends ChangeNotifier { + final DatabaseService _db = DatabaseService(); + + List _stops = []; + Set _todayDeliveredIds = {}; + bool _isLoading = false; + String? _error; + int? _currentRouteId; + int _navigateIndex = 0; + bool _navigateMode = false; + + List get stops => _stops; + bool get isLoading => _isLoading; + String? get error => _error; + bool get navigateMode => _navigateMode; + Set get todayDeliveredIds => _todayDeliveredIds; + int get navigateIndex => _navigateIndex; + + /// Stops filtered to show delivered status based on TODAY's history. + List get stopsWithDeliveryStatus { + return _stops.map((s) { + final isDeliveredToday = _todayDeliveredIds.contains(s.id); + return s.copyWith(delivered: isDeliveredToday); + }).toList(); + } + + int get deliveredCount => _todayDeliveredIds.length; + int get totalStops => _stops.length; + double get progressPercent => + _stops.isEmpty ? 0.0 : _todayDeliveredIds.length / _stops.length; + + /// Newspaper counts breakdown + Map get newspaperCounts { + final counts = {}; + for (final stop in _stops) { + for (final np in stop.newspapers) { + counts[np] = (counts[np] ?? 0) + 1; + } + } + return counts; + } + + int get totalNewspapers { + int total = 0; + for (final stop in _stops) { + total += stop.newspapers.length; + } + return total; + } + + /// Current stop in navigation mode + Stop? get currentNavigateStop { + if (!_navigateMode || _stops.isEmpty) return null; + if (_navigateIndex >= _stops.length) return null; + return stopsWithDeliveryStatus[_navigateIndex]; + } + + /// Get the next undelivered stop index for navigation + int get nextUndeliveredIndex { + final orderedStops = stopsWithDeliveryStatus; + for (var i = 0; i < orderedStops.length; i++) { + if (!orderedStops[i].delivered) return i; + } + return -1; // all delivered + } + + // ── Load ──────────────────────────────────────────────── + + Future loadStops(int routeId) async { + _currentRouteId = routeId; + _isLoading = true; + _error = null; + notifyListeners(); + + try { + _stops = await _db.getStops(routeId); + _todayDeliveredIds = await _db.getTodayDeliveredStopIds(routeId); + _isLoading = false; + _error = null; + } catch (e) { + _error = 'Failed to load stops: $e'; + _isLoading = false; + } + notifyListeners(); + } + + // ── Toggle Delivery ───────────────────────────────────── + + Future toggleDelivered(int stopId) async { + if (_currentRouteId == null) return; + + final isDelivered = _todayDeliveredIds.contains(stopId); + if (isDelivered) { + await _db.removeDeliveryRecord(_currentRouteId!, stopId); + _todayDeliveredIds.remove(stopId); + } else { + await _db.recordDelivery(_currentRouteId!, stopId); + _todayDeliveredIds.add(stopId); + } + notifyListeners(); + } + + // ── Reset Today ───────────────────────────────────────── + + Future resetToday() async { + if (_currentRouteId == null) return; + await _db.resetToday(_currentRouteId!); + _todayDeliveredIds.clear(); + notifyListeners(); + } + + // ── Navigation Mode ───────────────────────────────────── + + void startNavigation() { + _navigateMode = true; + _navigateIndex = nextUndeliveredIndex >= 0 ? nextUndeliveredIndex : 0; + notifyListeners(); + } + + void stopNavigation() { + _navigateMode = false; + notifyListeners(); + } + + void nextStop() { + if (_navigateIndex < _stops.length - 1) { + _navigateIndex++; + notifyListeners(); + } + } + + void previousStop() { + if (_navigateIndex > 0) { + _navigateIndex--; + notifyListeners(); + } + } + + void goToStop(int index) { + if (index >= 0 && index < _stops.length) { + _navigateIndex = index; + notifyListeners(); + } + } + + // ── Statistics ────────────────────────────────────────── + + Future> getStats({int days = 30}) async { + if (_currentRouteId == null) return []; + return _db.getDeliveryStats(_currentRouteId!, days: days); + } + + Future get totalDeliveries async { + if (_currentRouteId == null) return 0; + return _db.getTotalDeliveries(_currentRouteId!); + } + + Future get weeklyDeliveries async { + if (_currentRouteId == null) return 0; + return _db.getWeeklyDeliveryCount(_currentRouteId!); + } + + // ── Notes ─────────────────────────────────────────────── + + Future saveNotes(int stopId, String notes) async { + await _db.updateStopNotes(stopId, notes); + final idx = _stops.indexWhere((s) => s.id == stopId); + if (idx >= 0) { + _stops[idx] = _stops[idx].copyWith(notes: notes); + notifyListeners(); + } + } + + // ── Delete Stop ───────────────────────────────────────── + + Future deleteStop(int stopId) async { + await _db.deleteStop(stopId); + _stops.removeWhere((s) => s.id == stopId); + _todayDeliveredIds.remove(stopId); + notifyListeners(); + } + + // ── Reorder ───────────────────────────────────────────── + + Future reorderStops(List newOrder) async { + await _db.reorderStops(newOrder); + _stops = newOrder; + notifyListeners(); + } + + // ── Update Coordinates ────────────────────────────────── + + Future updateCoords(int stopId, double lat, double lng) async { + await _db.updateStopCoords(stopId, lat, lng); + final idx = _stops.indexWhere((s) => s.id == stopId); + if (idx >= 0) { + _stops[idx] = _stops[idx].copyWith(lat: lat, lng: lng); + notifyListeners(); + } + } +} diff --git a/lib/services/database.dart b/lib/services/database.dart new file mode 100644 index 0000000..21a1625 --- /dev/null +++ b/lib/services/database.dart @@ -0,0 +1,351 @@ +import 'package:sqflite/sqflite.dart'; +import 'package:path/path.dart' as p; +import '../models/stop.dart'; +import '../models/delivery_history.dart'; + +class DatabaseService { + static final DatabaseService _instance = DatabaseService._internal(); + factory DatabaseService() => _instance; + DatabaseService._internal(); + + Database? _database; + + Future get database async { + if (_database != null && _database!.isOpen) return _database!; + _database = await _initDatabase(); + return _database!; + } + + Future _initDatabase() async { + final dbPath = await getDatabasesPath(); + return await openDatabase( + p.join(dbPath, 'delivery.db'), + version: 3, + onCreate: (db, version) async { + await _createTables(db); + }, + onUpgrade: (db, oldVersion, newVersion) async { + if (oldVersion < 2) { + await db.execute('ALTER TABLE stops ADD COLUMN notes TEXT DEFAULT \'\''); + } + if (oldVersion < 3) { + await _createDeliveryHistoryTable(db); + await _createSettingsTable(db); + } + }, + ); + } + + Future _createTables(Database db) async { + await db.execute(''' + CREATE TABLE routes ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + name TEXT, + created_at TEXT + ) + '''); + await db.execute(''' + CREATE TABLE stops ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + route_id INTEGER, + street TEXT, + house_number TEXT, + newspapers TEXT, + lat REAL, + lng REAL, + delivered INTEGER DEFAULT 0, + sequence INTEGER DEFAULT 0, + notes TEXT DEFAULT '', + FOREIGN KEY (route_id) REFERENCES routes(id) ON DELETE CASCADE + ) + '''); + await _createDeliveryHistoryTable(db); + await _createSettingsTable(db); + } + + Future _createDeliveryHistoryTable(Database db) async { + await db.execute(''' + CREATE TABLE IF NOT EXISTS delivery_history ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + route_id INTEGER, + stop_id INTEGER, + date TEXT, + delivered_at TEXT, + FOREIGN KEY (route_id) REFERENCES routes(id) ON DELETE CASCADE, + FOREIGN KEY (stop_id) REFERENCES stops(id) ON DELETE CASCADE + ) + '''); + await db.execute( + 'CREATE INDEX IF NOT EXISTS idx_delivery_history_date ON delivery_history(date)', + ); + await db.execute( + 'CREATE INDEX IF NOT EXISTS idx_delivery_history_route ON delivery_history(route_id)', + ); + } + + Future _createSettingsTable(Database db) async { + await db.execute(''' + CREATE TABLE IF NOT EXISTS settings ( + key TEXT PRIMARY KEY, + value TEXT + ) + '''); + } + + // ── Settings ──────────────────────────────────────────── + + Future getSetting(String key, T defaultValue) async { + final db = await database; + final rows = await db.query('settings', where: 'key = ?', whereArgs: [key]); + if (rows.isEmpty) return defaultValue; + final raw = rows.first['value'] as String; + if (T == bool) return (raw == 'true') as T; + if (T == int) return int.parse(raw) as T; + if (T == double) return double.parse(raw) as T; + return raw as T; + } + + Future setSetting(String key, dynamic value) async { + final db = await database; + await db.insert( + 'settings', + {'key': key, 'value': value.toString()}, + conflictAlgorithm: ConflictAlgorithm.replace, + ); + } + + // ── Routes ────────────────────────────────────────────── + + Future>> getRoutes() async { + final db = await database; + return db.query('routes', orderBy: 'created_at DESC'); + } + + Future insertRoute(String name) async { + final db = await database; + return db.insert('routes', { + 'name': name, + 'created_at': DateTime.now().toIso8601String(), + }); + } + + Future deleteRoute(int routeId) async { + final db = await database; + await db.delete('delivery_history', where: 'route_id = ?', whereArgs: [routeId]); + await db.delete('stops', where: 'route_id = ?', whereArgs: [routeId]); + await db.delete('routes', where: 'id = ?', whereArgs: [routeId]); + } + + // ── Stops ─────────────────────────────────────────────── + + Future> getStops(int routeId) async { + final db = await database; + final maps = await db.query( + 'stops', + where: 'route_id = ?', + whereArgs: [routeId], + orderBy: 'sequence', + ); + return maps.map(Stop.fromMap).toList(); + } + + Future insertStop(Stop stop, int routeId) async { + final db = await database; + final map = stop.toMap(); + map['route_id'] = routeId; + return db.insert('stops', map); + } + + Future updateStop(Stop stop) async { + final db = await database; + await db.update('stops', stop.toMap(), where: 'id = ?', whereArgs: [stop.id]); + } + + Future deleteStop(int stopId) async { + final db = await database; + await db.delete('delivery_history', where: 'stop_id = ?', whereArgs: [stopId]); + await db.delete('stops', where: 'id = ?', whereArgs: [stopId]); + } + + Future updateStopSequence(int stopId, int sequence) async { + final db = await database; + await db.update('stops', {'sequence': sequence}, where: 'id = ?', whereArgs: [stopId]); + } + + Future updateStopDelivered(int stopId, bool delivered) async { + final db = await database; + await db.update('stops', {'delivered': delivered ? 1 : 0}, where: 'id = ?', whereArgs: [stopId]); + } + + Future updateStopNotes(int stopId, String notes) async { + final db = await database; + await db.update('stops', {'notes': notes}, where: 'id = ?', whereArgs: [stopId]); + } + + Future updateStopCoords(int stopId, double lat, double lng) async { + final db = await database; + await db.update('stops', {'lat': lat, 'lng': lng}, where: 'id = ?', whereArgs: [stopId]); + } + + Future getMaxSequence(int routeId) async { + final db = await database; + final result = await db.rawQuery( + 'SELECT MAX(sequence) as m FROM stops WHERE route_id = ?', + [routeId], + ); + return result.first['m'] as int?; + } + + Future reorderStops(List stops) async { + final db = await database; + final batch = db.batch(); + for (var i = 0; i < stops.length; i++) { + batch.update('stops', {'sequence': i}, where: 'id = ?', whereArgs: [stops[i].id]); + } + await batch.commit(noResult: true); + } + + // ── Delivery History ──────────────────────────────────── + + String _today() { + final now = DateTime.now(); + return '${now.year}-${now.month.toString().padLeft(2, '0')}-${now.day.toString().padLeft(2, '0')}'; + } + + Future recordDelivery(int routeId, int stopId) async { + final db = await database; + // Check if already recorded today + final existing = await db.query( + 'delivery_history', + where: 'route_id = ? AND stop_id = ? AND date = ?', + whereArgs: [routeId, stopId, _today()], + ); + if (existing.isEmpty) { + await db.insert('delivery_history', { + 'route_id': routeId, + 'stop_id': stopId, + 'date': _today(), + 'delivered_at': DateTime.now().toIso8601String(), + }); + } + } + + Future removeDeliveryRecord(int routeId, int stopId) async { + final db = await database; + await db.delete( + 'delivery_history', + where: 'route_id = ? AND stop_id = ? AND date = ?', + whereArgs: [routeId, stopId, _today()], + ); + } + + /// Get the set of stop IDs delivered today for a route. + Future> getTodayDeliveredStopIds(int routeId) async { + final db = await database; + final rows = await db.query( + 'delivery_history', + columns: ['stop_id'], + where: 'route_id = ? AND date = ?', + whereArgs: [routeId, _today()], + ); + return rows.map((r) => r['stop_id'] as int).toSet(); + } + + /// Reset today's deliveries for a route (mark all stops undelivered). + Future resetToday(int routeId) async { + final db = await database; + await db.delete( + 'delivery_history', + where: 'route_id = ? AND date = ?', + whereArgs: [routeId, _today()], + ); + await db.update('stops', {'delivered': 0}, where: 'route_id = ?', whereArgs: [routeId]); + } + + /// Get all unique delivery dates for a route. + Future> getDeliveryDates(int routeId) async { + final db = await database; + final rows = await db.rawQuery( + 'SELECT DISTINCT date FROM delivery_history WHERE route_id = ? ORDER BY date DESC', + [routeId], + ); + return rows.map((r) => r['date'] as String).toList(); + } + + /// Get delivery count for a specific date and route. + Future getDeliveryCountForDate(int routeId, String date) async { + final db = await database; + final rows = await db.rawQuery( + 'SELECT COUNT(*) as cnt FROM delivery_history WHERE route_id = ? AND date = ?', + [routeId, date], + ); + return rows.first['cnt'] as int; + } + + /// Get delivery stats for a date range. + Future> getDeliveryStats(int routeId, {int days = 30}) async { + final db = await database; + final now = DateTime.now(); + final startDate = now.subtract(Duration(days: days)); + final startStr = + '${startDate.year}-${startDate.month.toString().padLeft(2, '0')}-${startDate.day.toString().padLeft(2, '0')}'; + + // Get total stops for this route + final totalRows = await db.rawQuery( + 'SELECT COUNT(*) as cnt FROM stops WHERE route_id = ?', + [routeId], + ); + final totalStops = totalRows.first['cnt'] as int; + + final rows = await db.rawQuery( + '''SELECT date, COUNT(*) as cnt + FROM delivery_history + WHERE route_id = ? AND date >= ? + GROUP BY date + ORDER BY date DESC''', + [routeId, startStr], + ); + + return rows + .map((r) => DailyStats( + date: r['date'] as String, + deliveredCount: r['cnt'] as int, + totalCount: totalStops, + )) + .toList(); + } + + /// Get total deliveries ever for a route. + Future getTotalDeliveries(int routeId) async { + final db = await database; + final rows = await db.rawQuery( + 'SELECT COUNT(*) as cnt FROM delivery_history WHERE route_id = ?', + [routeId], + ); + return rows.first['cnt'] as int; + } + + /// Get delivery count for current week (Mon-Sun). + Future getWeeklyDeliveryCount(int routeId) async { + final db = await database; + final now = DateTime.now(); + // Find Monday of this week + final monday = now.subtract(Duration(days: now.weekday - 1)); + final mondayStr = + '${monday.year}-${monday.month.toString().padLeft(2, '0')}-${monday.day.toString().padLeft(2, '0')}'; + + final rows = await db.rawQuery( + 'SELECT COUNT(*) as cnt FROM delivery_history WHERE route_id = ? AND date >= ?', + [routeId, mondayStr], + ); + return rows.first['cnt'] as int; + } + + Future close() async { + final db = _database; + if (db != null && db.isOpen) { + await db.close(); + _database = null; + } + } +} diff --git a/lib/services/geocoding.dart b/lib/services/geocoding.dart new file mode 100644 index 0000000..ef8d6c2 --- /dev/null +++ b/lib/services/geocoding.dart @@ -0,0 +1,117 @@ +import 'dart:convert'; +import 'package:flutter/services.dart' show rootBundle; +import 'package:http/http.dart' as http; +import 'package:latlong2/latlong.dart'; +import '../hoogerheide_streets.dart'; + +class GeocodingService { + static final GeocodingService _instance = GeocodingService._internal(); + factory GeocodingService() => _instance; + GeocodingService._internal(); + + static const _nominatimBaseUrl = 'https://nominatim.openstreetmap.org'; + static const _userAgent = 'DeliveryApp/1.0 (delivery-app-openclaw@users.noreply.github.com)'; + + Map? _addressCache; + + String _normalize(String name) => + name.replaceAll(RegExp(r'[–—]'), ' ').replaceAll(RegExp(r'\s+'), ' ').trim().toLowerCase(); + + Future> _loadAddressCache() async { + if (_addressCache != null) return _addressCache!; + try { + final jsonStr = await rootBundle.loadString('assets/hoogerheide_addresses.json'); + _addressCache = jsonDecode(jsonStr); + return _addressCache!; + } catch (_) { + return {'addresses': []}; + } + } + + /// Geocode a street + house number to LatLng. + /// Priority: local JSON cache → Nominatim → hoogerheide_streets.dart → default + Future geocode(String street, String houseNum) async { + final ns = _normalize(street); + final hn = houseNum.trim(); + + // 1. Local address cache (fast, no rate limits) + try { + final cache = await _loadAddressCache(); + final addresses = cache['addresses'] as List? ?? []; + for (final addr in addresses) { + final addrStreet = (addr['street'] as String).toLowerCase(); + final addrNum = addr['housenumber'] as String; + if (addrStreet == ns && addrNum == hn) { + return LatLng(addr['lat'] as double, addr['lon'] as double); + } + } + } catch (_) {} + + // 2. Nominatim API + try { + final query = Uri.encodeComponent('$street $houseNum, Hoogerheide, Netherlands'); + final url = '$_nominatimBaseUrl/search?format=jsonv2&q=$query&limit=1'; + final resp = await http.get( + Uri.parse(url), + headers: {'User-Agent': _userAgent}, + ).timeout(const Duration(seconds: 5)); + + if (resp.statusCode == 200) { + final data = jsonDecode(resp.body); + if (data is List && data.isNotEmpty) { + return LatLng( + double.parse(data[0]['lat']), + double.parse(data[0]['lon']), + ); + } + } + } catch (_) {} + + // 3. hoogerheide_streets.dart lookup (exact then partial match) + final streetResult = _lookupInStreets(street); + if (streetResult != null) { + // Offset by house number to spread markers along the street + final hnInt = int.tryParse(houseNum.replaceAll(RegExp(r'[A-Za-z]'), '')) ?? 1; + return LatLng( + streetResult.latitude + (hnInt - 1) * 0.00015, + streetResult.longitude + ((hnInt / 25).floor() % 2 == 0 ? 0 : 0.0002), + ); + } + + // 4. Default to Hoogerheide center + return const LatLng(51.4243390, 4.3238380); + } + + LatLng? _lookupInStreets(String street) { + final ns = _normalize(street); + + // Exact match + for (final entry in HoogerheideStreets.streetCoords.entries) { + if (_normalize(entry.key) == ns) { + return LatLng(entry.value[0], entry.value[1]); + } + } + + // Partial match + for (final entry in HoogerheideStreets.streetCoords.entries) { + final ek = _normalize(entry.key); + if (ns.contains(ek) || ek.contains(ns)) { + return LatLng(entry.value[0], entry.value[1]); + } + } + return null; + } + + /// Batch-geocode a list of stops, updating coords only when they changed. + Future> geocodeStops(List<(String street, String houseNum)> addresses) async { + final results = []; + for (final (street, houseNum) in addresses) { + try { + results.add(await geocode(street, houseNum)); + } catch (_) { + results.add(null); + } + } + return results; + } +} diff --git a/lib/services/gpx_export.dart b/lib/services/gpx_export.dart new file mode 100644 index 0000000..759e1a6 --- /dev/null +++ b/lib/services/gpx_export.dart @@ -0,0 +1,75 @@ +import 'dart:io'; +import 'package:latlong2/latlong.dart'; +import 'package:path_provider/path_provider.dart'; +import '../models/stop.dart'; + +class GpxExportService { + /// Export route stops as GPX file with waypoints and optional track. + /// Returns the file path of the saved GPX file. + static Future exportRoute({ + required String routeName, + required List stops, + List? trackPoints, + }) async { + final buffer = StringBuffer(); + + buffer.writeln(''); + buffer.writeln( + ''); + buffer.writeln(' '); + buffer.writeln(' ${_escapeXml(routeName)}'); + buffer.writeln(' '); + buffer.writeln(' '); + + // Waypoints + for (final stop in stops) { + buffer.writeln(' '); + buffer.writeln(' ${_escapeXml(stop.street)} ${_escapeXml(stop.houseNumber)}'); + if (stop.newspapers.isNotEmpty) { + buffer.writeln(' ${_escapeXml(stop.newspapers.join(', '))}'); + } + if (stop.notes.isNotEmpty) { + buffer.writeln(' ${_escapeXml(stop.notes)}'); + } + buffer.writeln(' '); + } + + // Track (if route points available) + if (trackPoints != null && trackPoints.isNotEmpty) { + buffer.writeln(' '); + buffer.writeln(' ${_escapeXml(routeName)} - Route'); + buffer.writeln(' '); + for (final point in trackPoints) { + buffer.writeln( + ' '); + } + buffer.writeln(' '); + buffer.writeln(' '); + } + + buffer.writeln(''); + + // Save to file + final directory = await getApplicationDocumentsDirectory(); + final sanitized = routeName.replaceAll(RegExp(r'[^\w\s-]'), '').replaceAll(' ', '_'); + final fileName = 'route_${sanitized}_${_dateStamp()}.gpx'; + final file = File('${directory.path}/$fileName'); + await file.writeAsString(buffer.toString()); + + return file.path; + } + + static String _escapeXml(String text) { + return text + .replaceAll('&', '&') + .replaceAll('<', '<') + .replaceAll('>', '>') + .replaceAll('"', '"') + .replaceAll("'", '''); + } + + static String _dateStamp() { + final now = DateTime.now(); + return '${now.year}${now.month.toString().padLeft(2, '0')}${now.day.toString().padLeft(2, '0')}_${now.hour.toString().padLeft(2, '0')}${now.minute.toString().padLeft(2, '0')}'; + } +} diff --git a/lib/services/routing.dart b/lib/services/routing.dart new file mode 100644 index 0000000..06fe5c8 --- /dev/null +++ b/lib/services/routing.dart @@ -0,0 +1,144 @@ +import 'dart:convert'; +import 'dart:math' as math; +import 'package:http/http.dart' as http; +import 'package:latlong2/latlong.dart'; +import '../models/stop.dart'; + +class RoutingService { + static final RoutingService _instance = RoutingService._internal(); + factory RoutingService() => _instance; + RoutingService._internal(); + + static const _osrmBaseUrl = 'https://router.project-osrm.org'; + + /// Fetch driving route through all stops via OSRM. + /// Returns list of polyline points, or null on failure. + Future?> fetchRoute(List stops) async { + if (stops.length < 2) return null; + + final coords = stops.map((s) => '${s.lng},${s.lat}').join(';'); + final url = '$_osrmBaseUrl/route/v1/driving/$coords?overview=full&geometries=polyline'; + + try { + final resp = await http.get(Uri.parse(url)).timeout(const Duration(seconds: 10)); + if (resp.statusCode == 200) { + final data = jsonDecode(resp.body); + if (data['code'] == 'Ok') { + final routes = data['routes'] as List; + if (routes.isNotEmpty) { + final geometry = routes[0]['geometry'] as String; + return decodePolyline(geometry); + } + } + } + } catch (_) { + // Network error — caller should fall back + } + return null; + } + + /// Optimize stop order using OSRM Trip (TSP solver). + /// Returns optimized stops list, or null on failure. + Future?> optimizeRoute(List stops) async { + if (stops.length < 2) return null; + + final coords = stops.map((s) => '${s.lng},${s.lat}').join(';'); + final url = '$_osrmBaseUrl/trip/v1/driving/$coords?overview=full&geometries=polyline'; + + try { + final resp = await http.get(Uri.parse(url)).timeout(const Duration(seconds: 10)); + if (resp.statusCode == 200) { + final data = jsonDecode(resp.body); + if (data['code'] == 'Ok') { + final waypoints = data['waypoints'] as List; + final optimizedOrder = waypoints.map((w) => w['waypoint_index'] as int).toList(); + + final optimizedStops = []; + for (var i = 0; i < optimizedOrder.length; i++) { + final stop = stops[optimizedOrder[i]]; + optimizedStops.add(stop.copyWith(sequence: i)); + } + return optimizedStops; + } + } + } catch (_) { + // Network error — caller should fall back + } + return null; + } + + /// Nearest-neighbor TSP heuristic as local fallback. + static List optimizeLocally(List route) { + if (route.length <= 2) return route; + + final opt = []; + final rem = [...route]; + var cur = rem.removeAt(0); + opt.add(cur); + + while (rem.isNotEmpty) { + var nearestIdx = 0; + var nearestDist = double.infinity; + for (var i = 0; i < rem.length; i++) { + final d = haversine(cur.lat, cur.lng, rem[i].lat, rem[i].lng); + if (d < nearestDist) { + nearestDist = d; + nearestIdx = i; + } + } + cur = rem.removeAt(nearestIdx); + opt.add(cur); + } + + return opt.asMap().entries.map((e) => e.value.copyWith(sequence: e.key)).toList(); + } + + /// Haversine distance in kilometers using dart:math. + static double haversine(double lat1, double lng1, double lat2, double lng2) { + const earthRadius = 6371.0; // km + final dLat = _degToRad(lat2 - lat1); + final dLng = _degToRad(lng2 - lng1); + final a = math.sin(dLat / 2) * math.sin(dLat / 2) + + math.cos(_degToRad(lat1)) * math.cos(_degToRad(lat2)) * + math.sin(dLng / 2) * math.sin(dLng / 2); + final c = 2 * math.atan2(math.sqrt(a), math.sqrt(1 - a)); + return earthRadius * c; + } + + static double _degToRad(double deg) => deg * math.pi / 180.0; + + /// Decode OSRM-encoded polyline string to list of LatLng. + static List decodePolyline(String encoded) { + final points = []; + var index = 0; + final len = encoded.length; + var lat = 0; + var lng = 0; + + while (index < len) { + var b = 0; + var shift = 0; + var result = 0; + do { + b = encoded.codeUnitAt(index++) - 63; + result |= (b & 0x1f) << shift; + shift += 5; + } while (b >= 0x20); + final dlat = (result & 1) != 0 ? ~(result >> 1) : (result >> 1); + lat += dlat; + + shift = 0; + result = 0; + do { + b = encoded.codeUnitAt(index++) - 63; + result |= (b & 0x1f) << shift; + shift += 5; + } while (b >= 0x20); + final dlng = (result & 1) != 0 ? ~(result >> 1) : (result >> 1); + lng += dlng; + + points.add(LatLng(lat / 1e6, lng / 1e6)); + } + return points; + } +} diff --git a/linux/.gitignore b/linux/.gitignore new file mode 100644 index 0000000..d3896c9 --- /dev/null +++ b/linux/.gitignore @@ -0,0 +1 @@ +flutter/ephemeral diff --git a/linux/CMakeLists.txt b/linux/CMakeLists.txt new file mode 100644 index 0000000..7b584d6 --- /dev/null +++ b/linux/CMakeLists.txt @@ -0,0 +1,128 @@ +# Project-level configuration. +cmake_minimum_required(VERSION 3.13) +project(runner LANGUAGES CXX) + +# The name of the executable created for the application. Change this to change +# the on-disk name of your application. +set(BINARY_NAME "delivery_app") +# The unique GTK application identifier for this application. See: +# https://wiki.gnome.org/HowDoI/ChooseApplicationID +set(APPLICATION_ID "com.example.delivery_app") + +# Explicitly opt in to modern CMake behaviors to avoid warnings with recent +# versions of CMake. +cmake_policy(SET CMP0063 NEW) + +# Load bundled libraries from the lib/ directory relative to the binary. +set(CMAKE_INSTALL_RPATH "$ORIGIN/lib") + +# Root filesystem for cross-building. +if(FLUTTER_TARGET_PLATFORM_SYSROOT) + set(CMAKE_SYSROOT ${FLUTTER_TARGET_PLATFORM_SYSROOT}) + set(CMAKE_FIND_ROOT_PATH ${CMAKE_SYSROOT}) + set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) + set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) + set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) + set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) +endif() + +# Define build configuration options. +if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + set(CMAKE_BUILD_TYPE "Debug" CACHE + STRING "Flutter build mode" FORCE) + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS + "Debug" "Profile" "Release") +endif() + +# Compilation settings that should be applied to most targets. +# +# Be cautious about adding new options here, as plugins use this function by +# default. In most cases, you should add new options to specific targets instead +# of modifying this function. +function(APPLY_STANDARD_SETTINGS TARGET) + target_compile_features(${TARGET} PUBLIC cxx_std_14) + target_compile_options(${TARGET} PRIVATE -Wall -Werror) + target_compile_options(${TARGET} PRIVATE "$<$>:-O3>") + target_compile_definitions(${TARGET} PRIVATE "$<$>:NDEBUG>") +endfunction() + +# Flutter library and tool build rules. +set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") +add_subdirectory(${FLUTTER_MANAGED_DIR}) + +# System-level dependencies. +find_package(PkgConfig REQUIRED) +pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) + +# Application build; see runner/CMakeLists.txt. +add_subdirectory("runner") + +# Run the Flutter tool portions of the build. This must not be removed. +add_dependencies(${BINARY_NAME} flutter_assemble) + +# Only the install-generated bundle's copy of the executable will launch +# correctly, since the resources must in the right relative locations. To avoid +# people trying to run the unbundled copy, put it in a subdirectory instead of +# the default top-level location. +set_target_properties(${BINARY_NAME} + PROPERTIES + RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run" +) + + +# Generated plugin build rules, which manage building the plugins and adding +# them to the application. +include(flutter/generated_plugins.cmake) + + +# === Installation === +# By default, "installing" just makes a relocatable bundle in the build +# directory. +set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle") +if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) +endif() + +# Start with a clean build bundle directory every time. +install(CODE " + file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\") + " COMPONENT Runtime) + +set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") +set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib") + +install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +foreach(bundled_library ${PLUGIN_BUNDLED_LIBRARIES}) + install(FILES "${bundled_library}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endforeach(bundled_library) + +# Copy the native assets provided by the build.dart from all packages. +set(NATIVE_ASSETS_DIR "${PROJECT_BUILD_DIR}native_assets/linux/") +install(DIRECTORY "${NATIVE_ASSETS_DIR}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +# Fully re-copy the assets directory on each build to avoid having stale files +# from a previous install. +set(FLUTTER_ASSET_DIR_NAME "flutter_assets") +install(CODE " + file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") + " COMPONENT Runtime) +install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" + DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) + +# Install the AOT library on non-Debug builds only. +if(NOT CMAKE_BUILD_TYPE MATCHES "Debug") + install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endif() diff --git a/linux/flutter/CMakeLists.txt b/linux/flutter/CMakeLists.txt new file mode 100644 index 0000000..d5bd016 --- /dev/null +++ b/linux/flutter/CMakeLists.txt @@ -0,0 +1,88 @@ +# This file controls Flutter-level build steps. It should not be edited. +cmake_minimum_required(VERSION 3.10) + +set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") + +# Configuration provided via flutter tool. +include(${EPHEMERAL_DIR}/generated_config.cmake) + +# TODO: Move the rest of this into files in ephemeral. See +# https://github.com/flutter/flutter/issues/57146. + +# Serves the same purpose as list(TRANSFORM ... PREPEND ...), +# which isn't available in 3.10. +function(list_prepend LIST_NAME PREFIX) + set(NEW_LIST "") + foreach(element ${${LIST_NAME}}) + list(APPEND NEW_LIST "${PREFIX}${element}") + endforeach(element) + set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE) +endfunction() + +# === Flutter Library === +# System-level dependencies. +find_package(PkgConfig REQUIRED) +pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) +pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET glib-2.0) +pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0) + +set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_linux_gtk.so") + +# Published to parent scope for install step. +set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) +set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) +set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) +set(AOT_LIBRARY "${PROJECT_DIR}/build/lib/libapp.so" PARENT_SCOPE) + +list(APPEND FLUTTER_LIBRARY_HEADERS + "fl_basic_message_channel.h" + "fl_binary_codec.h" + "fl_binary_messenger.h" + "fl_dart_project.h" + "fl_engine.h" + "fl_json_message_codec.h" + "fl_json_method_codec.h" + "fl_message_codec.h" + "fl_method_call.h" + "fl_method_channel.h" + "fl_method_codec.h" + "fl_method_response.h" + "fl_plugin_registrar.h" + "fl_plugin_registry.h" + "fl_standard_message_codec.h" + "fl_standard_method_codec.h" + "fl_string_codec.h" + "fl_value.h" + "fl_view.h" + "flutter_linux.h" +) +list_prepend(FLUTTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/flutter_linux/") +add_library(flutter INTERFACE) +target_include_directories(flutter INTERFACE + "${EPHEMERAL_DIR}" +) +target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}") +target_link_libraries(flutter INTERFACE + PkgConfig::GTK + PkgConfig::GLIB + PkgConfig::GIO +) +add_dependencies(flutter flutter_assemble) + +# === Flutter tool backend === +# _phony_ is a non-existent file to force this command to run every time, +# since currently there's no way to get a full input/output list from the +# flutter tool. +add_custom_command( + OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} + ${CMAKE_CURRENT_BINARY_DIR}/_phony_ + COMMAND ${CMAKE_COMMAND} -E env + ${FLUTTER_TOOL_ENVIRONMENT} + "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh" + ${FLUTTER_TARGET_PLATFORM} ${CMAKE_BUILD_TYPE} + VERBATIM +) +add_custom_target(flutter_assemble DEPENDS + "${FLUTTER_LIBRARY}" + ${FLUTTER_LIBRARY_HEADERS} +) diff --git a/linux/flutter/generated_plugin_registrant.cc b/linux/flutter/generated_plugin_registrant.cc new file mode 100644 index 0000000..e71a16d --- /dev/null +++ b/linux/flutter/generated_plugin_registrant.cc @@ -0,0 +1,11 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#include "generated_plugin_registrant.h" + + +void fl_register_plugins(FlPluginRegistry* registry) { +} diff --git a/linux/flutter/generated_plugin_registrant.h b/linux/flutter/generated_plugin_registrant.h new file mode 100644 index 0000000..e0f0a47 --- /dev/null +++ b/linux/flutter/generated_plugin_registrant.h @@ -0,0 +1,15 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#ifndef GENERATED_PLUGIN_REGISTRANT_ +#define GENERATED_PLUGIN_REGISTRANT_ + +#include + +// Registers Flutter plugins. +void fl_register_plugins(FlPluginRegistry* registry); + +#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/linux/flutter/generated_plugins.cmake b/linux/flutter/generated_plugins.cmake new file mode 100644 index 0000000..be1ee3e --- /dev/null +++ b/linux/flutter/generated_plugins.cmake @@ -0,0 +1,24 @@ +# +# Generated file, do not edit. +# + +list(APPEND FLUTTER_PLUGIN_LIST +) + +list(APPEND FLUTTER_FFI_PLUGIN_LIST + jni +) + +set(PLUGIN_BUNDLED_LIBRARIES) + +foreach(plugin ${FLUTTER_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin}) + target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) + list(APPEND PLUGIN_BUNDLED_LIBRARIES $) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) +endforeach(plugin) + +foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin}) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) +endforeach(ffi_plugin) diff --git a/linux/runner/CMakeLists.txt b/linux/runner/CMakeLists.txt new file mode 100644 index 0000000..e97dabc --- /dev/null +++ b/linux/runner/CMakeLists.txt @@ -0,0 +1,26 @@ +cmake_minimum_required(VERSION 3.13) +project(runner LANGUAGES CXX) + +# Define the application target. To change its name, change BINARY_NAME in the +# top-level CMakeLists.txt, not the value here, or `flutter run` will no longer +# work. +# +# Any new source files that you add to the application should be added here. +add_executable(${BINARY_NAME} + "main.cc" + "my_application.cc" + "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" +) + +# Apply the standard set of build settings. This can be removed for applications +# that need different build settings. +apply_standard_settings(${BINARY_NAME}) + +# Add preprocessor definitions for the application ID. +add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}") + +# Add dependency libraries. Add any application-specific dependencies here. +target_link_libraries(${BINARY_NAME} PRIVATE flutter) +target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK) + +target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") diff --git a/linux/runner/main.cc b/linux/runner/main.cc new file mode 100644 index 0000000..e7c5c54 --- /dev/null +++ b/linux/runner/main.cc @@ -0,0 +1,6 @@ +#include "my_application.h" + +int main(int argc, char** argv) { + g_autoptr(MyApplication) app = my_application_new(); + return g_application_run(G_APPLICATION(app), argc, argv); +} diff --git a/linux/runner/my_application.cc b/linux/runner/my_application.cc new file mode 100644 index 0000000..70a083f --- /dev/null +++ b/linux/runner/my_application.cc @@ -0,0 +1,148 @@ +#include "my_application.h" + +#include +#ifdef GDK_WINDOWING_X11 +#include +#endif + +#include "flutter/generated_plugin_registrant.h" + +struct _MyApplication { + GtkApplication parent_instance; + char** dart_entrypoint_arguments; +}; + +G_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION) + +// Called when first Flutter frame received. +static void first_frame_cb(MyApplication* self, FlView* view) { + gtk_widget_show(gtk_widget_get_toplevel(GTK_WIDGET(view))); +} + +// Implements GApplication::activate. +static void my_application_activate(GApplication* application) { + MyApplication* self = MY_APPLICATION(application); + GtkWindow* window = + GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application))); + + // Use a header bar when running in GNOME as this is the common style used + // by applications and is the setup most users will be using (e.g. Ubuntu + // desktop). + // If running on X and not using GNOME then just use a traditional title bar + // in case the window manager does more exotic layout, e.g. tiling. + // If running on Wayland assume the header bar will work (may need changing + // if future cases occur). + gboolean use_header_bar = TRUE; +#ifdef GDK_WINDOWING_X11 + GdkScreen* screen = gtk_window_get_screen(window); + if (GDK_IS_X11_SCREEN(screen)) { + const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen); + if (g_strcmp0(wm_name, "GNOME Shell") != 0) { + use_header_bar = FALSE; + } + } +#endif + if (use_header_bar) { + GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new()); + gtk_widget_show(GTK_WIDGET(header_bar)); + gtk_header_bar_set_title(header_bar, "delivery_app"); + gtk_header_bar_set_show_close_button(header_bar, TRUE); + gtk_window_set_titlebar(window, GTK_WIDGET(header_bar)); + } else { + gtk_window_set_title(window, "delivery_app"); + } + + gtk_window_set_default_size(window, 1280, 720); + + g_autoptr(FlDartProject) project = fl_dart_project_new(); + fl_dart_project_set_dart_entrypoint_arguments( + project, self->dart_entrypoint_arguments); + + FlView* view = fl_view_new(project); + GdkRGBA background_color; + // Background defaults to black, override it here if necessary, e.g. #00000000 + // for transparent. + gdk_rgba_parse(&background_color, "#000000"); + fl_view_set_background_color(view, &background_color); + gtk_widget_show(GTK_WIDGET(view)); + gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view)); + + // Show the window when Flutter renders. + // Requires the view to be realized so we can start rendering. + g_signal_connect_swapped(view, "first-frame", G_CALLBACK(first_frame_cb), + self); + gtk_widget_realize(GTK_WIDGET(view)); + + fl_register_plugins(FL_PLUGIN_REGISTRY(view)); + + gtk_widget_grab_focus(GTK_WIDGET(view)); +} + +// Implements GApplication::local_command_line. +static gboolean my_application_local_command_line(GApplication* application, + gchar*** arguments, + int* exit_status) { + MyApplication* self = MY_APPLICATION(application); + // Strip out the first argument as it is the binary name. + self->dart_entrypoint_arguments = g_strdupv(*arguments + 1); + + g_autoptr(GError) error = nullptr; + if (!g_application_register(application, nullptr, &error)) { + g_warning("Failed to register: %s", error->message); + *exit_status = 1; + return TRUE; + } + + g_application_activate(application); + *exit_status = 0; + + return TRUE; +} + +// Implements GApplication::startup. +static void my_application_startup(GApplication* application) { + // MyApplication* self = MY_APPLICATION(object); + + // Perform any actions required at application startup. + + G_APPLICATION_CLASS(my_application_parent_class)->startup(application); +} + +// Implements GApplication::shutdown. +static void my_application_shutdown(GApplication* application) { + // MyApplication* self = MY_APPLICATION(object); + + // Perform any actions required at application shutdown. + + G_APPLICATION_CLASS(my_application_parent_class)->shutdown(application); +} + +// Implements GObject::dispose. +static void my_application_dispose(GObject* object) { + MyApplication* self = MY_APPLICATION(object); + g_clear_pointer(&self->dart_entrypoint_arguments, g_strfreev); + G_OBJECT_CLASS(my_application_parent_class)->dispose(object); +} + +static void my_application_class_init(MyApplicationClass* klass) { + G_APPLICATION_CLASS(klass)->activate = my_application_activate; + G_APPLICATION_CLASS(klass)->local_command_line = + my_application_local_command_line; + G_APPLICATION_CLASS(klass)->startup = my_application_startup; + G_APPLICATION_CLASS(klass)->shutdown = my_application_shutdown; + G_OBJECT_CLASS(klass)->dispose = my_application_dispose; +} + +static void my_application_init(MyApplication* self) {} + +MyApplication* my_application_new() { + // Set the program name to the application ID, which helps various systems + // like GTK and desktop environments map this running application to its + // corresponding .desktop file. This ensures better integration by allowing + // the application to be recognized beyond its binary name. + g_set_prgname(APPLICATION_ID); + + return MY_APPLICATION(g_object_new(my_application_get_type(), + "application-id", APPLICATION_ID, "flags", + G_APPLICATION_NON_UNIQUE, nullptr)); +} diff --git a/linux/runner/my_application.h b/linux/runner/my_application.h new file mode 100644 index 0000000..db16367 --- /dev/null +++ b/linux/runner/my_application.h @@ -0,0 +1,21 @@ +#ifndef FLUTTER_MY_APPLICATION_H_ +#define FLUTTER_MY_APPLICATION_H_ + +#include + +G_DECLARE_FINAL_TYPE(MyApplication, + my_application, + MY, + APPLICATION, + GtkApplication) + +/** + * my_application_new: + * + * Creates a new Flutter-based application. + * + * Returns: a new #MyApplication. + */ +MyApplication* my_application_new(); + +#endif // FLUTTER_MY_APPLICATION_H_ diff --git a/macos/.gitignore b/macos/.gitignore new file mode 100644 index 0000000..746adbb --- /dev/null +++ b/macos/.gitignore @@ -0,0 +1,7 @@ +# Flutter-related +**/Flutter/ephemeral/ +**/Pods/ + +# Xcode-related +**/dgph +**/xcuserdata/ diff --git a/macos/Flutter/Flutter-Debug.xcconfig b/macos/Flutter/Flutter-Debug.xcconfig new file mode 100644 index 0000000..c2efd0b --- /dev/null +++ b/macos/Flutter/Flutter-Debug.xcconfig @@ -0,0 +1 @@ +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/macos/Flutter/Flutter-Release.xcconfig b/macos/Flutter/Flutter-Release.xcconfig new file mode 100644 index 0000000..c2efd0b --- /dev/null +++ b/macos/Flutter/Flutter-Release.xcconfig @@ -0,0 +1 @@ +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/macos/Flutter/GeneratedPluginRegistrant.swift b/macos/Flutter/GeneratedPluginRegistrant.swift new file mode 100644 index 0000000..bd36085 --- /dev/null +++ b/macos/Flutter/GeneratedPluginRegistrant.swift @@ -0,0 +1,14 @@ +// +// Generated file. Do not edit. +// + +import FlutterMacOS +import Foundation + +import geolocator_apple +import sqflite_darwin + +func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { + GeolocatorPlugin.register(with: registry.registrar(forPlugin: "GeolocatorPlugin")) + SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin")) +} diff --git a/macos/Runner.xcodeproj/project.pbxproj b/macos/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..8ccf95c --- /dev/null +++ b/macos/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,705 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXAggregateTarget section */ + 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */; + buildPhases = ( + 33CC111E2044C6BF0003C045 /* ShellScript */, + ); + dependencies = ( + ); + name = "Flutter Assemble"; + productName = FLX; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; }; + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; }; + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; }; + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; }; + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; }; + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 33CC10E52044A3C60003C045 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33CC10EC2044A3C60003C045; + remoteInfo = Runner; + }; + 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 33CC10E52044A3C60003C045 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33CC111A2044C6BA0003C045; + remoteInfo = FLX; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 33CC110E2044A8840003C045 /* Bundle Framework */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Bundle Framework"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; }; + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; }; + 33CC10ED2044A3C60003C045 /* delivery_app.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "delivery_app.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; }; + 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; }; + 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = ""; }; + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = ""; }; + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = ""; }; + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = ""; }; + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = ""; }; + 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; }; + 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; }; + 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 331C80D2294CF70F00263BE5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10EA2044A3C60003C045 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 331C80D6294CF71000263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C80D7294CF71000263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 33BA886A226E78AF003329D5 /* Configs */ = { + isa = PBXGroup; + children = ( + 33E5194F232828860026EE4D /* AppInfo.xcconfig */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */, + ); + path = Configs; + sourceTree = ""; + }; + 33CC10E42044A3C60003C045 = { + isa = PBXGroup; + children = ( + 33FAB671232836740065AC1E /* Runner */, + 33CEB47122A05771004F2AC0 /* Flutter */, + 331C80D6294CF71000263BE5 /* RunnerTests */, + 33CC10EE2044A3C60003C045 /* Products */, + D73912EC22F37F3D000D13A0 /* Frameworks */, + ); + sourceTree = ""; + }; + 33CC10EE2044A3C60003C045 /* Products */ = { + isa = PBXGroup; + children = ( + 33CC10ED2044A3C60003C045 /* delivery_app.app */, + 331C80D5294CF71000263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 33CC11242044D66E0003C045 /* Resources */ = { + isa = PBXGroup; + children = ( + 33CC10F22044A3C60003C045 /* Assets.xcassets */, + 33CC10F42044A3C60003C045 /* MainMenu.xib */, + 33CC10F72044A3C60003C045 /* Info.plist */, + ); + name = Resources; + path = ..; + sourceTree = ""; + }; + 33CEB47122A05771004F2AC0 /* Flutter */ = { + isa = PBXGroup; + children = ( + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */, + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */, + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */, + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */, + ); + path = Flutter; + sourceTree = ""; + }; + 33FAB671232836740065AC1E /* Runner */ = { + isa = PBXGroup; + children = ( + 33CC10F02044A3C60003C045 /* AppDelegate.swift */, + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */, + 33E51913231747F40026EE4D /* DebugProfile.entitlements */, + 33E51914231749380026EE4D /* Release.entitlements */, + 33CC11242044D66E0003C045 /* Resources */, + 33BA886A226E78AF003329D5 /* Configs */, + ); + path = Runner; + sourceTree = ""; + }; + D73912EC22F37F3D000D13A0 /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C80D4294CF70F00263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + 331C80D1294CF70F00263BE5 /* Sources */, + 331C80D2294CF70F00263BE5 /* Frameworks */, + 331C80D3294CF70F00263BE5 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 331C80DA294CF71000263BE5 /* PBXTargetDependency */, + ); + name = RunnerTests; + productName = RunnerTests; + productReference = 331C80D5294CF71000263BE5 /* RunnerTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 33CC10EC2044A3C60003C045 /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 33CC10E92044A3C60003C045 /* Sources */, + 33CC10EA2044A3C60003C045 /* Frameworks */, + 33CC10EB2044A3C60003C045 /* Resources */, + 33CC110E2044A8840003C045 /* Bundle Framework */, + 3399D490228B24CF009A79C7 /* ShellScript */, + ); + buildRules = ( + ); + dependencies = ( + 33CC11202044C79F0003C045 /* PBXTargetDependency */, + ); + name = Runner; + productName = Runner; + productReference = 33CC10ED2044A3C60003C045 /* delivery_app.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 33CC10E52044A3C60003C045 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastSwiftUpdateCheck = 0920; + LastUpgradeCheck = 1510; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C80D4294CF70F00263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 33CC10EC2044A3C60003C045; + }; + 33CC10EC2044A3C60003C045 = { + CreatedOnToolsVersion = 9.2; + LastSwiftMigration = 1100; + ProvisioningStyle = Automatic; + SystemCapabilities = { + com.apple.Sandbox = { + enabled = 1; + }; + }; + }; + 33CC111A2044C6BA0003C045 = { + CreatedOnToolsVersion = 9.2; + ProvisioningStyle = Manual; + }; + }; + }; + buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 33CC10E42044A3C60003C045; + productRefGroup = 33CC10EE2044A3C60003C045 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 33CC10EC2044A3C60003C045 /* Runner */, + 331C80D4294CF70F00263BE5 /* RunnerTests */, + 33CC111A2044C6BA0003C045 /* Flutter Assemble */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C80D3294CF70F00263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10EB2044A3C60003C045 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */, + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3399D490228B24CF009A79C7 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n"; + }; + 33CC111E2044C6BF0003C045 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + Flutter/ephemeral/FlutterInputs.xcfilelist, + ); + inputPaths = ( + Flutter/ephemeral/tripwire, + ); + outputFileListPaths = ( + Flutter/ephemeral/FlutterOutputs.xcfilelist, + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C80D1294CF70F00263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10E92044A3C60003C045 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */, + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */, + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C80DA294CF71000263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 33CC10EC2044A3C60003C045 /* Runner */; + targetProxy = 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */; + }; + 33CC11202044C79F0003C045 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */; + targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 33CC10F42044A3C60003C045 /* MainMenu.xib */ = { + isa = PBXVariantGroup; + children = ( + 33CC10F52044A3C60003C045 /* Base */, + ); + name = MainMenu.xib; + path = Runner; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 331C80DB294CF71000263BE5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.deliveryApp.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/delivery_app.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/delivery_app"; + }; + name = Debug; + }; + 331C80DC294CF71000263BE5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.deliveryApp.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/delivery_app.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/delivery_app"; + }; + name = Release; + }; + 331C80DD294CF71000263BE5 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.deliveryApp.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/delivery_app.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/delivery_app"; + }; + name = Profile; + }; + 338D0CE9231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.15; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Profile; + }; + 338D0CEA231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Profile; + }; + 338D0CEB231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Profile; + }; + 33CC10F92044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.15; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 33CC10FA2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.15; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Release; + }; + 33CC10FC2044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + }; + name = Debug; + }; + 33CC10FD2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Release; + }; + 33CC111C2044C6BA0003C045 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + 33CC111D2044C6BA0003C045 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C80DB294CF71000263BE5 /* Debug */, + 331C80DC294CF71000263BE5 /* Release */, + 331C80DD294CF71000263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10F92044A3C60003C045 /* Debug */, + 33CC10FA2044A3C60003C045 /* Release */, + 338D0CE9231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10FC2044A3C60003C045 /* Debug */, + 33CC10FD2044A3C60003C045 /* Release */, + 338D0CEA231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC111C2044C6BA0003C045 /* Debug */, + 33CC111D2044C6BA0003C045 /* Release */, + 338D0CEB231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 33CC10E52044A3C60003C045 /* Project object */; +} diff --git a/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..b0277be --- /dev/null +++ b/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/macos/Runner.xcworkspace/contents.xcworkspacedata b/macos/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/macos/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/macos/Runner/AppDelegate.swift b/macos/Runner/AppDelegate.swift new file mode 100644 index 0000000..b3c1761 --- /dev/null +++ b/macos/Runner/AppDelegate.swift @@ -0,0 +1,13 @@ +import Cocoa +import FlutterMacOS + +@main +class AppDelegate: FlutterAppDelegate { + override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { + return true + } + + override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool { + return true + } +} diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..a2ec33f --- /dev/null +++ b/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,68 @@ +{ + "images" : [ + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_16.png", + "scale" : "1x" + }, + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "2x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "1x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_64.png", + "scale" : "2x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_128.png", + "scale" : "1x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "2x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "1x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "2x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "1x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_1024.png", + "scale" : "2x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png new file mode 100644 index 0000000000000000000000000000000000000000..82b6f9d9a33e198f5747104729e1fcef999772a5 GIT binary patch literal 102994 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ⅅ8MglG&ER{i5lN315cO?EdHNLrg? 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 z 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 Pe7HEdAEg|=c=LY&YVNkY literal 0 HcmV?d00001 diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png new file mode 100644 index 0000000000000000000000000000000000000000..13b35eba55c6dabc3aac36f33d859266c18fa0d0 GIT binary patch literal 5680 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 literal 0 HcmV?d00001 diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png new file mode 100644 index 0000000000000000000000000000000000000000..0a3f5fa40fb3d1e0710331a48de5d256da3f275d GIT binary patch literal 520 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 literal 0 HcmV?d00001 diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png new file mode 100644 index 0000000000000000000000000000000000000000..2f1632cfddf3d9dade342351e627a0a75609fb46 GIT binary patch literal 2218 zcmV;b2vzrqP)Px#L}ge>W=%~1DgXcg2mk?xX#fNO00031000^Q000001E2u_0{{R30RRC20H6W@ z1ONa40RR91K%fHv1ONa40RR91KmY&$07g+lumAuE6iGxuRCodHTWf3-RTMruyW6Fu zQYeUM04eX6D5c0FCjKKPrco1(K`<0SL=crI{PC3-^hZU0kQie$gh-5!7z6SH6Q0J% zqot*`H1q{R5fHFYS}dje@;kG=v$L0(yY0?wY2%*c?A&{2?!D*x?m71{of2gv!$5|C z3>qG_BW}7K_yUcT3A5C6QD<+{aq?x;MAUyAiJn#Jv8_zZtQ{P zTRzbL3U9!qVuZzS$xKU10KiW~Bgdcv1-!uAhQxf3a7q+dU6lj?yoO4Lq4TUN4}h{N z*fIM=SS8|C2$(T>w$`t@3Tka!(r!7W`x z-isCVgQD^mG-MJ;XtJuK3V{Vy72GQ83KRWsHU?e*wrhKk=ApIYeDqLi;JI1e zuvv}5^Dc=k7F7?nm3nIw$NVmU-+R>> zyqOR$-2SDpJ}Pt;^RkJytDVXNTsu|mI1`~G7yw`EJR?VkGfNdqK9^^8P`JdtTV&tX4CNcV4 z&N06nZa??Fw1AgQOUSE2AmPE@WO(Fvo`%m`cDgiv(fAeRA%3AGXUbsGw{7Q`cY;1BI#ac3iN$$Hw z0LT0;xc%=q)me?Y*$xI@GRAw?+}>=9D+KTk??-HJ4=A>`V&vKFS75@MKdSF1JTq{S zc1!^8?YA|t+uKigaq!sT;Z!&0F2=k7F0PIU;F$leJLaw2UI6FL^w}OG&!;+b%ya1c z1n+6-inU<0VM-Y_s5iTElq)ThyF?StVcebpGI znw#+zLx2@ah{$_2jn+@}(zJZ{+}_N9BM;z)0yr|gF-4=Iyu@hI*Lk=-A8f#bAzc9f z`Kd6K--x@t04swJVC3JK1cHY-Hq+=|PN-VO;?^_C#;coU6TDP7Bt`;{JTG;!+jj(` zw5cLQ-(Cz-Tlb`A^w7|R56Ce;Wmr0)$KWOUZ6ai0PhzPeHwdl0H(etP zUV`va_i0s-4#DkNM8lUlqI7>YQLf)(lz9Q3Uw`)nc(z3{m5ZE77Ul$V%m)E}3&8L0 z-XaU|eB~Is08eORPk;=<>!1w)Kf}FOVS2l&9~A+@R#koFJ$Czd%Y(ENTV&A~U(IPI z;UY+gf+&6ioZ=roly<0Yst8ck>(M=S?B-ys3mLdM&)ex!hbt+ol|T6CTS+Sc0jv(& z7ijdvFwBq;0a{%3GGwkDKTeG`b+lyj0jjS1OMkYnepCdoosNY`*zmBIo*981BU%%U z@~$z0V`OVtIbEx5pa|Tct|Lg#ZQf5OYMUMRD>Wdxm5SAqV2}3!ceE-M2 z@O~lQ0OiKQp}o9I;?uxCgYVV?FH|?Riri*U$Zi_`V2eiA>l zdSm6;SEm6#T+SpcE8Ro_f2AwxzI z44hfe^WE3!h@W3RDyA_H440cpmYkv*)6m1XazTqw%=E5Xv7^@^^T7Q2wxr+Z2kVYr + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/macos/Runner/Configs/AppInfo.xcconfig b/macos/Runner/Configs/AppInfo.xcconfig new file mode 100644 index 0000000..3d79bc6 --- /dev/null +++ b/macos/Runner/Configs/AppInfo.xcconfig @@ -0,0 +1,14 @@ +// Application-level settings for the Runner target. +// +// This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the +// future. If not, the values below would default to using the project name when this becomes a +// 'flutter create' template. + +// The application's name. By default this is also the title of the Flutter window. +PRODUCT_NAME = delivery_app + +// The application's bundle identifier +PRODUCT_BUNDLE_IDENTIFIER = com.example.deliveryApp + +// The copyright displayed in application information +PRODUCT_COPYRIGHT = Copyright © 2026 com.example. All rights reserved. diff --git a/macos/Runner/Configs/Debug.xcconfig b/macos/Runner/Configs/Debug.xcconfig new file mode 100644 index 0000000..36b0fd9 --- /dev/null +++ b/macos/Runner/Configs/Debug.xcconfig @@ -0,0 +1,2 @@ +#include "../../Flutter/Flutter-Debug.xcconfig" +#include "Warnings.xcconfig" diff --git a/macos/Runner/Configs/Release.xcconfig b/macos/Runner/Configs/Release.xcconfig new file mode 100644 index 0000000..dff4f49 --- /dev/null +++ b/macos/Runner/Configs/Release.xcconfig @@ -0,0 +1,2 @@ +#include "../../Flutter/Flutter-Release.xcconfig" +#include "Warnings.xcconfig" diff --git a/macos/Runner/Configs/Warnings.xcconfig b/macos/Runner/Configs/Warnings.xcconfig new file mode 100644 index 0000000..42bcbf4 --- /dev/null +++ b/macos/Runner/Configs/Warnings.xcconfig @@ -0,0 +1,13 @@ +WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings +GCC_WARN_UNDECLARED_SELECTOR = YES +CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES +CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE +CLANG_WARN__DUPLICATE_METHOD_MATCH = YES +CLANG_WARN_PRAGMA_PACK = YES +CLANG_WARN_STRICT_PROTOTYPES = YES +CLANG_WARN_COMMA = YES +GCC_WARN_STRICT_SELECTOR_MATCH = YES +CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES +CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES +GCC_WARN_SHADOW = YES +CLANG_WARN_UNREACHABLE_CODE = YES diff --git a/macos/Runner/DebugProfile.entitlements b/macos/Runner/DebugProfile.entitlements new file mode 100644 index 0000000..dddb8a3 --- /dev/null +++ b/macos/Runner/DebugProfile.entitlements @@ -0,0 +1,12 @@ + + + + + com.apple.security.app-sandbox + + com.apple.security.cs.allow-jit + + com.apple.security.network.server + + + diff --git a/macos/Runner/Info.plist b/macos/Runner/Info.plist new file mode 100644 index 0000000..4789daa --- /dev/null +++ b/macos/Runner/Info.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIconFile + + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSMinimumSystemVersion + $(MACOSX_DEPLOYMENT_TARGET) + NSHumanReadableCopyright + $(PRODUCT_COPYRIGHT) + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + + diff --git a/macos/Runner/MainFlutterWindow.swift b/macos/Runner/MainFlutterWindow.swift new file mode 100644 index 0000000..3cc05eb --- /dev/null +++ b/macos/Runner/MainFlutterWindow.swift @@ -0,0 +1,15 @@ +import Cocoa +import FlutterMacOS + +class MainFlutterWindow: NSWindow { + override func awakeFromNib() { + let flutterViewController = FlutterViewController() + let windowFrame = self.frame + self.contentViewController = flutterViewController + self.setFrame(windowFrame, display: true) + + RegisterGeneratedPlugins(registry: flutterViewController) + + super.awakeFromNib() + } +} diff --git a/macos/Runner/Release.entitlements b/macos/Runner/Release.entitlements new file mode 100644 index 0000000..852fa1a --- /dev/null +++ b/macos/Runner/Release.entitlements @@ -0,0 +1,8 @@ + + + + + com.apple.security.app-sandbox + + + diff --git a/macos/RunnerTests/RunnerTests.swift b/macos/RunnerTests/RunnerTests.swift new file mode 100644 index 0000000..61f3bd1 --- /dev/null +++ b/macos/RunnerTests/RunnerTests.swift @@ -0,0 +1,12 @@ +import Cocoa +import FlutterMacOS +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} diff --git a/pubspec.lock b/pubspec.lock new file mode 100644 index 0000000..9454474 --- /dev/null +++ b/pubspec.lock @@ -0,0 +1,666 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + args: + dependency: transitive + description: + name: args + sha256: d0481093c50b1da8910eb0bb301626d4d8eb7284aa739614d2b394ee09e3ea04 + url: "https://pub.dev" + source: hosted + version: "2.7.0" + async: + dependency: transitive + description: + name: async + sha256: e2eb0491ba5ddb6177742d2da23904574082139b07c1e33b8503b9f46f3e1a37 + url: "https://pub.dev" + source: hosted + version: "2.13.1" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + characters: + dependency: transitive + description: + name: characters + sha256: faf38497bda5ead2a8c7615f4f7939df04333478bf32e4173fcb06d428b5716b + url: "https://pub.dev" + source: hosted + version: "1.4.1" + clock: + dependency: transitive + description: + name: clock + sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b + url: "https://pub.dev" + source: hosted + version: "1.1.2" + code_assets: + dependency: transitive + description: + name: code_assets + sha256: "83ccdaa064c980b5596c35dd64a8d3ecc68620174ab9b90b6343b753aa721687" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + collection: + dependency: transitive + description: + name: collection + sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76" + url: "https://pub.dev" + source: hosted + version: "1.19.1" + crypto: + dependency: transitive + description: + name: crypto + sha256: c8ea0233063ba03258fbcf2ca4d6dadfefe14f02fab57702265467a19f27fadf + url: "https://pub.dev" + source: hosted + version: "3.0.7" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + sha256: "41e005c33bd814be4d3096aff55b1908d419fde52ca656c8c47719ec745873cd" + url: "https://pub.dev" + source: hosted + version: "1.0.9" + dart_earcut: + dependency: transitive + description: + name: dart_earcut + sha256: e485001bfc05dcbc437d7bfb666316182e3522d4c3f9668048e004d0eb2ce43b + url: "https://pub.dev" + source: hosted + version: "1.2.0" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44" + url: "https://pub.dev" + source: hosted + version: "1.3.3" + ffi: + dependency: transitive + description: + name: ffi + sha256: "6d7fd89431262d8f3125e81b50d3847a091d846eafcd4fdb88dd06f36d705a45" + url: "https://pub.dev" + source: hosted + version: "2.2.0" + file: + dependency: transitive + description: + name: file + sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4 + url: "https://pub.dev" + source: hosted + version: "7.0.1" + fixnum: + dependency: transitive + description: + name: fixnum + sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be + url: "https://pub.dev" + source: hosted + version: "1.1.1" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: "5398f14efa795ffb7a33e9b6a08798b26a180edac4ad7db3f231e40f82ce11e1" + url: "https://pub.dev" + source: hosted + version: "5.0.0" + flutter_map: + dependency: "direct main" + description: + name: flutter_map + sha256: "2ecb34619a4be19df6f40c2f8dce1591675b4eff7a6857bd8f533706977385da" + url: "https://pub.dev" + source: hosted + version: "7.0.2" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + flutter_web_plugins: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + geolocator: + dependency: "direct main" + description: + name: geolocator + sha256: f62bcd90459e63210bbf9c35deb6a51c521f992a78de19a1fe5c11704f9530e2 + url: "https://pub.dev" + source: hosted + version: "13.0.4" + geolocator_android: + dependency: transitive + description: + name: geolocator_android + sha256: fcb1760a50d7500deca37c9a666785c047139b5f9ee15aa5469fae7dbbe3170d + url: "https://pub.dev" + source: hosted + version: "4.6.2" + geolocator_apple: + dependency: transitive + description: + name: geolocator_apple + sha256: dbdd8789d5aaf14cf69f74d4925ad1336b4433a6efdf2fce91e8955dc921bf22 + url: "https://pub.dev" + source: hosted + version: "2.3.13" + geolocator_platform_interface: + dependency: transitive + description: + name: geolocator_platform_interface + sha256: "30cb64f0b9adcc0fb36f628b4ebf4f731a2961a0ebd849f4b56200205056fe67" + url: "https://pub.dev" + source: hosted + version: "4.2.6" + geolocator_web: + dependency: transitive + description: + name: geolocator_web + sha256: b1ae9bdfd90f861fde8fd4f209c37b953d65e92823cb73c7dee1fa021b06f172 + url: "https://pub.dev" + source: hosted + version: "4.1.3" + geolocator_windows: + dependency: transitive + description: + name: geolocator_windows + sha256: "175435404d20278ffd220de83c2ca293b73db95eafbdc8131fe8609be1421eb6" + url: "https://pub.dev" + source: hosted + version: "0.2.5" + glob: + dependency: transitive + description: + name: glob + sha256: c3f1ee72c96f8f78935e18aa8cecced9ab132419e8625dc187e1c2408efc20de + url: "https://pub.dev" + source: hosted + version: "2.1.3" + hooks: + dependency: transitive + description: + name: hooks + sha256: "025f060e86d2d4c3c47b56e33caf7f93bf9283340f26d23424ebcfccf34f621e" + url: "https://pub.dev" + source: hosted + version: "1.0.3" + http: + dependency: "direct main" + description: + name: http + sha256: "87721a4a50b19c7f1d49001e51409bddc46303966ce89a65af4f4e6004896412" + url: "https://pub.dev" + source: hosted + version: "1.6.0" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571" + url: "https://pub.dev" + source: hosted + version: "4.1.2" + intl: + dependency: transitive + description: + name: intl + sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5" + url: "https://pub.dev" + source: hosted + version: "0.20.2" + jni: + dependency: transitive + description: + name: jni + sha256: c2230682d5bc2362c1c9e8d3c7f406d9cbba23ab3f2e203a025dd47e0fb2e68f + url: "https://pub.dev" + source: hosted + version: "1.0.0" + jni_flutter: + dependency: transitive + description: + name: jni_flutter + sha256: "8b59e590786050b1cd866677dddaf76b1ade5e7bc751abe04b86e84d379d3ba6" + url: "https://pub.dev" + source: hosted + version: "1.0.1" + latlong2: + dependency: "direct main" + description: + name: latlong2 + sha256: "98227922caf49e6056f91b6c56945ea1c7b166f28ffcd5fb8e72fc0b453cc8fe" + url: "https://pub.dev" + source: hosted + version: "0.9.1" + leak_tracker: + dependency: transitive + description: + name: leak_tracker + sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de" + url: "https://pub.dev" + source: hosted + version: "11.0.2" + leak_tracker_flutter_testing: + dependency: transitive + description: + name: leak_tracker_flutter_testing + sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1" + url: "https://pub.dev" + source: hosted + version: "3.0.10" + leak_tracker_testing: + dependency: transitive + description: + name: leak_tracker_testing + sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1" + url: "https://pub.dev" + source: hosted + version: "3.0.2" + lints: + dependency: transitive + description: + name: lints + sha256: c35bb79562d980e9a453fc715854e1ed39e24e7d0297a880ef54e17f9874a9d7 + url: "https://pub.dev" + source: hosted + version: "5.1.1" + lists: + dependency: transitive + description: + name: lists + sha256: "4ca5c19ae4350de036a7e996cdd1ee39c93ac0a2b840f4915459b7d0a7d4ab27" + url: "https://pub.dev" + source: hosted + version: "1.0.1" + logger: + dependency: transitive + description: + name: logger + sha256: "25aee487596a6257655a1e091ec2ae66bc30e7af663592cc3a27e6591e05035c" + url: "https://pub.dev" + source: hosted + version: "2.7.0" + logging: + dependency: transitive + description: + name: logging + sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61 + url: "https://pub.dev" + source: hosted + version: "1.3.0" + matcher: + dependency: transitive + description: + name: matcher + sha256: dc0b7dc7651697ea4ff3e69ef44b0407ea32c487a39fff6a4004fa585e901861 + url: "https://pub.dev" + source: hosted + version: "0.12.19" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b" + url: "https://pub.dev" + source: hosted + version: "0.13.0" + meta: + dependency: transitive + description: + name: meta + sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394" + url: "https://pub.dev" + source: hosted + version: "1.17.0" + mgrs_dart: + dependency: transitive + description: + name: mgrs_dart + sha256: fb89ae62f05fa0bb90f70c31fc870bcbcfd516c843fb554452ab3396f78586f7 + url: "https://pub.dev" + source: hosted + version: "2.0.0" + native_toolchain_c: + dependency: transitive + description: + name: native_toolchain_c + sha256: "6ba77bb18063eebe9de401f5e6437e95e1438af0a87a3a39084fbd37c90df572" + url: "https://pub.dev" + source: hosted + version: "0.17.6" + nested: + dependency: transitive + description: + name: nested + sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + objective_c: + dependency: transitive + description: + name: objective_c + sha256: "100a1c87616ab6ed41ec263b083c0ef3261ee6cd1dc3b0f35f8ddfa4f996fe52" + url: "https://pub.dev" + source: hosted + version: "9.3.0" + package_config: + dependency: transitive + description: + name: package_config + sha256: f096c55ebb7deb7e384101542bfba8c52696c1b56fca2eb62827989ef2353bbc + url: "https://pub.dev" + source: hosted + version: "2.2.0" + path: + dependency: "direct main" + description: + name: path + sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5" + url: "https://pub.dev" + source: hosted + version: "1.9.1" + path_provider: + dependency: "direct main" + description: + name: path_provider + sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd" + url: "https://pub.dev" + source: hosted + version: "2.1.5" + path_provider_android: + dependency: transitive + description: + name: path_provider_android + sha256: "69cbd515a62b94d32a7944f086b2f82b4ac40a1d45bebfc00813a430ab2dabcd" + url: "https://pub.dev" + source: hosted + version: "2.3.1" + path_provider_foundation: + dependency: transitive + description: + name: path_provider_foundation + sha256: "2a376b7d6392d80cd3705782d2caa734ca4727776db0b6ec36ef3f1855197699" + url: "https://pub.dev" + source: hosted + version: "2.6.0" + path_provider_linux: + dependency: transitive + description: + name: path_provider_linux + sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279 + url: "https://pub.dev" + source: hosted + version: "2.2.1" + path_provider_platform_interface: + dependency: transitive + description: + name: path_provider_platform_interface + sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + path_provider_windows: + dependency: transitive + description: + name: path_provider_windows + sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7 + url: "https://pub.dev" + source: hosted + version: "2.3.0" + platform: + dependency: transitive + description: + name: platform + sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984" + url: "https://pub.dev" + source: hosted + version: "3.1.6" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" + url: "https://pub.dev" + source: hosted + version: "2.1.8" + polylabel: + dependency: transitive + description: + name: polylabel + sha256: "41b9099afb2aa6c1730bdd8a0fab1400d287694ec7615dd8516935fa3144214b" + url: "https://pub.dev" + source: hosted + version: "1.0.1" + proj4dart: + dependency: transitive + description: + name: proj4dart + sha256: c8a659ac9b6864aa47c171e78d41bbe6f5e1d7bd790a5814249e6b68bc44324e + url: "https://pub.dev" + source: hosted + version: "2.1.0" + provider: + dependency: "direct main" + description: + name: provider + sha256: "4e82183fa20e5ca25703ead7e05de9e4cceed1fbd1eadc1ac3cb6f565a09f272" + url: "https://pub.dev" + source: hosted + version: "6.1.5+1" + pub_semver: + dependency: transitive + description: + name: pub_semver + sha256: "5bfcf68ca79ef689f8990d1160781b4bad40a3bd5e5218ad4076ddb7f4081585" + url: "https://pub.dev" + source: hosted + version: "2.2.0" + record_use: + dependency: transitive + description: + name: record_use + sha256: "2551bd8eecfe95d14ae75f6021ad0248be5c27f138c2ec12fcb52b500b3ba1ed" + url: "https://pub.dev" + source: hosted + version: "0.6.0" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + source_span: + dependency: "direct main" + description: + name: source_span + sha256: "56a02f1f4cd1a2d96303c0144c93bd6d909eea6bee6bf5a0e0b685edbd4c47ab" + url: "https://pub.dev" + source: hosted + version: "1.10.2" + sqflite: + dependency: "direct main" + description: + name: sqflite + sha256: "564cfed0746fe53140c23b70b308e045c3b31f17778f2f326ccb7d804ea0250a" + url: "https://pub.dev" + source: hosted + version: "2.4.2+1" + sqflite_android: + dependency: transitive + description: + name: sqflite_android + sha256: "881e28efdcc9950fd8e9bb42713dcf1103e62a2e7168f23c9338d82db13dec40" + url: "https://pub.dev" + source: hosted + version: "2.4.2+3" + sqflite_common: + dependency: transitive + description: + name: sqflite_common + sha256: "5e8377564d95166761a968ed96104e0569b6b6cc611faac92a36ab8a169112c3" + url: "https://pub.dev" + source: hosted + version: "2.5.6+1" + sqflite_darwin: + dependency: transitive + description: + name: sqflite_darwin + sha256: "279832e5cde3fe99e8571879498c9211f3ca6391b0d818df4e17d9fff5c6ccb3" + url: "https://pub.dev" + source: hosted + version: "2.4.2" + sqflite_platform_interface: + dependency: transitive + description: + name: sqflite_platform_interface + sha256: "8dd4515c7bdcae0a785b0062859336de775e8c65db81ae33dd5445f35be61920" + url: "https://pub.dev" + source: hosted + version: "2.4.0" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1" + url: "https://pub.dev" + source: hosted + version: "1.12.1" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43" + url: "https://pub.dev" + source: hosted + version: "1.4.1" + synchronized: + dependency: transitive + description: + name: synchronized + sha256: "63896c27e81b28f8cb4e69ead0d3e8f03f1d1e5fc531a3e579cabed6a2c7c9e5" + url: "https://pub.dev" + source: hosted + version: "3.4.0+1" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e" + url: "https://pub.dev" + source: hosted + version: "1.2.2" + test_api: + dependency: transitive + description: + name: test_api + sha256: "8161c84903fd860b26bfdefb7963b3f0b68fee7adea0f59ef805ecca346f0c7a" + url: "https://pub.dev" + source: hosted + version: "0.7.10" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006 + url: "https://pub.dev" + source: hosted + version: "1.4.0" + unicode: + dependency: transitive + description: + name: unicode + sha256: "0f69e46593d65245774d4f17125c6084d2c20b4e473a983f6e21b7d7762218f1" + url: "https://pub.dev" + source: hosted + version: "0.3.1" + uuid: + dependency: transitive + description: + name: uuid + sha256: "1fef9e8e11e2991bb773070d4656b7bd5d850967a2456cfc83cf47925ba79489" + url: "https://pub.dev" + source: hosted + version: "4.5.3" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b + url: "https://pub.dev" + source: hosted + version: "2.2.0" + vm_service: + dependency: transitive + description: + name: vm_service + sha256: "0016aef94fc66495ac78af5859181e3f3bf2026bd8eecc72b9565601e19ab360" + url: "https://pub.dev" + source: hosted + version: "15.2.0" + web: + dependency: transitive + description: + name: web + sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a" + url: "https://pub.dev" + source: hosted + version: "1.1.1" + wkt_parser: + dependency: transitive + description: + name: wkt_parser + sha256: "8a555fc60de3116c00aad67891bcab20f81a958e4219cc106e3c037aa3937f13" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + xdg_directories: + dependency: transitive + description: + name: xdg_directories + sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + yaml: + dependency: transitive + description: + name: yaml + sha256: b9da305ac7c39faa3f030eccd175340f968459dae4af175130b3fc47e40d76ce + url: "https://pub.dev" + source: hosted + version: "3.1.3" +sdks: + dart: ">=3.11.0 <4.0.0" + flutter: ">=3.38.4" diff --git a/pubspec.yaml b/pubspec.yaml new file mode 100644 index 0000000..93b6255 --- /dev/null +++ b/pubspec.yaml @@ -0,0 +1,31 @@ +name: delivery_app +description: "Newspaper delivery route app" +publish_to: 'none' +version: 2.0.0+2 + +environment: + sdk: ^3.11.0 + +dependencies: + flutter: + sdk: flutter + flutter_map: ^7.0.0 + latlong2: ^0.9.0 + geolocator: ^13.0.0 + http: ^1.2.0 + sqflite: ^2.4.0 + path: ^1.9.0 + cupertino_icons: ^1.0.8 + source_span: ^1.10.0 + provider: ^6.1.0 + path_provider: ^2.1.0 + +dev_dependencies: + flutter_test: + sdk: flutter + flutter_lints: ^5.0.0 + +flutter: + uses-material-design: true + assets: + - assets/hoogerheide_addresses.json diff --git a/web/favicon.png b/web/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..8aaa46ac1ae21512746f852a42ba87e4165dfdd1 GIT binary patch literal 917 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|I14-?iy0X7 zltGxWVyS%@P(fs7NJL45ua8x7ey(0(N`6wRUPW#JP&EUCO@$SZnVVXYs8ErclUHn2 zVXFjIVFhG^g!Ppaz)DK8ZIvQ?0~DO|i&7O#^-S~(l1AfjnEK zjFOT9D}DX)@^Za$W4-*MbbUihOG|wNBYh(yU7!lx;>x^|#0uTKVr7USFmqf|i<65o z3raHc^AtelCMM;Vme?vOfh>Xph&xL%(-1c06+^uR^q@XSM&D4+Kp$>4P^%3{)XKjo zGZknv$b36P8?Z_gF{nK@`XI}Z90TzwSQO}0J1!f2c(B=V`5aP@1P1a|PZ!4!3&Gl8 zTYqUsf!gYFyJnXpu0!n&N*SYAX-%d(5gVjrHJWqXQshj@!Zm{!01WsQrH~9=kTxW#6SvuapgMqt>$=j#%eyGrQzr zP{L-3gsMA^$I1&gsBAEL+vxi1*Igl=8#8`5?A-T5=z-sk46WA1IUT)AIZHx1rdUrf zVJrJn<74DDw`j)Ki#gt}mIT-Q`XRa2-jQXQoI%w`nb|XblvzK${ZzlV)m-XcwC(od z71_OEC5Bt9GEXosOXaPTYOia#R4ID2TiU~`zVMl08TV_C%DnU4^+HE>9(CE4D6?Fz oujB08i7adh9xk7*FX66dWH6F5TM;?E2b5PlUHx3vIVCg!0Dx9vYXATM literal 0 HcmV?d00001 diff --git a/web/icons/Icon-192.png b/web/icons/Icon-192.png new file mode 100644 index 0000000000000000000000000000000000000000..b749bfef07473333cf1dd31e9eed89862a5d52aa GIT binary patch literal 5292 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 literal 0 HcmV?d00001 diff --git a/web/icons/Icon-512.png b/web/icons/Icon-512.png new file mode 100644 index 0000000000000000000000000000000000000000..88cfd48dff1169879ba46840804b412fe02fefd6 GIT binary patch literal 8252 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 literal 0 HcmV?d00001 diff --git a/web/icons/Icon-maskable-192.png b/web/icons/Icon-maskable-192.png new file mode 100644 index 0000000000000000000000000000000000000000..eb9b4d76e525556d5d89141648c724331630325d GIT binary patch literal 5594 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 X>c!)3PgKfL&lX^$Z>Cpu&6)6jvi^Z! literal 0 HcmV?d00001 diff --git a/web/icons/Icon-maskable-512.png b/web/icons/Icon-maskable-512.png new file mode 100644 index 0000000000000000000000000000000000000000..d69c56691fbdb0b7efa65097c7cc1edac12a6d3e GIT binary patch literal 20998 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 MPgg&ebxsLQ025IeI{*Lx literal 0 HcmV?d00001 diff --git a/web/index.html b/web/index.html new file mode 100644 index 0000000..70320d3 --- /dev/null +++ b/web/index.html @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + delivery_app + + + + + + + diff --git a/web/manifest.json b/web/manifest.json new file mode 100644 index 0000000..297af49 --- /dev/null +++ b/web/manifest.json @@ -0,0 +1,35 @@ +{ + "name": "delivery_app", + "short_name": "delivery_app", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "A new Flutter project.", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icons/Icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/Icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "icons/Icon-maskable-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "icons/Icon-maskable-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +} diff --git a/windows/.gitignore b/windows/.gitignore new file mode 100644 index 0000000..d492d0d --- /dev/null +++ b/windows/.gitignore @@ -0,0 +1,17 @@ +flutter/ephemeral/ + +# Visual Studio user-specific files. +*.suo +*.user +*.userosscache +*.sln.docstates + +# Visual Studio build-related files. +x64/ +x86/ + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ diff --git a/windows/CMakeLists.txt b/windows/CMakeLists.txt new file mode 100644 index 0000000..87a8a65 --- /dev/null +++ b/windows/CMakeLists.txt @@ -0,0 +1,108 @@ +# Project-level configuration. +cmake_minimum_required(VERSION 3.14) +project(delivery_app LANGUAGES CXX) + +# The name of the executable created for the application. Change this to change +# the on-disk name of your application. +set(BINARY_NAME "delivery_app") + +# Explicitly opt in to modern CMake behaviors to avoid warnings with recent +# versions of CMake. +cmake_policy(VERSION 3.14...3.25) + +# Define build configuration option. +get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) +if(IS_MULTICONFIG) + set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release" + CACHE STRING "" FORCE) +else() + if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + set(CMAKE_BUILD_TYPE "Debug" CACHE + STRING "Flutter build mode" FORCE) + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS + "Debug" "Profile" "Release") + endif() +endif() +# Define settings for the Profile build mode. +set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}") +set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}") +set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}") +set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}") + +# Use Unicode for all projects. +add_definitions(-DUNICODE -D_UNICODE) + +# Compilation settings that should be applied to most targets. +# +# Be cautious about adding new options here, as plugins use this function by +# default. In most cases, you should add new options to specific targets instead +# of modifying this function. +function(APPLY_STANDARD_SETTINGS TARGET) + target_compile_features(${TARGET} PUBLIC cxx_std_17) + target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100") + target_compile_options(${TARGET} PRIVATE /EHsc) + target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0") + target_compile_definitions(${TARGET} PRIVATE "$<$:_DEBUG>") +endfunction() + +# Flutter library and tool build rules. +set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") +add_subdirectory(${FLUTTER_MANAGED_DIR}) + +# Application build; see runner/CMakeLists.txt. +add_subdirectory("runner") + + +# Generated plugin build rules, which manage building the plugins and adding +# them to the application. +include(flutter/generated_plugins.cmake) + + +# === Installation === +# Support files are copied into place next to the executable, so that it can +# run in place. This is done instead of making a separate bundle (as on Linux) +# so that building and running from within Visual Studio will work. +set(BUILD_BUNDLE_DIR "$") +# Make the "install" step default, as it's required to run. +set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1) +if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) +endif() + +set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") +set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}") + +install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +if(PLUGIN_BUNDLED_LIBRARIES) + install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endif() + +# Copy the native assets provided by the build.dart from all packages. +set(NATIVE_ASSETS_DIR "${PROJECT_BUILD_DIR}native_assets/windows/") +install(DIRECTORY "${NATIVE_ASSETS_DIR}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +# Fully re-copy the assets directory on each build to avoid having stale files +# from a previous install. +set(FLUTTER_ASSET_DIR_NAME "flutter_assets") +install(CODE " + file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") + " COMPONENT Runtime) +install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" + DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) + +# Install the AOT library on non-Debug builds only. +install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + CONFIGURATIONS Profile;Release + COMPONENT Runtime) diff --git a/windows/flutter/CMakeLists.txt b/windows/flutter/CMakeLists.txt new file mode 100644 index 0000000..903f489 --- /dev/null +++ b/windows/flutter/CMakeLists.txt @@ -0,0 +1,109 @@ +# This file controls Flutter-level build steps. It should not be edited. +cmake_minimum_required(VERSION 3.14) + +set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") + +# Configuration provided via flutter tool. +include(${EPHEMERAL_DIR}/generated_config.cmake) + +# TODO: Move the rest of this into files in ephemeral. See +# https://github.com/flutter/flutter/issues/57146. +set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper") + +# Set fallback configurations for older versions of the flutter tool. +if (NOT DEFINED FLUTTER_TARGET_PLATFORM) + set(FLUTTER_TARGET_PLATFORM "windows-x64") +endif() + +# === Flutter Library === +set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll") + +# Published to parent scope for install step. +set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) +set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) +set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) +set(AOT_LIBRARY "${PROJECT_DIR}/build/windows/app.so" PARENT_SCOPE) + +list(APPEND FLUTTER_LIBRARY_HEADERS + "flutter_export.h" + "flutter_windows.h" + "flutter_messenger.h" + "flutter_plugin_registrar.h" + "flutter_texture_registrar.h" +) +list(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND "${EPHEMERAL_DIR}/") +add_library(flutter INTERFACE) +target_include_directories(flutter INTERFACE + "${EPHEMERAL_DIR}" +) +target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}.lib") +add_dependencies(flutter flutter_assemble) + +# === Wrapper === +list(APPEND CPP_WRAPPER_SOURCES_CORE + "core_implementations.cc" + "standard_codec.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/") +list(APPEND CPP_WRAPPER_SOURCES_PLUGIN + "plugin_registrar.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/") +list(APPEND CPP_WRAPPER_SOURCES_APP + "flutter_engine.cc" + "flutter_view_controller.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/") + +# Wrapper sources needed for a plugin. +add_library(flutter_wrapper_plugin STATIC + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_PLUGIN} +) +apply_standard_settings(flutter_wrapper_plugin) +set_target_properties(flutter_wrapper_plugin PROPERTIES + POSITION_INDEPENDENT_CODE ON) +set_target_properties(flutter_wrapper_plugin PROPERTIES + CXX_VISIBILITY_PRESET hidden) +target_link_libraries(flutter_wrapper_plugin PUBLIC flutter) +target_include_directories(flutter_wrapper_plugin PUBLIC + "${WRAPPER_ROOT}/include" +) +add_dependencies(flutter_wrapper_plugin flutter_assemble) + +# Wrapper sources needed for the runner. +add_library(flutter_wrapper_app STATIC + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_APP} +) +apply_standard_settings(flutter_wrapper_app) +target_link_libraries(flutter_wrapper_app PUBLIC flutter) +target_include_directories(flutter_wrapper_app PUBLIC + "${WRAPPER_ROOT}/include" +) +add_dependencies(flutter_wrapper_app flutter_assemble) + +# === Flutter tool backend === +# _phony_ is a non-existent file to force this command to run every time, +# since currently there's no way to get a full input/output list from the +# flutter tool. +set(PHONY_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/_phony_") +set_source_files_properties("${PHONY_OUTPUT}" PROPERTIES SYMBOLIC TRUE) +add_custom_command( + OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} + ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} + ${CPP_WRAPPER_SOURCES_APP} + ${PHONY_OUTPUT} + COMMAND ${CMAKE_COMMAND} -E env + ${FLUTTER_TOOL_ENVIRONMENT} + "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat" + ${FLUTTER_TARGET_PLATFORM} $ + VERBATIM +) +add_custom_target(flutter_assemble DEPENDS + "${FLUTTER_LIBRARY}" + ${FLUTTER_LIBRARY_HEADERS} + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_PLUGIN} + ${CPP_WRAPPER_SOURCES_APP} +) diff --git a/windows/flutter/generated_plugin_registrant.cc b/windows/flutter/generated_plugin_registrant.cc new file mode 100644 index 0000000..1ece8f2 --- /dev/null +++ b/windows/flutter/generated_plugin_registrant.cc @@ -0,0 +1,14 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#include "generated_plugin_registrant.h" + +#include + +void RegisterPlugins(flutter::PluginRegistry* registry) { + GeolocatorWindowsRegisterWithRegistrar( + registry->GetRegistrarForPlugin("GeolocatorWindows")); +} diff --git a/windows/flutter/generated_plugin_registrant.h b/windows/flutter/generated_plugin_registrant.h new file mode 100644 index 0000000..dc139d8 --- /dev/null +++ b/windows/flutter/generated_plugin_registrant.h @@ -0,0 +1,15 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#ifndef GENERATED_PLUGIN_REGISTRANT_ +#define GENERATED_PLUGIN_REGISTRANT_ + +#include + +// Registers Flutter plugins. +void RegisterPlugins(flutter::PluginRegistry* registry); + +#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/windows/flutter/generated_plugins.cmake b/windows/flutter/generated_plugins.cmake new file mode 100644 index 0000000..a49b9f6 --- /dev/null +++ b/windows/flutter/generated_plugins.cmake @@ -0,0 +1,25 @@ +# +# Generated file, do not edit. +# + +list(APPEND FLUTTER_PLUGIN_LIST + geolocator_windows +) + +list(APPEND FLUTTER_FFI_PLUGIN_LIST + jni +) + +set(PLUGIN_BUNDLED_LIBRARIES) + +foreach(plugin ${FLUTTER_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) + target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) + list(APPEND PLUGIN_BUNDLED_LIBRARIES $) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) +endforeach(plugin) + +foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin}) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) +endforeach(ffi_plugin) diff --git a/windows/runner/CMakeLists.txt b/windows/runner/CMakeLists.txt new file mode 100644 index 0000000..394917c --- /dev/null +++ b/windows/runner/CMakeLists.txt @@ -0,0 +1,40 @@ +cmake_minimum_required(VERSION 3.14) +project(runner LANGUAGES CXX) + +# Define the application target. To change its name, change BINARY_NAME in the +# top-level CMakeLists.txt, not the value here, or `flutter run` will no longer +# work. +# +# Any new source files that you add to the application should be added here. +add_executable(${BINARY_NAME} WIN32 + "flutter_window.cpp" + "main.cpp" + "utils.cpp" + "win32_window.cpp" + "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" + "Runner.rc" + "runner.exe.manifest" +) + +# Apply the standard set of build settings. This can be removed for applications +# that need different build settings. +apply_standard_settings(${BINARY_NAME}) + +# Add preprocessor definitions for the build version. +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION=\"${FLUTTER_VERSION}\"") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MAJOR=${FLUTTER_VERSION_MAJOR}") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MINOR=${FLUTTER_VERSION_MINOR}") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_PATCH=${FLUTTER_VERSION_PATCH}") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_BUILD=${FLUTTER_VERSION_BUILD}") + +# Disable Windows macros that collide with C++ standard library functions. +target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX") + +# Add dependency libraries and include directories. Add any application-specific +# dependencies here. +target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app) +target_link_libraries(${BINARY_NAME} PRIVATE "dwmapi.lib") +target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") + +# Run the Flutter tool portions of the build. This must not be removed. +add_dependencies(${BINARY_NAME} flutter_assemble) diff --git a/windows/runner/Runner.rc b/windows/runner/Runner.rc new file mode 100644 index 0000000..cf7a184 --- /dev/null +++ b/windows/runner/Runner.rc @@ -0,0 +1,121 @@ +// Microsoft Visual C++ generated resource script. +// +#pragma code_page(65001) +#include "resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "winres.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// English (United States) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#include ""winres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Icon +// + +// Icon with lowest ID value placed first to ensure application icon +// remains consistent on all systems. +IDI_APP_ICON ICON "resources\\app_icon.ico" + + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +#if defined(FLUTTER_VERSION_MAJOR) && defined(FLUTTER_VERSION_MINOR) && defined(FLUTTER_VERSION_PATCH) && defined(FLUTTER_VERSION_BUILD) +#define VERSION_AS_NUMBER FLUTTER_VERSION_MAJOR,FLUTTER_VERSION_MINOR,FLUTTER_VERSION_PATCH,FLUTTER_VERSION_BUILD +#else +#define VERSION_AS_NUMBER 1,0,0,0 +#endif + +#if defined(FLUTTER_VERSION) +#define VERSION_AS_STRING FLUTTER_VERSION +#else +#define VERSION_AS_STRING "1.0.0" +#endif + +VS_VERSION_INFO VERSIONINFO + FILEVERSION VERSION_AS_NUMBER + PRODUCTVERSION VERSION_AS_NUMBER + FILEFLAGSMASK VS_FFI_FILEFLAGSMASK +#ifdef _DEBUG + FILEFLAGS VS_FF_DEBUG +#else + FILEFLAGS 0x0L +#endif + FILEOS VOS__WINDOWS32 + FILETYPE VFT_APP + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904e4" + BEGIN + VALUE "CompanyName", "com.example" "\0" + VALUE "FileDescription", "delivery_app" "\0" + VALUE "FileVersion", VERSION_AS_STRING "\0" + VALUE "InternalName", "delivery_app" "\0" + VALUE "LegalCopyright", "Copyright (C) 2026 com.example. All rights reserved." "\0" + VALUE "OriginalFilename", "delivery_app.exe" "\0" + VALUE "ProductName", "delivery_app" "\0" + VALUE "ProductVersion", VERSION_AS_STRING "\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1252 + END +END + +#endif // English (United States) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED diff --git a/windows/runner/flutter_window.cpp b/windows/runner/flutter_window.cpp new file mode 100644 index 0000000..955ee30 --- /dev/null +++ b/windows/runner/flutter_window.cpp @@ -0,0 +1,71 @@ +#include "flutter_window.h" + +#include + +#include "flutter/generated_plugin_registrant.h" + +FlutterWindow::FlutterWindow(const flutter::DartProject& project) + : project_(project) {} + +FlutterWindow::~FlutterWindow() {} + +bool FlutterWindow::OnCreate() { + if (!Win32Window::OnCreate()) { + return false; + } + + RECT frame = GetClientArea(); + + // The size here must match the window dimensions to avoid unnecessary surface + // creation / destruction in the startup path. + flutter_controller_ = std::make_unique( + frame.right - frame.left, frame.bottom - frame.top, project_); + // Ensure that basic setup of the controller was successful. + if (!flutter_controller_->engine() || !flutter_controller_->view()) { + return false; + } + RegisterPlugins(flutter_controller_->engine()); + SetChildContent(flutter_controller_->view()->GetNativeWindow()); + + flutter_controller_->engine()->SetNextFrameCallback([&]() { + this->Show(); + }); + + // Flutter can complete the first frame before the "show window" callback is + // registered. The following call ensures a frame is pending to ensure the + // window is shown. It is a no-op if the first frame hasn't completed yet. + flutter_controller_->ForceRedraw(); + + return true; +} + +void FlutterWindow::OnDestroy() { + if (flutter_controller_) { + flutter_controller_ = nullptr; + } + + Win32Window::OnDestroy(); +} + +LRESULT +FlutterWindow::MessageHandler(HWND hwnd, UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + // Give Flutter, including plugins, an opportunity to handle window messages. + if (flutter_controller_) { + std::optional result = + flutter_controller_->HandleTopLevelWindowProc(hwnd, message, wparam, + lparam); + if (result) { + return *result; + } + } + + switch (message) { + case WM_FONTCHANGE: + flutter_controller_->engine()->ReloadSystemFonts(); + break; + } + + return Win32Window::MessageHandler(hwnd, message, wparam, lparam); +} diff --git a/windows/runner/flutter_window.h b/windows/runner/flutter_window.h new file mode 100644 index 0000000..6da0652 --- /dev/null +++ b/windows/runner/flutter_window.h @@ -0,0 +1,33 @@ +#ifndef RUNNER_FLUTTER_WINDOW_H_ +#define RUNNER_FLUTTER_WINDOW_H_ + +#include +#include + +#include + +#include "win32_window.h" + +// A window that does nothing but host a Flutter view. +class FlutterWindow : public Win32Window { + public: + // Creates a new FlutterWindow hosting a Flutter view running |project|. + explicit FlutterWindow(const flutter::DartProject& project); + virtual ~FlutterWindow(); + + protected: + // Win32Window: + bool OnCreate() override; + void OnDestroy() override; + LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, + LPARAM const lparam) noexcept override; + + private: + // The project to run. + flutter::DartProject project_; + + // The Flutter instance hosted by this window. + std::unique_ptr flutter_controller_; +}; + +#endif // RUNNER_FLUTTER_WINDOW_H_ diff --git a/windows/runner/main.cpp b/windows/runner/main.cpp new file mode 100644 index 0000000..860160b --- /dev/null +++ b/windows/runner/main.cpp @@ -0,0 +1,43 @@ +#include +#include +#include + +#include "flutter_window.h" +#include "utils.h" + +int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, + _In_ wchar_t *command_line, _In_ int show_command) { + // Attach to console when present (e.g., 'flutter run') or create a + // new console when running with a debugger. + if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) { + CreateAndAttachConsole(); + } + + // Initialize COM, so that it is available for use in the library and/or + // plugins. + ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED); + + flutter::DartProject project(L"data"); + + std::vector command_line_arguments = + GetCommandLineArguments(); + + project.set_dart_entrypoint_arguments(std::move(command_line_arguments)); + + FlutterWindow window(project); + Win32Window::Point origin(10, 10); + Win32Window::Size size(1280, 720); + if (!window.Create(L"delivery_app", origin, size)) { + return EXIT_FAILURE; + } + window.SetQuitOnClose(true); + + ::MSG msg; + while (::GetMessage(&msg, nullptr, 0, 0)) { + ::TranslateMessage(&msg); + ::DispatchMessage(&msg); + } + + ::CoUninitialize(); + return EXIT_SUCCESS; +} diff --git a/windows/runner/resource.h b/windows/runner/resource.h new file mode 100644 index 0000000..66a65d1 --- /dev/null +++ b/windows/runner/resource.h @@ -0,0 +1,16 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by Runner.rc +// +#define IDI_APP_ICON 101 + +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 102 +#define _APS_NEXT_COMMAND_VALUE 40001 +#define _APS_NEXT_CONTROL_VALUE 1001 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif diff --git a/windows/runner/resources/app_icon.ico b/windows/runner/resources/app_icon.ico new file mode 100644 index 0000000000000000000000000000000000000000..c04e20caf6370ebb9253ad831cc31de4a9c965f6 GIT binary patch literal 33772 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 literal 0 HcmV?d00001 diff --git a/windows/runner/runner.exe.manifest b/windows/runner/runner.exe.manifest new file mode 100644 index 0000000..153653e --- /dev/null +++ b/windows/runner/runner.exe.manifest @@ -0,0 +1,14 @@ + + + + + PerMonitorV2 + + + + + + + + + diff --git a/windows/runner/utils.cpp b/windows/runner/utils.cpp new file mode 100644 index 0000000..3a0b465 --- /dev/null +++ b/windows/runner/utils.cpp @@ -0,0 +1,65 @@ +#include "utils.h" + +#include +#include +#include +#include + +#include + +void CreateAndAttachConsole() { + if (::AllocConsole()) { + FILE *unused; + if (freopen_s(&unused, "CONOUT$", "w", stdout)) { + _dup2(_fileno(stdout), 1); + } + if (freopen_s(&unused, "CONOUT$", "w", stderr)) { + _dup2(_fileno(stdout), 2); + } + std::ios::sync_with_stdio(); + FlutterDesktopResyncOutputStreams(); + } +} + +std::vector GetCommandLineArguments() { + // Convert the UTF-16 command line arguments to UTF-8 for the Engine to use. + int argc; + wchar_t** argv = ::CommandLineToArgvW(::GetCommandLineW(), &argc); + if (argv == nullptr) { + return std::vector(); + } + + std::vector command_line_arguments; + + // Skip the first argument as it's the binary name. + for (int i = 1; i < argc; i++) { + command_line_arguments.push_back(Utf8FromUtf16(argv[i])); + } + + ::LocalFree(argv); + + return command_line_arguments; +} + +std::string Utf8FromUtf16(const wchar_t* utf16_string) { + if (utf16_string == nullptr) { + return std::string(); + } + unsigned int target_length = ::WideCharToMultiByte( + CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, + -1, nullptr, 0, nullptr, nullptr) + -1; // remove the trailing null character + int input_length = (int)wcslen(utf16_string); + std::string utf8_string; + if (target_length == 0 || target_length > utf8_string.max_size()) { + return utf8_string; + } + utf8_string.resize(target_length); + int converted_length = ::WideCharToMultiByte( + CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, + input_length, utf8_string.data(), target_length, nullptr, nullptr); + if (converted_length == 0) { + return std::string(); + } + return utf8_string; +} diff --git a/windows/runner/utils.h b/windows/runner/utils.h new file mode 100644 index 0000000..3879d54 --- /dev/null +++ b/windows/runner/utils.h @@ -0,0 +1,19 @@ +#ifndef RUNNER_UTILS_H_ +#define RUNNER_UTILS_H_ + +#include +#include + +// Creates a console for the process, and redirects stdout and stderr to +// it for both the runner and the Flutter library. +void CreateAndAttachConsole(); + +// Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string +// encoded in UTF-8. Returns an empty std::string on failure. +std::string Utf8FromUtf16(const wchar_t* utf16_string); + +// Gets the command line arguments passed in as a std::vector, +// encoded in UTF-8. Returns an empty std::vector on failure. +std::vector GetCommandLineArguments(); + +#endif // RUNNER_UTILS_H_ diff --git a/windows/runner/win32_window.cpp b/windows/runner/win32_window.cpp new file mode 100644 index 0000000..60608d0 --- /dev/null +++ b/windows/runner/win32_window.cpp @@ -0,0 +1,288 @@ +#include "win32_window.h" + +#include +#include + +#include "resource.h" + +namespace { + +/// Window attribute that enables dark mode window decorations. +/// +/// Redefined in case the developer's machine has a Windows SDK older than +/// version 10.0.22000.0. +/// See: https://docs.microsoft.com/windows/win32/api/dwmapi/ne-dwmapi-dwmwindowattribute +#ifndef DWMWA_USE_IMMERSIVE_DARK_MODE +#define DWMWA_USE_IMMERSIVE_DARK_MODE 20 +#endif + +constexpr const wchar_t kWindowClassName[] = L"FLUTTER_RUNNER_WIN32_WINDOW"; + +/// Registry key for app theme preference. +/// +/// A value of 0 indicates apps should use dark mode. A non-zero or missing +/// value indicates apps should use light mode. +constexpr const wchar_t kGetPreferredBrightnessRegKey[] = + L"Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize"; +constexpr const wchar_t kGetPreferredBrightnessRegValue[] = L"AppsUseLightTheme"; + +// The number of Win32Window objects that currently exist. +static int g_active_window_count = 0; + +using EnableNonClientDpiScaling = BOOL __stdcall(HWND hwnd); + +// Scale helper to convert logical scaler values to physical using passed in +// scale factor +int Scale(int source, double scale_factor) { + return static_cast(source * scale_factor); +} + +// Dynamically loads the |EnableNonClientDpiScaling| from the User32 module. +// This API is only needed for PerMonitor V1 awareness mode. +void EnableFullDpiSupportIfAvailable(HWND hwnd) { + HMODULE user32_module = LoadLibraryA("User32.dll"); + if (!user32_module) { + return; + } + auto enable_non_client_dpi_scaling = + reinterpret_cast( + GetProcAddress(user32_module, "EnableNonClientDpiScaling")); + if (enable_non_client_dpi_scaling != nullptr) { + enable_non_client_dpi_scaling(hwnd); + } + FreeLibrary(user32_module); +} + +} // namespace + +// Manages the Win32Window's window class registration. +class WindowClassRegistrar { + public: + ~WindowClassRegistrar() = default; + + // Returns the singleton registrar instance. + static WindowClassRegistrar* GetInstance() { + if (!instance_) { + instance_ = new WindowClassRegistrar(); + } + return instance_; + } + + // Returns the name of the window class, registering the class if it hasn't + // previously been registered. + const wchar_t* GetWindowClass(); + + // Unregisters the window class. Should only be called if there are no + // instances of the window. + void UnregisterWindowClass(); + + private: + WindowClassRegistrar() = default; + + static WindowClassRegistrar* instance_; + + bool class_registered_ = false; +}; + +WindowClassRegistrar* WindowClassRegistrar::instance_ = nullptr; + +const wchar_t* WindowClassRegistrar::GetWindowClass() { + if (!class_registered_) { + WNDCLASS window_class{}; + window_class.hCursor = LoadCursor(nullptr, IDC_ARROW); + window_class.lpszClassName = kWindowClassName; + window_class.style = CS_HREDRAW | CS_VREDRAW; + window_class.cbClsExtra = 0; + window_class.cbWndExtra = 0; + window_class.hInstance = GetModuleHandle(nullptr); + window_class.hIcon = + LoadIcon(window_class.hInstance, MAKEINTRESOURCE(IDI_APP_ICON)); + window_class.hbrBackground = 0; + window_class.lpszMenuName = nullptr; + window_class.lpfnWndProc = Win32Window::WndProc; + RegisterClass(&window_class); + class_registered_ = true; + } + return kWindowClassName; +} + +void WindowClassRegistrar::UnregisterWindowClass() { + UnregisterClass(kWindowClassName, nullptr); + class_registered_ = false; +} + +Win32Window::Win32Window() { + ++g_active_window_count; +} + +Win32Window::~Win32Window() { + --g_active_window_count; + Destroy(); +} + +bool Win32Window::Create(const std::wstring& title, + const Point& origin, + const Size& size) { + Destroy(); + + const wchar_t* window_class = + WindowClassRegistrar::GetInstance()->GetWindowClass(); + + const POINT target_point = {static_cast(origin.x), + static_cast(origin.y)}; + HMONITOR monitor = MonitorFromPoint(target_point, MONITOR_DEFAULTTONEAREST); + UINT dpi = FlutterDesktopGetDpiForMonitor(monitor); + double scale_factor = dpi / 96.0; + + HWND window = CreateWindow( + window_class, title.c_str(), WS_OVERLAPPEDWINDOW, + Scale(origin.x, scale_factor), Scale(origin.y, scale_factor), + Scale(size.width, scale_factor), Scale(size.height, scale_factor), + nullptr, nullptr, GetModuleHandle(nullptr), this); + + if (!window) { + return false; + } + + UpdateTheme(window); + + return OnCreate(); +} + +bool Win32Window::Show() { + return ShowWindow(window_handle_, SW_SHOWNORMAL); +} + +// static +LRESULT CALLBACK Win32Window::WndProc(HWND const window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + if (message == WM_NCCREATE) { + auto window_struct = reinterpret_cast(lparam); + SetWindowLongPtr(window, GWLP_USERDATA, + reinterpret_cast(window_struct->lpCreateParams)); + + auto that = static_cast(window_struct->lpCreateParams); + EnableFullDpiSupportIfAvailable(window); + that->window_handle_ = window; + } else if (Win32Window* that = GetThisFromHandle(window)) { + return that->MessageHandler(window, message, wparam, lparam); + } + + return DefWindowProc(window, message, wparam, lparam); +} + +LRESULT +Win32Window::MessageHandler(HWND hwnd, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + switch (message) { + case WM_DESTROY: + window_handle_ = nullptr; + Destroy(); + if (quit_on_close_) { + PostQuitMessage(0); + } + return 0; + + case WM_DPICHANGED: { + auto newRectSize = reinterpret_cast(lparam); + LONG newWidth = newRectSize->right - newRectSize->left; + LONG newHeight = newRectSize->bottom - newRectSize->top; + + SetWindowPos(hwnd, nullptr, newRectSize->left, newRectSize->top, newWidth, + newHeight, SWP_NOZORDER | SWP_NOACTIVATE); + + return 0; + } + case WM_SIZE: { + RECT rect = GetClientArea(); + if (child_content_ != nullptr) { + // Size and position the child window. + MoveWindow(child_content_, rect.left, rect.top, rect.right - rect.left, + rect.bottom - rect.top, TRUE); + } + return 0; + } + + case WM_ACTIVATE: + if (child_content_ != nullptr) { + SetFocus(child_content_); + } + return 0; + + case WM_DWMCOLORIZATIONCOLORCHANGED: + UpdateTheme(hwnd); + return 0; + } + + return DefWindowProc(window_handle_, message, wparam, lparam); +} + +void Win32Window::Destroy() { + OnDestroy(); + + if (window_handle_) { + DestroyWindow(window_handle_); + window_handle_ = nullptr; + } + if (g_active_window_count == 0) { + WindowClassRegistrar::GetInstance()->UnregisterWindowClass(); + } +} + +Win32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept { + return reinterpret_cast( + GetWindowLongPtr(window, GWLP_USERDATA)); +} + +void Win32Window::SetChildContent(HWND content) { + child_content_ = content; + SetParent(content, window_handle_); + RECT frame = GetClientArea(); + + MoveWindow(content, frame.left, frame.top, frame.right - frame.left, + frame.bottom - frame.top, true); + + SetFocus(child_content_); +} + +RECT Win32Window::GetClientArea() { + RECT frame; + GetClientRect(window_handle_, &frame); + return frame; +} + +HWND Win32Window::GetHandle() { + return window_handle_; +} + +void Win32Window::SetQuitOnClose(bool quit_on_close) { + quit_on_close_ = quit_on_close; +} + +bool Win32Window::OnCreate() { + // No-op; provided for subclasses. + return true; +} + +void Win32Window::OnDestroy() { + // No-op; provided for subclasses. +} + +void Win32Window::UpdateTheme(HWND const window) { + DWORD light_mode; + DWORD light_mode_size = sizeof(light_mode); + LSTATUS result = RegGetValue(HKEY_CURRENT_USER, kGetPreferredBrightnessRegKey, + kGetPreferredBrightnessRegValue, + RRF_RT_REG_DWORD, nullptr, &light_mode, + &light_mode_size); + + if (result == ERROR_SUCCESS) { + BOOL enable_dark_mode = light_mode == 0; + DwmSetWindowAttribute(window, DWMWA_USE_IMMERSIVE_DARK_MODE, + &enable_dark_mode, sizeof(enable_dark_mode)); + } +} diff --git a/windows/runner/win32_window.h b/windows/runner/win32_window.h new file mode 100644 index 0000000..e901dde --- /dev/null +++ b/windows/runner/win32_window.h @@ -0,0 +1,102 @@ +#ifndef RUNNER_WIN32_WINDOW_H_ +#define RUNNER_WIN32_WINDOW_H_ + +#include + +#include +#include +#include + +// A class abstraction for a high DPI-aware Win32 Window. Intended to be +// inherited from by classes that wish to specialize with custom +// rendering and input handling +class Win32Window { + public: + struct Point { + unsigned int x; + unsigned int y; + Point(unsigned int x, unsigned int y) : x(x), y(y) {} + }; + + struct Size { + unsigned int width; + unsigned int height; + Size(unsigned int width, unsigned int height) + : width(width), height(height) {} + }; + + Win32Window(); + virtual ~Win32Window(); + + // Creates a win32 window with |title| that is positioned and sized using + // |origin| and |size|. New windows are created on the default monitor. Window + // sizes are specified to the OS in physical pixels, hence to ensure a + // consistent size this function will scale the inputted width and height as + // as appropriate for the default monitor. The window is invisible until + // |Show| is called. Returns true if the window was created successfully. + bool Create(const std::wstring& title, const Point& origin, const Size& size); + + // Show the current window. Returns true if the window was successfully shown. + bool Show(); + + // Release OS resources associated with window. + void Destroy(); + + // Inserts |content| into the window tree. + void SetChildContent(HWND content); + + // Returns the backing Window handle to enable clients to set icon and other + // window properties. Returns nullptr if the window has been destroyed. + HWND GetHandle(); + + // If true, closing this window will quit the application. + void SetQuitOnClose(bool quit_on_close); + + // Return a RECT representing the bounds of the current client area. + RECT GetClientArea(); + + protected: + // Processes and route salient window messages for mouse handling, + // size change and DPI. Delegates handling of these to member overloads that + // inheriting classes can handle. + virtual LRESULT MessageHandler(HWND window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept; + + // Called when CreateAndShow is called, allowing subclass window-related + // setup. Subclasses should return false if setup fails. + virtual bool OnCreate(); + + // Called when Destroy is called. + virtual void OnDestroy(); + + private: + friend class WindowClassRegistrar; + + // OS callback called by message pump. Handles the WM_NCCREATE message which + // is passed when the non-client area is being created and enables automatic + // non-client DPI scaling so that the non-client area automatically + // responds to changes in DPI. All other messages are handled by + // MessageHandler. + static LRESULT CALLBACK WndProc(HWND const window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept; + + // Retrieves a class instance pointer for |window| + static Win32Window* GetThisFromHandle(HWND const window) noexcept; + + // Update the window frame's theme to match the system theme. + static void UpdateTheme(HWND const window); + + bool quit_on_close_ = false; + + // window handle for top level window. + HWND window_handle_ = nullptr; + + // window handle for hosted content. + HWND child_content_ = nullptr; +}; + +#endif // RUNNER_WIN32_WINDOW_H_